journalduhacker/Gemfile

47 lines
972 B
Ruby
Raw Normal View History

2012-06-30 23:37:09 +02:00
source "https://rubygems.org"
2013-12-30 23:29:00 +01:00
# Bundle edge Rails instead: gem "rails", github: "rails/rails"
2014-05-07 04:29:07 +02:00
gem "rails", "4.0.5"
2013-12-30 23:29:00 +01:00
# Use mysql2 as the database for Active Record
gem "mysql2", ">= 0.3.14"
2014-01-09 06:01:45 +01:00
# Use PostgreSQL as the database for Active Record
# gem "pg"
#
# NOTE: If you use PostgreSQL, you must still leave enabled the above mysql2 gem
# for Sphinx full text search to function.
2013-12-30 23:29:00 +01:00
# Use Uglifier as compressor for JavaScript assets
gem "uglifier", ">= 1.3.0"
2013-12-30 23:29:00 +01:00
# Use jquery as the JavaScript library
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"
2013-12-30 23:29:00 +01:00
# Use ActiveModel has_secure_password
gem "bcrypt-ruby", "~> 3.1.2"
2012-06-30 23:37:09 +02:00
2013-12-30 23:29:00 +01:00
# Use unicorn as the app server
gem "unicorn"
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"
2013-07-04 05:40:37 +02:00
gem "oauth"
2014-01-07 11:52:29 +01:00
gem "thinking-sphinx", "~> 3.0.6"
2012-07-12 00:20:43 +02:00
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"
2014-07-07 10:15:28 +02:00
gem "faker"
2012-06-30 23:42:07 +02:00
end