forked from AlchemyCMS/alchemy_cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
39 lines (32 loc) · 920 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
34
35
36
37
38
39
source 'http://rubygems.org'
gemspec
if ENV['RAILS_VERSION']
gem 'rails', ENV['RAILS_VERSION']
end
# Code coverage plattform
gem 'coveralls', require: false
# Fixes issues with wrong exit codes. See: https://github.com/colszowka/simplecov/issues/269
gem 'simplecov', '0.7.1'
gem 'database_cleaner'
group :test do
gem 'sqlite3' if ENV['DB'].nil? || ENV['DB'] == 'sqlite'
gem 'mysql2' if ENV['DB'] == 'mysql'
gem 'pg' if ENV['DB'] == 'postgresql'
gem 'poltergeist'
unless ENV['CI']
gem 'launchy'
end
end
group :development, :test do
unless ENV['CI']
gem 'annotate'
gem 'bumpy'
gem 'yard'
gem 'redcarpet'
gem 'pry-byebug'
gem 'spring', '~> 1.1.0.beta2'
gem 'spring-commands-rspec'
end
gem 'jasmine-rails', github: 'searls/jasmine-rails'
gem 'jasmine-jquery-rails', github: 'travisjeffery/jasmine-jquery-rails'
end