Related to issue#77, only load developer gems on develompent and test env.
This commit is contained in:
parent
0e16ef7c92
commit
cd4ced3869
1 changed files with 14 additions and 8 deletions
22
Gemfile
22
Gemfile
|
@ -5,8 +5,6 @@ gem 'rails', '3.2.11'
|
||||||
# Bundle edge Rails instead:
|
# Bundle edge Rails instead:
|
||||||
#gem 'rails', :git => 'git://github.com/rails/rails.git'
|
#gem 'rails', :git => 'git://github.com/rails/rails.git'
|
||||||
|
|
||||||
gem 'sqlite3'
|
|
||||||
|
|
||||||
gem 'json'
|
gem 'json'
|
||||||
|
|
||||||
# Gems used only for assets and not required
|
# Gems used only for assets and not required
|
||||||
|
@ -49,6 +47,7 @@ gem 'simple-rss'
|
||||||
|
|
||||||
# e. g. for mysql you need to load mysql
|
# e. g. for mysql you need to load mysql
|
||||||
gem 'mysql2'
|
gem 'mysql2'
|
||||||
|
#gem 'sqlite3'
|
||||||
|
|
||||||
# Use unicorn as the web server
|
# Use unicorn as the web server
|
||||||
# gem 'unicorn'
|
# gem 'unicorn'
|
||||||
|
@ -63,11 +62,18 @@ gem 'mysql2'
|
||||||
gem 'eventmachine'
|
gem 'eventmachine'
|
||||||
gem 'em-websocket'
|
gem 'em-websocket'
|
||||||
|
|
||||||
# code coverage
|
# Gems used only for develo//test and not required
|
||||||
gem 'simplecov'
|
# in production environments by default.
|
||||||
gem 'simplecov-rcov'
|
group :development, :test do
|
||||||
|
|
||||||
# UI tests w/ Selenium
|
gem 'sqlite3'
|
||||||
#gem 'selenium-webdriver'
|
|
||||||
#gem 'watir-webdriver'
|
|
||||||
|
|
||||||
|
# code coverage
|
||||||
|
gem 'simplecov'
|
||||||
|
gem 'simplecov-rcov'
|
||||||
|
|
||||||
|
# UI tests w/ Selenium
|
||||||
|
#gem 'selenium-webdriver'
|
||||||
|
gem 'watir-webdriver'
|
||||||
|
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in a new issue