forked from AlchemyCMS/alchemy_cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
38 lines (32 loc) · 981 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
source 'http://rubygems.org'
gemspec
# For some strange reason it's only loaded outside any group
gem 'jasmine'
gem 'jasminerice'
gem 'multi_json', '1.7.2' # http://stackoverflow.com/q/16543693
# Code coverage plattform
gem 'coveralls', require: false
group :test do
gem 'sqlite3' if ENV['DB'].nil? || ENV['DB'] == 'sqlite'
gem 'mysql2' if ENV['DB'] == 'mysql'
gem 'pg' if ENV['DB'] == 'postgresql'
unless ENV['FAST_SPECS']
gem 'poltergeist'
gem 'connection_pool' # https://gist.github.com/mperham/3049152
unless ENV['CI']
gem 'launchy'
end
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 '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
end