Sha256: d157be135237f10a11ceca5945c05270703800855ac5bd22b8ce7c2aa0b051e9

Contents?: true

Size: 1.16 KB

Versions: 2

Compression:

Stored size: 1.16 KB

Contents

source "http://rubygems.org"

# Specify your gem's dependencies in typus.gemspec
gemspec

# Yes, some dependencies are in typus.gemspec, but it's a little bit difficult
# to mantain the above code there. I'll keep here for the moment ...

gem 'acts_as_list'
gem 'acts_as_tree'
gem 'dragonfly', '~>0.8.1'
gem 'factory_girl'
gem 'paperclip'
gem 'rack-cache', :require => 'rack/cache'
gem 'rails', '~> 3.0'

group :test do
  gem 'shoulda-context'
  gem 'mocha' # Make sure mocha is loaded at the end ...
end

group :development, :test do

  platforms :jruby do
    gem 'activerecord-jdbc-adapter', :require => false

    gem 'jdbc-mysql'
    gem 'jdbc-postgres'
    gem 'jdbc-sqlite3'

    gem 'jruby-openssl' # JRuby limited openssl loaded. http://jruby.org/openssl
  end

  platforms :ruby do
    gem 'mysql2'
    gem 'pg'
    gem 'sqlite3'
  end

end

# MongoDB support is still in "beta" mode, so I'm not testing it for the moment.
group :production do
  # MongoDB support
  gem 'mongoid', '2.0.0.rc.7'
  gem 'bson_ext'
end

group :production do

  platforms :jruby do
    gem 'activerecord-jdbc-adapter'
    gem 'jdbc-sqlite3'
  end

  platforms :ruby do
    gem 'sqlite3'
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
typus-3.0.10 Gemfile
typus-3.0.9 Gemfile