Skip to content

Commit 10074b8

Browse files
committed
attempt to run rails 5
1 parent 98ce767 commit 10074b8

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ env:
5252
- RAILS_VERSION='~> 3.0.20'
5353

5454
matrix:
55+
include:
56+
# Rails 5.x only supports 2.2
57+
- rvm: 2.2
58+
env: RAILS_VERSION=master
5559
exclude:
5660
# 3.0.x is not supported on MRI 2.0+
5761
- rvm: 2.0.0

rspec-rails.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ Gem::Specification.new do |s|
2525
s.cert_chain = [File.expand_path('~/.gem/rspec-gem-public_cert.pem')]
2626
end
2727

28-
s.add_runtime_dependency(%q<activesupport>, [">= 3.0", "< 4.3"])
29-
s.add_runtime_dependency(%q<actionpack>, [">= 3.0", "< 4.3"])
30-
s.add_runtime_dependency(%q<railties>, [">= 3.0", "< 4.3"])
28+
s.add_runtime_dependency %q<activesupport>, ">= 3.0"
29+
s.add_runtime_dependency %q<actionpack>, ">= 3.0"
30+
s.add_runtime_dependency %q<railties>, ">= 3.0"
3131
%w[core expectations mocks support].each do |name|
3232
if RSpec::Rails::Version::STRING =~ /[a-zA-Z]+/ # prerelease builds
3333
s.add_runtime_dependency "rspec-#{name}", "= #{RSpec::Rails::Version::STRING}"

0 commit comments

Comments
 (0)