Skip to content

Commit b04d749

Browse files
committed
Drop Rails 3.2 support; add 4.2 support
1 parent 1a82b5e commit b04d749

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ language: ruby
22
rvm:
33
- 1.9.3
44
- 2.0.0
5-
- 2.1.2
5+
- 2.1.5
6+
- 2.2.0
67
env:
7-
- RAILS_VERSION="~> 3.2.0"
88
- RAILS_VERSION="~> 4.0.0"
99
- RAILS_VERSION="~> 4.1.0"
10+
- RAILS_VERSION="~> 4.2.0"
1011
before_script:
1112
- travis_retry gem install rails --version "$RAILS_VERSION"

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
confuse commands which try to parse `$0`. This caused the
1414
spring-commands-rspec to not work properly in some cases. Issue #369.
1515
* Add OpenBSD compatibility for `spring status`. Issue #299.
16+
* Rails 3.2 no longer officially supported (but it may continue to work)
1617

1718
## 1.2.0
1819

lib/spring/test/acceptance_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class AcceptanceTest < ActiveSupport::TestCase
1313
DEFAULT_SPEEDUP = 0.8
1414

1515
def rails_version
16-
ENV['RAILS_VERSION'] || '~> 4.0.0'
16+
ENV['RAILS_VERSION'] || '~> 4.2.0'
1717
end
1818

1919
# Extension point for spring-watchers-listen

0 commit comments

Comments
 (0)