Sha256: f26e4a40878e0cb0714c3e16af28c954a538a68b2320b90c863b42f15419196b
Contents?: true
Size: 804 Bytes
Versions: 2
Compression:
Stored size: 804 Bytes
Contents
source 'http://rubygems.org' gemspec if ENV['RAILS_VERSION'] gem 'rails', "~> #{ENV['RAILS_VERSION']}" end gem 'sqlite3' if ENV['DB'].nil? || ENV['DB'] == 'sqlite' gem 'mysql2' if ENV['DB'] == 'mysql' gem 'pg' if ENV['DB'] == 'postgresql' group :development, :test do gem 'jasmine-rails', github: 'searls/jasmine-rails' gem 'jasmine-jquery-rails', github: 'travisjeffery/jasmine-jquery-rails' gem 'coveralls', require: false unless ENV['CI'] gem 'launchy' gem 'annotate' gem 'bumpy' gem 'yard' gem 'redcarpet' gem 'pry-byebug' gem 'spring' gem 'spring-commands-rspec' end end # We need this if we want to start the dummy app in production, ie on Teatro.io group :production do gem 'uglifier', '>= 1.0.3' gem 'therubyracer' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
alchemy_cms-3.1.0.rc3 | Gemfile |
alchemy_cms-3.1.0.rc2 | Gemfile |