rosa-build/Gemfile

99 lines
2.8 KiB
Ruby
Raw Normal View History

2013-03-11 10:44:52 +00:00
source 'https://rubygems.org'
2011-03-09 13:13:36 +00:00
2013-03-19 09:15:14 +00:00
gem 'rails', '3.2.13' #, :git => 'git://github.com/rails/rails.git'
2013-03-19 12:30:34 +00:00
gem 'redhillonrails_core', :git => 'git://github.com/warpc/redhillonrails_core.git', :branch => 'rails31' # '~> 2.0.0.pre' # deprecated
2011-03-09 13:13:36 +00:00
gem 'pg', '~> 0.14.0'
2011-03-09 13:13:36 +00:00
gem 'devise', '~> 2.2.3'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
gem 'omniauth-github'
# 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.3.1'
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 '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'
2013-03-28 18:22:24 +00:00
gem 'github-linguist', '~> 2.3.4', :require => 'linguist'
gem 'diff-display', '~> 0.0.1'
2012-02-02 20:34:55 +00:00
# Wiki
gem "gollum", '~> 2.1.3'
gem "redcarpet", '~> 2.2.2'
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.5.5.38', :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'
gem 'attr_encrypted', '1.2.1'
2013-04-08 18:11:33 +01:00
gem "gemoji", "~> 1.2.1", require: 'emoji/railtie'
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
2013-01-25 07:18:50 +00:00
gem 'turbo-sprockets-rails3'
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
# Better Errors & RailsPanel
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
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'
2012-12-20 18:50:55 +00:00
gem 'mock_redis', '0.6.2'
end