Sha256: d728b2e293732c9837c40b10a61d02f88bb2fb54fd259dc6b8dd2564b5efc68d
Contents?: true
Size: 945 Bytes
Versions: 2
Compression:
Stored size: 945 Bytes
Contents
source 'https://rubygems.org' gem 'rails', '3.2.13' # Gems used only for assets and not required # in production environments by default. group :assets do gem 'sass-rails', '~> 3.2.3' gem 'coffee-rails', '~> 3.2.1' gem 'uglifier', '>= 1.0.3' end gem 'jquery-rails' #-- Special additions----------------- # PostgreSQL as the database for ActiveRecord if RUBY_ENGINE == 'jruby' && RUBY_PLATFORM == 'java' gem 'activerecord-jdbc-adapter', '~> 1.2' gem 'activerecord-jdbcpostgresql-adapter', '~> 1.2' gem 'jdbc-postgres', '~> 9' else gem 'pg', '~> 0' end # Minitest and Growl: if RUBY_PLATFORM =~ /darwin/i gem 'minitest-growl', '~> 0.0.3' # minitest-growl has a small issue with minitest 5: gem 'minitest', '~> 4.7.4' else gem('minitest', '~> 5') if RUBY_VERSION < '1.9.3' end # Gem cant_wait from sources, relative path: gem 'cant_wait', path: File.expand_path('../../../..', __FILE__) #-------------------------
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cant_wait-0.0.3 | test/test_apps/Test_3_2_13/Gemfile |
cant_wait-0.0.2 | test/test_apps/Test_3_2_13/Gemfile |