Created
May 25, 2011 19:35
-
-
Save goyox86/991722 to your computer and use it in GitHub Desktop.
This file contains 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 :gemcutter | |
gem "rails", "2.3.10" | |
gem "sqlite3-ruby", :require => "sqlite3" | |
#gem "validatable" gem is from 2008!!!!! | |
gem "exceptional" | |
gem "parndt-acts_as_tree" | |
gem "aws-s3", :require => "aws/s3" | |
gem "haml" | |
gem "devise", '1.0.8', :git => "git://github.com/boza/devise.git", :branch => "v1.0" | |
gem "bundler" | |
gem "right_aws" | |
gem "paperclip" | |
gem "will_paginate" | |
gem 'warden' | |
gem 'annotate' | |
gem 'postmark-rails' | |
gem 'mail' | |
gem 'dicom', '0.8' | |
gem 'kronic' | |
gem 'rmagick', '2.13.1', :group => [:development, :production], :require => false | |
gem 'attr_encrypted' | |
gem 'encryptor' | |
gem 'mysql2', '0.2.7' | |
gem 'pdfkit' | |
gem 'kronic' | |
gem 'formtastic' | |
gem 'aasm' | |
gem 'compass' | |
gem 'compass-colors' | |
gem 'fancy-buttons' | |
gem 'active_merchant' | |
gem 'thinking-sphinx', :require => 'thinking_sphinx' | |
gem 'delayed_job', '~>2.0.4' | |
gem 'rubyzip' | |
gem 'uuid' | |
gem 'prawn', :git => "git://github.com/sandal/prawn.git", :tag => '0.10.2', :submodules => true | |
gem 'nokogiri', '1.4.4' | |
# to run single specs in rake e.g $rake spec:person # | |
gem 'single_test', :git => "git://github.com/grosser/single_test.git" | |
gem 'capybara', :group => [:development, :test] | |
gem 'colored' | |
gem 'progress' | |
group :development do | |
gem "rails-footnotes" | |
gem 'ruby-debug' | |
gem 'mongrel' | |
# gems for console coolness e.g: >> lp User | |
gem 'wirble' | |
gem 'looksee' | |
#gem 'wkhtmltopdf-binary' | |
gem 'cucumber-rails', '0.3.2' | |
gem 'database_cleaner' | |
gem 'rack-test', :require => 'rack/test' | |
end | |
group :test do | |
gem 'mocha' | |
gem 'mail' | |
gem 'ruby-prof' | |
gem "shoulda" | |
gem "launchy" | |
gem "factory_girl" | |
gem 'database_cleaner' | |
gem "rack-test", :require => 'rack/test' | |
gem 'rspec', '1.3.0' | |
gem 'rspec-rails', '1.3.2' | |
gem 'prawn', :git => "git://github.com/sandal/prawn.git", :tag => '0.10.2', :submodules => true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment