Skip to content

Commit

Permalink
Restrict i18n on Ruby 1.8 to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cgriego committed Dec 22, 2014
1 parent 5c209f6 commit 1d9fc14
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gemfiles/rails_3_0.gemfile
@@ -1,4 +1,4 @@
source "http://rubygems.org"
source "https://rubygems.org"

gemspec :development_group => :test, :path => ".."

Expand Down
3 changes: 2 additions & 1 deletion gemfiles/rails_3_1.gemfile
@@ -1,9 +1,10 @@
source "http://rubygems.org"
source "https://rubygems.org"

gemspec :development_group => :test, :path => ".."

if RUBY_VERSION < "1.9.2"
gem "factory_girl", "< 3.0", :group => :test
gem "i18n", "< 0.7"
end

gem "activemodel", "~> 3.1.0"
Expand Down
1 change: 1 addition & 0 deletions gemfiles/rails_3_2.gemfile
Expand Up @@ -4,6 +4,7 @@ gemspec :development_group => :test, :path => ".."

if RUBY_VERSION < "1.9.2"
gem "factory_girl", "< 3.0", :group => :test
gem "i18n", "< 0.7"
end

gem "activemodel", "~> 3.2.0"
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_head.gemfile
@@ -1,4 +1,4 @@
source "http://rubygems.org"
source "https://rubygems.org"

gemspec :development_group => :test, :path => ".."

Expand Down

0 comments on commit 1d9fc14

Please sign in to comment.