5
3
mirror of https://github.com/tildeverse/lobsters synced 2024-06-14 21:16:37 +00:00
tilde.news/Gemfile
Peter Bhat Harkins ff1dc75523 high-value end-to-end happy path specs
Viewing homepage, ubmitting a story, viewing a story as a logged-in or
logged-out user, and submitting a comment. Also allows posting comments
without JavaScript.

I wanted smoke tests for the highest-traffic endpoints that tend to throw me a
few hundred emails if they hit exceptions in production.
2018-04-18 10:13:34 -05:00

47 lines
691 B
Ruby

source "https://rubygems.org"
gem "json"
gem "rails", "~> 5.1"
gem "unicorn"
gem "mysql2", "~> 0.3.20"
# uncomment to use PostgreSQL
# gem "pg"
gem 'scenic'
gem 'scenic-mysql'
gem "uglifier", ">= 1.3.0"
gem "jquery-rails", "~> 4.3"
gem "dynamic_form"
gem "exception_notification"
gem "bcrypt", "~> 3.1.2"
gem "rotp"
gem "rqrcode"
gem "nokogiri", ">= 1.7.2"
gem "htmlentities"
gem "commonmarker", "~> 0.14"
gem "activerecord-typedstore"
# 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"
end