mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Fix GH #4749. Remove branch options, because edge is not 3-2-stable.
This commit is contained in:
@@ -200,8 +200,8 @@ module Rails
|
|||||||
# Gems used only for assets and not required
|
# Gems used only for assets and not required
|
||||||
# in production environments by default.
|
# in production environments by default.
|
||||||
group :assets do
|
group :assets do
|
||||||
gem 'sass-rails', :git => 'git://github.com/rails/sass-rails.git', :branch => '3-2-stable'
|
gem 'sass-rails', :git => 'git://github.com/rails/sass-rails.git'
|
||||||
gem 'coffee-rails', :git => 'git://github.com/rails/coffee-rails.git', :branch => '3-2-stable'
|
gem 'coffee-rails', :git => 'git://github.com/rails/coffee-rails.git'
|
||||||
|
|
||||||
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
||||||
#{javascript_runtime_gemfile_entry}
|
#{javascript_runtime_gemfile_entry}
|
||||||
|
|||||||
@@ -126,6 +126,11 @@ module SharedGeneratorTests
|
|||||||
generator([destination_root], :edge => true).expects(:bundle_command).with('install').once
|
generator([destination_root], :edge => true).expects(:bundle_command).with('install').once
|
||||||
quietly { generator.invoke_all }
|
quietly { generator.invoke_all }
|
||||||
assert_file 'Gemfile', %r{^gem\s+["']rails["'],\s+:git\s+=>\s+["']#{Regexp.escape("git://github.com/rails/rails.git")}["']$}
|
assert_file 'Gemfile', %r{^gem\s+["']rails["'],\s+:git\s+=>\s+["']#{Regexp.escape("git://github.com/rails/rails.git")}["']$}
|
||||||
|
assert_file 'Gemfile', %r{^gem\s+["']journey["'],\s+:git\s+=>\s+["']#{Regexp.escape("git://github.com/rails/journey.git")}["']$}
|
||||||
|
assert_file 'Gemfile', %r{^gem\s+["']arel["'],\s+:git\s+=>\s+["']#{Regexp.escape("git://github.com/rails/arel.git")}["']$}
|
||||||
|
|
||||||
|
assert_file 'Gemfile', %r{^\s+gem\s+["']sass-rails["'],\s+:git\s+=>\s+["']#{Regexp.escape("git://github.com/rails/sass-rails.git")}["']$}
|
||||||
|
assert_file 'Gemfile', %r{^\s+gem\s+["']coffee-rails["'],\s+:git\s+=>\s+["']#{Regexp.escape("git://github.com/rails/coffee-rails.git")}["']$}
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_skip_gemfile
|
def test_skip_gemfile
|
||||||
|
|||||||
Reference in New Issue
Block a user