forked from AlchemyCMS/alchemy_cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
37 lines (31 loc) · 823 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
source 'http://rubygems.org'
gemspec
if ENV['RAILS_VERSION']
gem 'rails', "~> #{ENV['RAILS_VERSION']}"
end
# Code coverage plattform
gem 'coveralls', require: false
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'
gem 'rspec-activemodel-mocks'
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'
gem 'spring-commands-rspec'
end
gem 'jasmine-rails', github: 'searls/jasmine-rails'
gem 'jasmine-jquery-rails', github: 'travisjeffery/jasmine-jquery-rails'
end