Sha256: 7fcfd0092b9d4c456455956683386f7b8fc0578d005c7536c95b41a60a80a4a1

Contents?: true

Size: 716 Bytes

Versions: 2

Compression:

Stored size: 716 Bytes

Contents

source 'http://rubygems.org'

gem 'rails', '3.0.3'

#-- 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_0_03/Gemfile
cant_wait-0.0.2 test/test_apps/Test_3_0_03/Gemfile