1
0
Fork 0
mirror of https://github.com/kaminari/kaminari.git synced 2022-11-09 13:44:37 -05:00

Drop support for Sinatra 1.3, only support Sinatra 1.4.x

This commit is contained in:
Zachary Scott 2014-11-22 16:08:12 -08:00 committed by Yuki Nishijima
parent 1d45e8e74c
commit 08013cb843
4 changed files with 2 additions and 36 deletions

View file

@ -16,7 +16,6 @@ gemfile:
- gemfiles/active_record_42.gemfile
- gemfiles/active_record_edge.gemfile
- gemfiles/mongoid_40.gemfile
- gemfiles/sinatra_13.gemfile
- gemfiles/sinatra_14.gemfile
sudo: false

View file

@ -31,6 +31,8 @@ The pagination helper outputs the HTML5 <nav> tag by default. Plus, the helper s
* Rails 3.0, 3.1, 3.2, 4.0, 4.1
* Sinatra 1.4
* Haml 3+
* Mongoid 4+

View file

@ -24,7 +24,6 @@ namespace :spec do
mongoid_30
mongoid_24
mongo_mapper
sinatra_13
sinatra_14
)

View file

@ -1,34 +0,0 @@
source 'https://rubygems.org'
gem 'activerecord', '~> 3.2.3', :require => 'active_record'
gem 'sinatra', '~> 1.3.0'
gem 'tilt', '~> 1.3.0'
gem 'padrino-helpers', '~> 0.10.6'
gem 'rack-test', '>= 0'
gem 'sinatra-contrib', '~> 1.3.0'
gem 'rspec', '~> 2.14.1'
# stick to versions that work under Ruby 1.8 for now
gem 'mime-types', '< 2.0'
gem 'nokogiri', '< 1.6'
gem 'capybara', '< 2.1'
gem 'rubyzip', '< 1'
platforms :ruby do
if RUBY_VERSION > "2.1.0"
gem 'sqlite3'
else
gem 'sqlite3', '1.3.8'
end
end
platforms :jruby do
gem 'activerecord-jdbcsqlite3-adapter', '>= 1.3.0'
end
platforms :rbx do
gem 'rubysl', '~> 2.0'
gem 'racc'
gem 'rubysl-test-unit'
gem 'rubinius-developer_tools'
end
gemspec :path => '../'