rosa-build/Gemfile

91 lines
2.7 KiB
Ruby
Raw Normal View History

2011-03-09 13:13:36 +00:00
source 'http://rubygems.org'
gem 'rails', '3.2.8' #, :git => 'git://github.com/rails/rails.git'
2011-03-09 13:13:36 +00:00
gem 'pg', '~> 0.14.0'
# gem 'silent-postgres', :git => 'git://github.com/dolzenko/silent-postgres.git' #'~> 0.1.1'
2012-10-01 19:09:59 +01:00
gem 'redhillonrails_core', :git => 'git://github.com/warpc/redhillonrails_core.git', :branch => 'rails31' # '~> 2.0.0.pre' # deprecated
# gem 'schema_plus', '~> 0.2.1' # buggy shit!
2011-03-09 13:13:36 +00:00
gem 'devise', '~> 2.1.2'
gem 'omniauth', '~> 1.1.0'
gem 'omniauth-openid', '~> 1.0.1'
gem 'cancan', '1.6.7' # 1.6.8 fail specs with strange error
2011-03-09 13:13:36 +00:00
gem 'ancestry', '~> 1.3.0'
gem 'paperclip', '~> 3.1.4'
gem 'resque', '~> 1.21.0'
gem 'resque-status', '~> 0.3.3'
gem 'resque_mailer', '~> 2.1.0'
gem 'perform_later', '~> 1.3.0' # should be after resque_mailer
gem 'russian', '~> 0.6.0'
gem 'highline', '~> 1.6.11'
gem 'state_machine'
2011-03-09 13:13:36 +00:00
# gem 'rugged', '~> 0.16.0'
gem 'grack', :git => 'git://github.com/rdblue/grack.git', :require => 'git_http'
gem "grit", :git => 'git://github.com/warpc/grit.git' #, :path => '~/Sites/code/grit'
gem 'charlock_holmes', '~> 0.6.9' #, :git => 'git://github.com/brianmario/charlock_holmes.git', :branch => 'bundle-icu'
# gem 'ruby-filemagic', '~> 0.4.2', :require => 'filemagic/ext'
gem 'github-linguist', '~> 2.2.1', :require => 'linguist'
gem 'diff-display', '~> 0.0.1'
2012-02-02 20:34:55 +00:00
# Wiki
gem "gollum", '~> 2.1.3'
2012-09-21 13:10:47 +01:00
gem "redcarpet", "~> 2.1.1"
2012-01-27 18:24:12 +00:00
gem 'creole'
gem 'rdiscount'
# gem 'org-ruby'
2012-01-27 18:24:12 +00:00
gem 'RedCloth'
gem 'wikicloth'
gem 'unicorn', '~> 4.3.1', :platforms => [:mri, :rbx]
gem 'trinidad', '~> 1.0.2', :platforms => :jruby
gem 'newrelic_rpm', '~> 3.4.1', :platforms => [:mri, :rbx]
2012-03-11 22:28:34 +00:00
gem 'whenever', '~> 0.7.3', :require => false
2011-10-24 02:55:03 +01:00
2012-10-17 13:18:05 +01:00
gem 'jbuilder', '~> 0.8.2'
gem 'rails3-jquery-autocomplete', '~> 1.0.7'
gem 'will_paginate', '~> 3.0.3'
gem 'meta-tags', '~> 1.2.5', :require => 'meta_tags'
gem "haml-rails", '~> 0.3.4'
gem 'jquery-rails', '~> 2.0.2'
gem 'ruby-haml-js', '~> 0.0.3'
gem 'rails-backbone', '~> 0.7.2'
2012-09-04 19:48:14 +01:00
gem 'rack-throttle'
gem 'rest-client', '~> 1.6.6'
group :assets do
gem 'sass-rails', '~> 3.2.5'
gem 'coffee-rails', '~> 3.2.2'
gem 'compass-rails', '~> 1.0.3'
gem 'uglifier', '~> 1.2.4'
gem 'therubyracer', '~> 0.10.2', :platforms => [:mri, :rbx]
gem 'therubyrhino', '~> 1.73.1', :platforms => :jruby
end
2011-12-01 09:29:04 +00:00
group :production do
gem "airbrake", '~> 3.1.2'
gem 'bluepill', '~> 0.0.60', :require => false
end
group :development do
gem 'mailcatcher' # 'letter_opener'
gem 'rails3-generators'
2011-10-21 16:39:32 +01:00
gem 'hirb'
gem 'shotgun'
# deploy
gem 'capistrano', :require => false
gem 'rvm-capistrano', :require => false
2011-12-06 18:35:19 +00:00
gem 'cape', :require => false
gem 'capistrano_colors', :require => false
end
group :test do
gem 'rspec-rails', '~> 2.11.0', :group => 'development'
gem 'factory_girl_rails', '~> 4.0.0'
gem 'rr', '~> 1.0.4'
gem 'shoulda'
end