Skip to content

Instantly share code, notes, and snippets.

/Gemfile Secret

Created June 25, 2017 06:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/0e4198c9a2ed8cfaad502a24b575e29e to your computer and use it in GitHub Desktop.
Save anonymous/0e4198c9a2ed8cfaad502a24b575e29e to your computer and use it in GitHub Desktop.
source "https://rubygems.org"
gem "rails", "~> 5.1"
gem "unicorn"
gem "mysql2", ">= 0.3.14"
# uncomment to use PostgreSQL
# gem "pg"
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 'capistrano', '~> 3.7', '>= 3.7.1'
gem 'capistrano-rails', '~> 1.2'
gem 'capistrano-passenger', '~> 0.2.0'
# Add this if you're using rbenv
gem 'capistrano-rbenv', '~> 2.1'
gem "nokogiri", ">= 1.8.0"
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 "rspec-rails", "~> 3.6"
gem "machinist"
gem "sqlite3"
gem "faker"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment