1
0
Fork 0
mirror of https://github.com/simi/omniauth-facebook.git synced 2022-11-09 12:32:45 -05:00

rack 2 requires Ruby version >= 2.2.2

so we need to switch rack versions in our Gemfile, in order for the CI to cover older rubies
This commit is contained in:
Akira Matsuda 2017-01-14 12:02:12 +09:00
parent 12c7e3d4a7
commit e1091ce15c

View file

@ -2,6 +2,8 @@ source 'https://rubygems.org'
gemspec gemspec
gem 'rack', RUBY_VERSION < '2.2.2' ? '~> 1.6' : '>= 2.0'
platforms :rbx do platforms :rbx do
gem 'rubysl', '~> 2.0' gem 'rubysl', '~> 2.0'
end end