journalduhacker/Gemfile

41 lines
677 B
Ruby
Raw Normal View History

2012-06-30 23:37:09 +02:00
source "https://rubygems.org"
2014-12-14 05:47:44 +01:00
gem "rails", "4.1.8"
gem "unicorn"
2013-12-30 23:29:00 +01:00
gem "mysql2", ">= 0.3.14"
# uncomment to use PostgreSQL
2014-01-09 06:01:45 +01:00
# gem "pg"
#
# NOTE: If you use PostgreSQL, you must still leave enabled the above mysql2
# gem for Sphinx full text search to function.
2014-01-09 06:01:45 +01:00
2014-12-14 05:43:20 +01:00
gem "thinking-sphinx", "~> 3.1.2"
gem "uglifier", ">= 1.3.0"
2013-06-25 20:58:52 +02:00
gem "jquery-rails"
gem "dynamic_form"
gem "exception_notification"
2013-12-30 23:29:00 +01:00
gem "bcrypt-ruby", "~> 3.1.2"
2012-06-30 23:37:09 +02:00
gem "nokogiri", "= 1.6.1"
2012-07-01 01:42:53 +02:00
gem "htmlentities"
2012-07-02 03:09:22 +02:00
gem "rdiscount"
# for twitter-posting bot
2013-07-04 05:40:37 +02:00
gem "oauth"
# for parsing incoming mail
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