forked from AlchemyCMS/alchemy_cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
33 lines (29 loc) · 808 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
source 'http://rubygems.org'
gemspec
gem 'sqlite3' if ENV['DB'].nil? || ENV['DB'] == 'sqlite'
gem 'mysql2' if ENV['DB'] == 'mysql'
gem 'pg' if ENV['DB'] == 'postgresql'
group :development, :test do
gem 'jasmine-rails', github: 'searls/jasmine-rails'
gem 'jasmine-jquery-rails', github: 'travisjeffery/jasmine-jquery-rails'
if ENV['TRAVIS']
gem 'coveralls', require: false
else
gem 'simplecov', require: false
end
unless ENV['CI']
gem 'launchy'
gem 'annotate'
gem 'bumpy'
gem 'yard'
gem 'redcarpet'
gem 'pry-byebug'
gem 'spring'
gem 'spring-commands-rspec'
end
end
# We need this if we want to start the dummy app in production, ie on Teatro.io
group :production do
gem 'uglifier', '>= 1.0.3'
gem 'therubyracer'
end