journalduhacker/Gemfile

38 lines
634 B
Ruby
Raw Normal View History

2012-06-30 23:37:09 +02:00
source "https://rubygems.org"
2013-03-18 20:16:19 +01:00
gem "rails", "3.2.13"
gem "rake", "10.0.3"
# Bundle edge Rails instead:
2012-06-30 23:37:09 +02:00
# gem "rails", :git => "git://github.com/rails/rails.git"
gem "mysql2", :git => "git://github.com/brianmario/mysql2.git"
2012-06-30 23:37:09 +02:00
gem "bcrypt-ruby", "3.0.0"
2013-06-25 20:58:52 +02:00
gem "jquery-rails"
gem "dynamic_form"
# use old version that doesn't have tinder bullshit
gem "exception_notification", "2.6.1"
2012-06-30 23:37:09 +02:00
gem "unicorn"
# for asset compilation
gem "uglifier"
2012-07-01 00:41:00 +02:00
gem "nokogiri"
2012-07-01 01:42:53 +02:00
gem "htmlentities"
2012-07-02 03:09:22 +02:00
gem "rdiscount"
2012-07-12 00:20:43 +02:00
gem "thinking-sphinx", "2.0.12"
2013-06-25 20:58:52 +02:00
gem "mail"
2012-06-30 23:42:07 +02:00
group :test, :development do
gem "rspec-rails", "~> 2.6"
gem "machinist"
gem "sqlite3"
end