Last active
August 29, 2015 14:13
-
-
Save rxbynerd/38271b4dc70a22a61a60 to your computer and use it in GitHub Desktop.
Gemfile that powers https://firebellapp.com
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' | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment