journalduhacker/Gemfile

47 lines
789 B
Ruby
Raw Permalink Normal View History

2012-06-30 23:37:09 +02:00
source "https://rubygems.org"
gem "rails", "4.2.8"
gem "unicorn"
gem "mysql2", ">= 0.4.10"
# 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"
gem "bcrypt", "~> 3.1.2"
gem "rotp"
gem "rqrcode"
2012-06-30 23:37:09 +02:00
gem "nokogiri", "= 1.6.1"
2012-07-01 01:42:53 +02:00
gem "htmlentities"
2017-05-20 15:25:09 +02:00
gem "commonmarker", "~> 0.14"
2012-07-02 03:09:22 +02:00
2017-05-17 10:23:25 +02:00
gem "activerecord-typedstore"
2012-07-02 03:09:22 +02:00
# 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", "~> 3.5", ">= 3.5.2"
2012-06-30 23:42:07 +02:00
gem "machinist"
gem "sqlite3"
2014-07-07 10:15:28 +02:00
gem "faker"
2012-06-30 23:42:07 +02:00
end
gem 'piwik_analytics', '~> 1.0.1'