Clarify Gemfile.local instructions in Gemfile
This commit is contained in:
parent
07411d6efa
commit
e7ce4b9d68
1 changed files with 7 additions and 5 deletions
12
Gemfile
12
Gemfile
|
@ -161,8 +161,10 @@ group :development, :test do
|
||||||
gem 'webmock'
|
gem 'webmock'
|
||||||
end
|
end
|
||||||
|
|
||||||
# load onw gems for development and testing purposes
|
# Want to extend Zammad with additional gems?
|
||||||
local_gemfile = File.join(File.dirname(__FILE__), 'Gemfile.local')
|
# ZAMMAD USERS: Specify them in Gemfile.local
|
||||||
if File.exist?(local_gemfile)
|
# (That way, you can customize the Gemfile
|
||||||
eval_gemfile local_gemfile
|
# without having your changes overwritten during upgrades.)
|
||||||
end
|
# ZAMMAD DEVS: Consult the internal wiki
|
||||||
|
# (or else risk pushing unwanted changes to Gemfile.lock!)
|
||||||
|
eval_gemfile 'Gemfile.local' if File.exist?('Gemfile.local')
|
||||||
|
|
Loading…
Reference in a new issue