Commit a57094abbcb1f4630af1bd7c1dc713f9133c1640
1 parent
98f08a56
Exists in
master
and in
1 other branch
install better errors only on ruby 1.9 and above
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
Gemfile
... | ... | @@ -85,9 +85,9 @@ group :development, :test do |
85 | 85 | gem 'capistrano' |
86 | 86 | |
87 | 87 | # better errors |
88 | - gem 'better_errors' | |
89 | - gem 'binding_of_caller' | |
90 | - gem 'meta_request' | |
88 | + gem 'better_errors', :platform => :ruby_18 | |
89 | + gem 'binding_of_caller', :platform => :ruby_18 | |
90 | + gem 'meta_request', :platform => :ruby_18 | |
91 | 91 | end |
92 | 92 | |
93 | 93 | gem 'foreman', :group => :development | ... | ... |