make some dependencies optional to decrease startup-time
This commit is contained in:
parent
a02ca1b9c0
commit
64040d6bb9
1 changed files with 3 additions and 3 deletions
6
Gemfile
6
Gemfile
|
@ -65,15 +65,15 @@ group :development do
|
|||
gem 'quiet_assets'
|
||||
|
||||
# Deploy with Capistrano
|
||||
gem 'capistrano', '2.13.5'
|
||||
gem 'capistrano-ext'
|
||||
gem 'capistrano', '2.13.5', require: false
|
||||
gem 'capistrano-ext', require: false
|
||||
#gem 'common_deploy', require: false, path: '../../common_deploy' # pending foodcoops/foodsoft#34, git: 'git://github.com/fsmanuel/common_deploy.git'
|
||||
# Avoid having content-length warnings
|
||||
gem 'thin'
|
||||
end
|
||||
|
||||
group :development, :test do
|
||||
gem 'ruby-prof'
|
||||
gem 'ruby-prof', require: false
|
||||
end
|
||||
|
||||
group :test do
|
||||
|
|
Loading…
Reference in a new issue