Skip to content

Commit 1da5346

Browse files
authored
Merge pull request cerebris#856 from lgebhardt/drop_rails_4.1
Drop support for rails 4.1
2 parents e30c43d + 744fa1a commit 1da5346

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: ruby
22
sudo: false
33
env:
4-
- "RAILS_VERSION=4.1.0"
54
- "RAILS_VERSION=4.2.6"
65
- "RAILS_VERSION=5.0.0"
76
rvm:

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ when 'master'
1717
gem 'rails', { git: 'https://github.com/rails/rails.git' }
1818
gem 'arel', { git: 'https://github.com/rails/arel.git' }
1919
when 'default'
20-
gem 'rails', '>= 4.2'
20+
gem 'rails', '>= 5.0'
2121
else
2222
gem 'rails', "~> #{version}"
2323
end

test/test_helper.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# export RAILS_VERSION=4.2.6; bundle update rails; bundle exec rake test
88
# export RAILS_VERSION=5.0.0; bundle update rails; bundle exec rake test
99

10-
# We are no longer having Travis test Rails 4.0.x., but you can try it with:
11-
# export RAILS_VERSION=4.0.0; bundle update rails; bundle exec rake test
10+
# We are no longer having Travis test Rails 4.1.x., but you can try it with:
11+
# export RAILS_VERSION=4.1.0; bundle update rails; bundle exec rake test
1212

1313
# To Switch rails versions and run a particular test order:
1414
# export RAILS_VERSION=4.2.6; bundle update rails; bundle exec rake TESTOPTS="--seed=39333" test

0 commit comments

Comments
 (0)