Created
February 14, 2012 21:20
-
-
Save veldtmana/1830552 to your computer and use it in GitHub Desktop.
gemfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source "http://rubygems.org" | |
| gem 'rails', '3.0.10' | |
| gem 'rack', '~> 1.2.4' | |
| gem 'rack-mount', '~> 0.6.14' | |
| gem 'rack-test', '~> 0.5.7' | |
| gem "rake" | |
| platforms :jruby do | |
| gem 'rmagick4j' | |
| gem "activerecord-jdbc-adapter", "~> 1.2.0" | |
| gem "jdbc-mysql", "~> 5.1.13" | |
| gem 'jruby-openssl' | |
| gem 'nokogiri-happymapper' | |
| gem "torquebox-transactions", "2.0.0.beta1" | |
| #gem "jruby-win32ole", "~> 0.8.5" | |
| gem "polyglot", "~> 0.3.3" | |
| end | |
| gem 'awesome_print' | |
| platforms :ruby do | |
| gem 'nokogiri-happymapper' | |
| #gem 'capistrano' | |
| #gem 'capistrano-ext', :require => 'capistrano' | |
| gem 'mysql2', '0.2.6' | |
| gem 'simplecov', '>= 0.4.0', :require => false, :group => :test | |
| gem "newrelic_rpm", "~> 3.1.2" | |
| end | |
| gem "stateflow", "~> 0.4.2" | |
| gem "meta_where" | |
| gem "activeadmin", "~> 0.3.2" | |
| gem "savon", "~> 0.9.7" | |
| gem "will_paginate", "3.0.pre2" | |
| gem "aasm" | |
| gem "haml", "~> 3.1.2" | |
| gem "haml-rails", "~> 0.3.4" | |
| gem "sass", "~> 3.1.5" | |
| #gem 'prawn', "1.0.0.rc1" | |
| gem "prawn_rails", "~> 0.0.7" | |
| #gem "ekuseru" | |
| gem "inherited_resources" | |
| gem "devise", "~> 1.4.9" | |
| gem "cancan" | |
| gem "clickatell", "~> 0.8.2" | |
| gem "net-ping", "~> 1.5.2" | |
| gem "paperclip", "~> 2.3.16" | |
| gem 'awesome_print' | |
| ### Clean up helpers and views | |
| gem "draper" | |
| group :production do | |
| gem "ssl_requirement" | |
| end | |
| gem 'settingslogic' # For custom settings classes | |
| gem "formtastic", "~> 1.2.4" | |
| group :development, :test do | |
| gem "rspec-rails", "~> 2.6.1" | |
| gem "factory_girl_rails", "~> 1.2.0" | |
| gem "fuubar", "~> 0.0.5" | |
| gem 'nokogiri', "~> 1.5.0" | |
| gem 'representative' | |
| gem "mocha", "~> 0.10.0" | |
| end | |
| group :test do | |
| gem "webmock", "~> 1.7.8" | |
| end | |
| gem "fastercsv", "~> 1.5.4" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment