Skip to content

Commit c852695

Browse files
committed
Merge pull request #62 from rails/fix-build
Fix build
2 parents 6e342e7 + 8dd3016 commit c852695

File tree

5 files changed

+8
-27
lines changed

5 files changed

+8
-27
lines changed

.travis.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
rvm:
2-
- 1.8.7
3-
- 1.9.2
42
- 1.9.3
53
- 2.0.0
64

@@ -9,18 +7,6 @@ gemfile:
97
- test/gemfiles/Gemfile.rails-3.1.x
108
- test/gemfiles/Gemfile.rails-3.2.x
119
- test/gemfiles/Gemfile.rails-4.0.x
12-
- test/gemfiles/Gemfile.rails-edge
13-
14-
matrix:
15-
exclude:
16-
- rvm: 1.8.7
17-
gemfile: test/gemfiles/Gemfile.rails-4.0.x
18-
- rvm: 1.8.7
19-
gemfile: test/gemfiles/Gemfile.rails-edge
20-
- rvm: 1.9.2
21-
gemfile: test/gemfiles/Gemfile.rails-4.0.x
22-
- rvm: 1.9.2
23-
gemfile: test/gemfiles/Gemfile.rails-edge
2410

2511
notifications:
2612
email: false

Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22
gemspec
33

4-
# Roll w/ master until 4.0 is cut
5-
gem 'actionpack', :github => 'rails/rails', branch: 'master'
6-
gem 'railties', :github => 'rails/rails', branch: 'master'
4+
# Roll w/ branch until 4.0 is cut
5+
gem 'actionpack', :github => 'rails/rails', branch: '4-0-stable'
6+
gem 'railties', :github => 'rails/rails', branch: '4-0-stable'

test/gemfiles/Gemfile.rails-3.2.x

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
source 'https://rubygems.org'
22
gemspec :path => "./../.."
33

4-
gem "actionpack", "~> 3.2.0"
5-
gem "railties", "~> 3.2.0"
4+
# Patch 3-2-stable to allow new sprockets
5+
gem "actionpack", "~> 3.2.0", :github => "josh/rails", :branch => "3-2-stable-sprockets"
6+
gem "railties", "~> 3.2.0", :github => "josh/rails", :branch => "3-2-stable-sprockets"
67
gem "tzinfo"

test/gemfiles/Gemfile.rails-4.0.x

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ gemspec :path => "./../.."
33

44
# gem "actionpack", "~> 4.0.0"
55
# gem "railties", "~> 4.0.0"
6-
gem "actionpack", "4.0.0.beta1"
7-
gem "railties", "4.0.0.beta1"
6+
gem 'actionpack', :github => 'rails/rails', branch: '4-0-stable'
7+
gem 'railties', :github => 'rails/rails', branch: '4-0-stable'

test/gemfiles/Gemfile.rails-edge

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)