Sha256: 0bc38a0bd036deb0c361f2338a30d68d26ddfab2c0680591056714689a8fdb3d

Contents?: true

Size: 935 Bytes

Versions: 2

Compression:

Stored size: 935 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

gem 'sqlite3'               if ENV['DB'].nil? || ENV['DB'] == 'sqlite'
gem 'mysql2'                if ENV['DB'] == 'mysql'
gem 'pg'                    if ENV['DB'] == 'postgresql'

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

group :test do
  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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
alchemy_cms-2.8.1 Gemfile
alchemy_cms-2.7.3 Gemfile