tilde.news/Gemfile

43 lines
704 B
Ruby
Raw Normal View History

2012-06-30 21:37:09 +00:00
source "https://rubygems.org"
2015-07-24 06:38:51 +00:00
gem "rails", "4.1.12"
gem "unicorn"
2013-12-30 22:29:00 +00:00
gem "mysql2", ">= 0.3.14"
# uncomment to use PostgreSQL
2014-01-09 05:01:45 +00: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 05:01:45 +00:00
2014-12-14 04:43:20 +00:00
gem "thinking-sphinx", "~> 3.1.2"
gem "uglifier", ">= 1.3.0"
2013-06-25 18:58:52 +00:00
gem "jquery-rails"
gem "dynamic_form"
gem "exception_notification"
gem "bcrypt", "~> 3.1.2"
2012-06-30 21:37:09 +00:00
gem "nokogiri", "= 1.6.1"
2012-06-30 23:42:53 +00:00
gem "htmlentities"
2012-07-02 01:09:22 +00:00
gem "rdiscount"
gem "activerecord-typedstore"
# for twitter-posting bot
2013-07-04 03:40:37 +00:00
gem "oauth"
# for parsing incoming mail
2013-06-25 18:58:52 +00:00
gem "mail"
2012-06-30 21:42:07 +00:00
group :test, :development do
gem "rspec-rails", "~> 2.6"
gem "machinist"
gem "sqlite3"
2014-07-07 08:15:28 +00:00
gem "faker"
2012-06-30 21:42:07 +00:00
end