Last active
June 5, 2016 05:28
-
-
Save thePaulista/cc0822d51491586191fae66b28ef2bbd to your computer and use it in GitHub Desktop.
GEMS and SET UP INSTRUCTIONS
This file contains hidden or 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
rails g rspec:install | |
______________________________________________________________________ | |
bundle exec figaro install | |
http://stackoverflow.com/questions/21884085/where-do-i-place-stripes-publishable-and-secret-keys | |
Rails.configuration.stripe = { | |
:publishable_key => ENV['PUBLISHABLE_KEY'], | |
:secret_key => ENV['SECRET_KEY'] | |
} | |
Stripe.api_key = Rails.configuration.stripe[:secret_key] | |
________________________________________________________ | |
source 'https://rubygems.org' | |
gem 'rails', '4.2.6' | |
gem 'pg', '~> 0.15' | |
gem 'sass-rails', '~> 5.0' | |
gem 'uglifier', '>= 1.3.0' | |
gem 'coffee-rails', '~> 4.1.0' | |
gem 'jquery-rails' | |
gem 'turbolinks' | |
gem 'jbuilder', '~> 2.0' | |
gem 'sdoc', '~> 0.4.0', group: :doc | |
gem 'rails_12factor', group: :production | |
gem "unicorn" | |
gem 'bcrypt', '~> 3.1.7' | |
#gem 'bootstrap-generators', git: 'git://github.com/decioferreira/bootstrap-generators.git' | |
group :development, :test do | |
gem 'byebug' | |
gem "pry-rails" | |
gem "rspec-rails" | |
gem "database_cleaner" | |
gem 'selenium-webdriver' | |
gem 'capybara' | |
gem 'launchy' | |
gem 'pry' | |
gem "factory_girl_rails", "~>4.0" | |
gem 'mocha' | |
gem 'shoulda-matchers', github: 'thoughtbot/shoulda-matchers' | |
gem 'shoulda-callback-matchers', '~> 1.1', '>= 1.1.3' | |
gem 'simplecov', :require => false, :group => :test | |
end | |
group :development do | |
gem 'web-console', '~> 2.0' | |
gem 'spring' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment