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'
|
gem 'quiet_assets'
|
||||||
|
|
||||||
# Deploy with Capistrano
|
# Deploy with Capistrano
|
||||||
gem 'capistrano', '2.13.5'
|
gem 'capistrano', '2.13.5', require: false
|
||||||
gem 'capistrano-ext'
|
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'
|
#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
|
# Avoid having content-length warnings
|
||||||
gem 'thin'
|
gem 'thin'
|
||||||
end
|
end
|
||||||
|
|
||||||
group :development, :test do
|
group :development, :test do
|
||||||
gem 'ruby-prof'
|
gem 'ruby-prof', require: false
|
||||||
end
|
end
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
|
|
Loading…
Add table
Reference in a new issue