Sha256: c9471d49ce8970e9684de03496b9cdbeb6f0a8e657d5bcd39564620523c6d666
Contents?: true
Size: 983 Bytes
Versions: 2
Compression:
Stored size: 983 Bytes
Contents
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, :test do unless ENV['CI'] gem 'pry' 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
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
alchemy_cms-2.7.2 | Gemfile |
alchemy_cms-2.7.1 | Gemfile |