75 lines
2.1 KiB
Ruby
75 lines
2.1 KiB
Ruby
source 'http://rubygems.org'
|
|
|
|
gem 'rails', '3.2.1' #, :git => 'git://github.com/rails/rails.git'
|
|
|
|
gem 'pg', '~> 0.13.1'
|
|
# gem 'silent-postgres', :git => 'git://github.com/dolzenko/silent-postgres.git' #'~> 0.1.1'
|
|
gem 'redhillonrails_core', :git => 'git://github.com/chipiga/redhillonrails_core.git', :branch => 'rails31' # '~> 2.0.0.pre' # deprecated
|
|
# gem 'schema_plus', '~> 0.2.1' # buggy shit!
|
|
|
|
gem 'devise', '~> 2.0.1'
|
|
gem 'omniauth', '~> 1.0.2'
|
|
gem 'omniauth-openid', '~> 1.0.1'
|
|
gem 'cancan', '~> 1.6.7'
|
|
|
|
gem 'ancestry', '~> 1.2.4'
|
|
gem 'paperclip', '~> 2.5.2'
|
|
gem 'delayed_job_active_record', '~> 0.3.2'
|
|
gem 'russian', '~> 0.6.0'
|
|
gem 'highline', '~> 1.6.11'
|
|
gem 'rails-xmlrpc', '~> 0.3.6' # :git => 'git://github.com/chipiga/rails-xmlrpc.git'
|
|
|
|
gem 'grack', :git => 'git://github.com/rdblue/grack.git', :require => 'git_http'
|
|
gem "grit", :git => 'git://github.com/mojombo/grit.git', :branch => 'master'
|
|
|
|
# Wiki
|
|
gem "gollum", "1.3.1"
|
|
gem "redcarpet", "1.17.2"
|
|
gem 'creole'
|
|
gem 'rdiscount'
|
|
# gem 'org-ruby'
|
|
gem 'RedCloth'
|
|
gem 'wikicloth'
|
|
|
|
gem 'unicorn', '~> 4.2.0'
|
|
gem 'newrelic_rpm', '~> 3.3.1'
|
|
|
|
gem 'rails3-jquery-autocomplete', '~> 1.0.6'
|
|
gem 'will_paginate', '~> 3.0.3'
|
|
gem 'meta-tags', '~> 1.2.4', :require => 'meta_tags'
|
|
gem "haml-rails", '~> 0.3.4'
|
|
gem 'jquery-rails', '~> 2.0.0'
|
|
|
|
group :assets do
|
|
gem 'sass-rails', '~> 3.2.4'
|
|
gem 'coffee-rails', '~> 3.2.2'
|
|
gem 'uglifier', '~> 1.2.1'
|
|
gem 'compass', '~> 0.12.rc.1' # :git => 'git://github.com/chriseppstein/compass.git', :branch => 'rails31'
|
|
gem 'therubyracer', '~> 0.9.9'
|
|
end
|
|
|
|
group :production do
|
|
gem "airbrake", '~> 3.0.9'
|
|
gem 'bluepill', '~> 0.0.55', :require => false
|
|
gem 'daemons', '~> 1.1.8' # for DJ
|
|
end
|
|
|
|
group :development do
|
|
gem 'mailcatcher' # 'letter_opener'
|
|
gem 'rails3-generators'
|
|
gem 'hirb'
|
|
gem 'shotgun'
|
|
# deploy
|
|
gem 'whenever', :require => false
|
|
gem 'capistrano', :require => false
|
|
gem 'capistrano-ext', :require => false
|
|
gem 'cape', :require => false
|
|
gem 'capistrano_colors', :require => false
|
|
end
|
|
|
|
group :test do
|
|
gem 'rspec-rails', '~> 2.8.1'
|
|
gem 'factory_girl_rails', '~> 1.6.0'
|
|
gem 'rr', '~> 1.0.4'
|
|
end
|