mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
require activesupport < 4.0.0 if RUBY_VERSION < 1.9.3
This commit is contained in:
parent
be4bddaa98
commit
8e675eff70
1 changed files with 4 additions and 1 deletions
5
Gemfile
5
Gemfile
|
@ -41,7 +41,10 @@ gem 'maruku'
|
|||
gem 'creole'
|
||||
gem 'markaby'
|
||||
gem 'radius'
|
||||
gem 'rabl' unless RUBY_ENGINE =~ /jruby|maglev/
|
||||
unless RUBY_ENGINE =~ /jruby|maglev/
|
||||
gem 'rabl'
|
||||
gem 'activesupport', '< 4.0.0' if RUBY_VERSION < '1.9.3'
|
||||
end
|
||||
gem 'wlang', '>= 2.0.1' unless RUBY_ENGINE =~ /jruby|rbx/
|
||||
gem 'therubyracer' unless RUBY_ENGINE =~ /jruby|rbx/
|
||||
gem 'redcarpet' unless RUBY_ENGINE == 'jruby'
|
||||
|
|
Loading…
Reference in a new issue