Skip to content

Commit

Permalink
allow and test rails 5.2
Browse files Browse the repository at this point in the history
No changes needed, all tests pass
  • Loading branch information
jrochkind committed Mar 24, 2018
1 parent eafdd9f commit 5bba48a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -5,4 +5,5 @@ env:
- AR="~> 4.2.0" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
- AR="~> 5.0.0" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
- AR=">= 5.1.0.rc2,< 5.2" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
- AR=">= 5.2.0.rc2,< 5.3" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
script: bundle exec rake specs:travis
12 changes: 6 additions & 6 deletions standalone_migrations.gemspec
Expand Up @@ -59,17 +59,17 @@ Gem::Specification.new do |s|

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rake>, [">= 10.0"])
s.add_runtime_dependency(%q<activerecord>, ["< 5.2.0", ">= 4.2.7"])
s.add_runtime_dependency(%q<railties>, ["< 5.2.0", ">= 4.2.7"])
s.add_runtime_dependency(%q<activerecord>, ["< 5.3.0", ">= 4.2.7"])
s.add_runtime_dependency(%q<railties>, ["< 5.3.0", ">= 4.2.7"])
else
s.add_dependency(%q<rake>, [">= 10.0"])
s.add_dependency(%q<activerecord>, ["< 5.2.0", ">= 4.2.7"])
s.add_dependency(%q<railties>, ["< 5.2.0", ">= 4.2.7"])
s.add_dependency(%q<activerecord>, ["< 5.3.0", ">= 4.2.7"])
s.add_dependency(%q<railties>, ["< 5.3.0", ">= 4.2.7"])
end
else
s.add_dependency(%q<rake>, [">= 10.0"])
s.add_dependency(%q<activerecord>, ["< 5.2.0", ">= 4.2.7"])
s.add_dependency(%q<railties>, ["< 5.2.0", ">= 4.2.7"])
s.add_dependency(%q<activerecord>, ["< 5.3.0", ">= 4.2.7"])
s.add_dependency(%q<railties>, ["< 5.3.0", ">= 4.2.7"])
end
end

0 comments on commit 5bba48a

Please sign in to comment.