mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Allow to use a local copy of sprockets-rails during development
This commit is contained in:
parent
66ed71fd6f
commit
25d2b17a99
1 changed files with 6 additions and 1 deletions
7
Gemfile
7
Gemfile
|
@ -28,7 +28,12 @@ end
|
|||
# This needs to be with require false to avoid
|
||||
# it being automatically loaded by sprockets
|
||||
gem 'uglifier', require: false
|
||||
gem 'sprockets-rails', github: 'rails/sprockets-rails'
|
||||
|
||||
if ENV['SPROCKETS_RAILS']
|
||||
gem 'sprockets-rails', path: ENV['SPROCKETS_RAILS']
|
||||
else
|
||||
gem 'sprockets-rails', github: 'rails/sprockets-rails'
|
||||
end
|
||||
|
||||
group :doc do
|
||||
# The current sdoc cannot generate GitHub links due
|
||||
|
|
Loading…
Reference in a new issue