We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9cee02 commit 396d39fCopy full SHA for 396d39f
Gemfile
@@ -2,8 +2,12 @@ source 'https://rubygems.org'
2
3
gemspec
4
5
-gem 'activesupport', '>= 2.3.6' if RUBY_VERSION >= '1.9.3'
6
-gem 'activesupport', '>= 2.3.6', '< 4.0.0' if RUBY_VERSION < '1.9.3'
+if RUBY_VERSION < '1.9.3'
+ gem 'activesupport', '< 4'
7
+elsif RUBY_VERSION < '2.2.2'
8
+ gem 'activesupport', '< 5'
9
+end
10
+gem 'i18n', '< 0.7.0' if RUBY_VERSION < '1.9.3'
11
gem "tlsmail" if RUBY_VERSION <= '1.8.6'
12
gem "mime-types", "~> 1.16"
13
gem "treetop", "~> 1.4.10"
@@ -12,9 +16,8 @@ gem 'jruby-openssl', :platform => :jruby
16
17
# For gems not required to run tests
14
18
group :local_development, :test do
15
- gem 'rake', '> 0.8.7' if RUBY_VERSION >= '1.9.3'
- gem 'rake', '> 0.8.7', '< 11.0.1' if RUBY_VERSION < '1.9.3'
- gem 'rdoc', '< 5' if RUBY_VERSION < '1.9'
19
+ gem 'rake', '> 0.8.7', '< 11.0.1'
20
+ gem 'rdoc', '< 4.3' if RUBY_VERSION < '1.9'
21
gem "rspec", "~> 2.8.0"
22
case
23
when defined?(RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
0 commit comments