Created
March 27, 2018 14:15
-
-
Save henrypoydar/ec04d55f22dba2b5b1e67010a70200c0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source "https://rubygems.org" | |
ruby "2.4.3" | |
gem "rails", "4.2.10" | |
gem 'aasm', '~> 4.12.0' | |
gem 'bootstrap-sass', '~> 3.3.3' | |
gem 'bootstrap3-datetimepicker-rails', '~> 4.17.37' | |
gem "bootstrap-will_paginate", "~> 0.0.10" | |
gem 'carrierwave', '~> 0.10.0' | |
gem 'chronic', '~> 0.10.2' | |
gem "chronic_duration", "~> 0.10.6" | |
gem "coffee-rails", "~> 4.1.1" | |
gem "currencies", "0.4.2" | |
gem 'dalli', '~> 2.7.5' | |
gem "devise", "~> 3.5.3" | |
gem 'fog', '~> 1.40.0' | |
gem "haml-rails", "~> 0.9.0" | |
gem "highcharts-rails", "~> 5.0.7" | |
gem 'intercom-rails', '= 0.3.4' | |
gem "jbuilder", "~> 2.6.3" | |
gem "jquery-rails", "~> 4.3.1" | |
gem 'mail_form', '~> 1.6.0' | |
gem 'momentjs-rails', '>= 2.9.0' | |
gem "money-rails", "~> 1.8.0" | |
gem 'net-ssh', '~> 4.1.0' | |
gem 'newrelic_rpm', '~> 4.0.0' | |
gem 'okcomputer', '~> 1.14' # Health check | |
gem "pg", "~> 0.20" | |
gem 'puma', '~> 3.8', '>= 3.8.2' | |
gem "protected_attributes", "~> 1.1.3" | |
gem 'rack-timeout', '~> 0.4.2' | |
gem "rails-observers", "~> 0.1.1" | |
gem 'randomuser-local-rails', '~> 0.4.0.4', require: 'randomuser_local' | |
gem 'responders', '~> 2.3.0' | |
gem "sass-rails", "~> 5.0.3" | |
gem 'simple_form', '~> 3.4.0' | |
gem "sitemap_generator", "~> 5.3.1" | |
gem 'stripe', '~> 1.31.0' | |
gem 'stripe_event', '~> 1.5.0' | |
gem 'sucker_punch', '~> 1.6' | |
gem 'themify-icons-rails', '~> 1.0.1.0' | |
gem "turbolinks", "~> 2.5.3" | |
gem "uglifier", "~> 2.7.2" | |
gem 'wicked', '~> 1.3.1' | |
gem "will_paginate", "~> 3.1.5" | |
group :development do | |
gem "quiet_assets", "~> 1.1.0" | |
gem 'web-console', '~> 3.0.0' | |
end | |
group :test do | |
gem 'capybara', '~> 2.12.1' | |
gem "database_cleaner", "~> 1.5.1" | |
gem 'puffing-billy', '~> 0.6.2' | |
gem 'selenium-webdriver', '~> 3.2.1' | |
gem 'stripe-ruby-mock', '~> 2.2.2', require: 'stripe_mock' | |
gem 'webmock', '~> 2.3.2' | |
end | |
group :development, :test do | |
gem "awesome_print", "~> 1.6.1" | |
gem 'brakeman', require: false # always use latest version | |
gem "email_spec", "~> 1.6.0" | |
gem "factory_girl_rails", "~> 4.5.0" | |
gem "faker", "~> 1.6.1" | |
gem "pry-rails", "~> 0.3.1" | |
gem "rspec-rails", "~> 3.4.0" | |
gem "shoulda-matchers", "~> 3.0.1", require: false | |
gem 'spring-commands-rspec', '~> 1.0.2' | |
gem "timecop", "0.8.0" | |
end | |
group :production do | |
gem 'bugsnag', '~> 5.3.0' | |
# Heroku | |
gem 'rails_12factor' | |
end | |
group :doc do | |
gem "sdoc", require: false | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment