1
0
Fork 0
forked from OpenNeo/impress
impress/Gemfile

62 lines
1.4 KiB
Ruby
Raw Normal View History

2010-05-14 15:12:31 -07:00
source 'http://rubygems.org'
ruby '2.2.4'
2010-05-14 15:12:31 -07:00
gem 'dotenv-rails'
gem 'dotenv-deployment'
2014-09-09 19:06:38 -07:00
gem 'rails', '= 4.1.16'
#gem 'sqlite3-ruby', '~> 1.3.1', :require => 'sqlite3'
2013-03-05 13:10:25 -08:00
gem 'mysql2', '>= 0.3.11'
gem 'haml', '~> 6.1', '>= 6.1.1'
gem 'rdiscount', '~> 1.6.5'
gem 'will_paginate', '~> 3.0.pre2'
gem 'devise', '~> 3.5.10'
2010-10-18 14:58:45 -07:00
# unstable version of RocketAMF interprets info registry as a hash instead of an array
gem 'RocketAMF', :git => 'https://github.com/rubyamf/rocketamf.git'
2013-02-24 22:14:45 -08:00
gem 'msgpack', '~> 0.5.3'
gem 'openneo-auth-signatory', '~> 0.1.0'
2010-05-15 15:58:28 -07:00
gem "nokogiri", "~> 1.5.2"
2011-07-12 16:37:16 -07:00
2011-07-29 07:52:04 -07:00
gem 'sanitize', '~> 2.0.3'
gem 'neopets', '~> 0.2.0', :git => 'https://github.com/matchu/neopets.git'
gem "parallel", "~> 1.13.0"
gem "http_accept_language", :git => "https://github.com/iain/http_accept_language.git"
gem 'globalize', '~> 4.0.3'
2013-01-26 08:34:48 -08:00
gem "rest-client", "~> 1.6.7"
gem 'rails-i18n', '~> 4.0', '>= 4.0.9'
2013-07-02 14:10:01 -07:00
gem 'rack-attack', '~> 2.2.0'
gem 'react-rails', '~> 2.7', '>= 2.7.1'
2014-09-10 12:32:54 -07:00
gem "letter_opener", :group => :development
gem 'sass-rails', '~> 5.0', '>= 5.0.7'
gem 'compass-rails', '~> 3.1'
gem 'uglifier', '~> 4.2'
group :development do
2015-07-17 19:15:56 -07:00
gem 'capistrano', '~> 2.15.5', require: false
gem 'rvm-capistrano', '~> 1.5.6', require: false
end
group :production do
gem 'memcache-client', '~> 1.8.5', :require => 'memcache'
gem 'passenger_monit', '~> 0.1.1'
end
2010-05-14 15:32:58 -07:00
group :test do
gem 'factory_girl_rails', '~> 1.0'
gem 'rspec-rails', '~> 2.0.0.beta.22'
end