journalduhacker/Gemfile

33 lines
513 B
Ruby
Raw Normal View History

2012-06-30 23:37:09 +02:00
source "https://rubygems.org"
2012-06-30 23:37:09 +02:00
gem "rails", "3.2.2"
# Bundle edge Rails instead:
2012-06-30 23:37:09 +02:00
# gem "rails", :git => "git://github.com/rails/rails.git"
gem "mysql2"
2012-06-30 23:37:09 +02:00
gem "jquery-rails"
# To use ActiveModel has_secure_password
2012-06-30 23:37:09 +02:00
gem "bcrypt-ruby", "3.0.0"
gem "dynamic_form"
2012-06-30 23:42:07 +02:00
gem "exception_notification"
# Use unicorn as the app server
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-01 00:41:00 +02:00
2012-06-30 23:42:07 +02:00
group :test, :development do
gem "rspec-rails", "~> 2.6"
gem "machinist"
gem "sqlite3"
end