tilde.news/Gemfile

43 lines
835 B
Ruby
Raw Normal View History

2012-06-30 21:37:09 +00:00
source "https://rubygems.org"
2013-12-30 22:29:00 +00:00
# Bundle edge Rails instead: gem "rails", github: "rails/rails"
gem "rails", "4.0.2"
2013-12-30 22:29:00 +00:00
# Use mysql2 as the database for Active Record
gem "mysql2", ">= 0.3.14"
2013-12-30 22:29:00 +00:00
# Use Rails3-style mass assignment security
gem "protected_attributes"
2013-12-30 22:29:00 +00:00
# Use Uglifier as compressor for JavaScript assets
gem "uglifier", ">= 1.3.0"
2013-12-30 22:29:00 +00:00
# Use jquery as the JavaScript library
2013-06-25 18:58:52 +00: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 22:29:00 +00:00
# Use ActiveModel has_secure_password
gem "bcrypt-ruby", "~> 3.1.2"
2012-06-30 21:37:09 +00:00
2013-12-30 22:29:00 +00:00
# Use unicorn as the app server
gem "unicorn"
2012-06-30 22:41:00 +00:00
gem "nokogiri"
2012-06-30 23:42:53 +00:00
gem "htmlentities"
2012-07-02 01:09:22 +00:00
gem "rdiscount"
2013-07-04 03:40:37 +00:00
gem "oauth"
2014-01-07 10:52:29 +00:00
gem "thinking-sphinx", "~> 3.0.6"
2012-07-11 22:20:43 +00:00
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"
end