mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
30 lines
872 B
Ruby
30 lines
872 B
Ruby
source 'http://rubygems.org'
|
|
# Add dependencies required to use your gem here.
|
|
# Example:
|
|
# gem "activesupport", ">= 2.3.5"
|
|
|
|
# Add dependencies to develop your gem here.
|
|
# Include everything needed to run rake, tests, features, etc.
|
|
group :development do
|
|
gem 'rspec', '>= 2.5.0'
|
|
gem 'rr', '>= 1.0.2'
|
|
gem 'steak', '>= 1.1.0'
|
|
gem 'capybara', '>= 0.4.1.1'
|
|
gem 'bundler', '>= 1.0.0'
|
|
gem 'jeweler', '>= 1.5.2'
|
|
gem 'rcov', '>= 0'
|
|
gem 'rails', :git => 'git://github.com/rails/rails.git'
|
|
# gem 'rails', '>= 3.0.3'
|
|
gem 'rack', :git => 'git://github.com/rack/rack.git'
|
|
gem 'arel', :git => 'git://github.com/rails/arel.git'
|
|
gem 'rspec-rails', '>= 2.5.0'
|
|
gem 'sqlite3', '>= 1.3.3'
|
|
gem 'mongoid', '2.0.0.rc.7'
|
|
gem 'bson_ext', '~> 1.2'
|
|
# platforms :mri_18 do
|
|
# gem 'ruby-debug'
|
|
# end
|
|
# platforms :mri_19 do
|
|
# gem 'ruby-debug19'
|
|
# end
|
|
end
|