Sha256: 3e0e88dbf3cf96cfa91a4163e944804fa334807ee1e491ab3e377ce46ec4b1ab

Contents?: true

Size: 993 Bytes

Versions: 5

Compression:

Stored size: 993 Bytes

Contents

source 'http://rubygems.org'

gemspec

# For some strange reason it's only loaded outside any group
gem 'jasmine'
gem 'jasminerice'

# 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'
  gem 'poltergeist', '1.1.0'
  gem 'faye-websocket', '0.4.7' # https://github.com/jonleighton/poltergeist/issues/320
  gem 'connection_pool' # https://gist.github.com/mperham/3049152
  unless ENV['CI']
    gem 'launchy'
  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
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
alchemy_cms-2.6.3 Gemfile
alchemy_cms-2.6.2.1 Gemfile
alchemy_cms-2.6.2 Gemfile
alchemy_cms-2.6.1 Gemfile
alchemy_cms-2.6.0 Gemfile