5
3
mirror of https://github.com/tildeverse/lobsters synced 2024-06-17 22:27:08 +00:00
tilde.news/Gemfile
Hunter Madison 7a8497420e Use scenic-mysql_adapter over senic-mysql
Fixes an irritating bug that kept prefixing the prod database name onto the view, which didn't work in dev.
2018-06-14 08:32:52 -05:00

52 lines
789 B
Ruby

source "https://rubygems.org"
gem "rails", "~> 5.1"
gem "mysql2", "~> 0.3.20"
# uncomment to use PostgreSQL
# gem "pg"
# rails
gem 'scenic'
gem 'scenic-mysql_adapter'
gem "activerecord-typedstore"
# js
gem "dynamic_form"
gem "jquery-rails", "~> 4.3"
gem "json"
gem "uglifier", ">= 1.3.0"
# deployment
gem "actionpack-page_caching"
gem "exception_notification"
gem "unicorn"
# security
gem "bcrypt", "~> 3.1.2"
gem "rotp"
gem "rqrcode"
# parsing
gem "nokogiri", ">= 1.7.2"
gem "htmlentities"
gem "commonmarker", "~> 0.14"
# for twitter-posting bot
gem "oauth"
# for parsing incoming mail
gem "mail"
group :test, :development do
gem 'bullet'
gem 'capybara'
gem "rspec-rails"
gem "machinist"
gem "rubocop", require: false
gem "sqlite3"
gem "faker"
gem "byebug"
end