-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
executable file
·45 lines (40 loc) · 1.19 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
source 'https://rubygems.org'
gemspec
gem 'sqlite3' if ENV['DB'].nil? || ENV['DB'] == 'sqlite'
gem 'mysql2', '~> 0.3.18' 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'
gem 'simplecov', require: false
if ENV['TRAVIS']
gem 'codeclimate-test-reporter', '~> 1.0', 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'
gem 'rubocop', require: false
end
gem 'capybara', '~> 2.4'
gem 'database_cleaner', '~> 1.3'
gem 'factory_girl_rails', '~> 4.5'
gem 'poltergeist', '~> 1.5'
gem 'rspec-activemodel-mocks', '~> 1.0'
gem 'rspec-rails', '~> 3.0'
gem 'shoulda-matchers', '~> 3.1'
end
# We need this if we want to start the dummy app in development mode
group :development, :production do
gem 'quiet_assets'
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