Last active
August 29, 2015 14:13
-
-
Save rxbynerd/38271b4dc70a22a61a60 to your computer and use it in GitHub Desktop.
Revisions
-
rxbynerd revised this gist
Jan 15, 2015 . No changes.There are no files selected for viewing
-
rxbynerd created this gist
Jan 15, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,45 @@ source 'https://rubygems.org' gem 'rails', '4.2.0.rc3' # rails 4.2 rc3 gem 'pg' # postgresql database adapter gem 'sass-rails', '5.0.0.beta1' # prettier css gem 'uglifier', '>= 1.3.0' # CSS minifier gem 'coffee-rails', '~> 4.0.0' # pretty JS gem 'jquery-rails' # much simpler DOM querying gem 'turbolinks' # faster page loading gem 'jbuilder', '~> 1.2' # JSON API powerhouse gem 'bcrypt-ruby', '~> 3.1.2' # has_secure_password gem 'haml-rails' # quicker templating than ERB gem 'stripe' # finna get that motherfucking paper gem 'pry-rails' # better version of irb for rails c gem 'spring' # rails preloading gem 'byebug' # rails 'debugger' command gem 'sidekiq' # async workers gem 'font-awesome-sass' # font awesome for assets gem 'rabl' # API templating gem 'oj' # mad zap zap JSON parsing gem 'roadie-rails' # inline CSS in emails gem "skylight" # tracing group :development do gem 'capistrano-rails' # deploy using capistrano gem 'capistrano-rbenv' # remote servers are rbenv aware gem 'web-console', '2.0.0.beta3' # webconsole end group :doc do gem 'sdoc', require: false # docs generator?? idk rails?? end group :production do gem 'unicorn', require: false # unicorn production app server end gem 'rspec-rails', group: [:test, :development] # testing testing gem 'factory_girl_rails', group: [:test, :development] # easier fixture type things group :test do gem 'capybara-rails' # use capybara's driver for rspec gem 'timecop' # freeze time in specs gem 'forgery' # fake emails for folk end