forked from AlchemyCMS/alchemy_cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
34 lines (29 loc) · 885 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
source 'http://rubygems.org'
gemspec
#For some strange reason it's only loaded outside any group
gem 'jasmine'
gem 'jasminerice'
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', '1.1.0'
unless ENV['CI']
gem 'launchy'
gem 'simplecov', :require => false
end
end
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
group :development do
unless ENV['CI']
gem 'guard-spork'
gem 'debugger'
gem 'quiet_assets' # Mute assets loggin
gem 'thin' # Get rid off 'Could not determine content-length of response body' Warning. Start with 'rails s thin'
end
gem 'rspec-rails', github: 'rspec/rspec-rails', branch: 'master'
end