Skip to content

Commit

Permalink
activesupport >= 4.0 requires at least ruby 1.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
meineerde committed Jun 20, 2014
1 parent c7f5426 commit 86b34ff
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Gemfile
Expand Up @@ -5,8 +5,11 @@ if ENV['RAILS_VERSION']
elsif ENV['RACK_VERSION']
gem "rack", "~> #{ENV['RACK_VERSION']}"
end
# mime-types >= 2.0.0 is only supported on Ruby >= 1.9.2
gem "mime-types", "< 2.0.0"
if RUBY_VERSION < '1.9.2'
# mime-types >= 2.0.0 is only supported on Ruby >= 1.9.2
gem "mime-types", "< 2.0.0"
gem "activesupport", "< 4.0"
end

# Specify your gem's dependencies in rackstash.gemspec
gemspec

0 comments on commit 86b34ff

Please sign in to comment.