Sha256: 2ce94bcf938ade67261f1b1c0a16080cbc0ead30d58a07ab0631984f1d302c36

Contents?: true

Size: 1.16 KB

Versions: 7

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.9'
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', '0.2.7'
    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

  gem 'mongoid'

  platforms :ruby do
    gem 'bson_ext'
  end

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

7 entries across 7 versions & 1 rubygems

Version Path
typus-3.0.12 Gemfile
typus-3.0.11 Gemfile
typus-3.0.11.rc5 Gemfile
typus-3.0.11.rc4 Gemfile
typus-3.0.11.rc3 Gemfile
typus-3.0.11.rc2 Gemfile
typus-3.0.11.rc1 Gemfile