Skip to content

Instantly share code, notes, and snippets.

@superscott
Created March 25, 2014 00:30
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 superscott/9752482 to your computer and use it in GitHub Desktop.
Save superscott/9752482 to your computer and use it in GitHub Desktop.
gems
source 'https://rubygems.org'
gem 'rails', '4.0.4'
gem 'mysql2'
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'awesome_print', :github => 'michaeldv/awesome_print'
gem 'pry'
gem 'pry-rails'
gem 'unicorn'
gem 'unicorn-rails'
gem 'method_profiler'
## profiler = MethodProfiler.observe(MyClass) / puts profiler.report
gem 'annotate', :github => 'ctran/annotate_models', :branch => 'develop'
## annotate --exclude tests,fixtures,factories -p after
gem 'table_print'
## tp Principal.all console/pry only
gem 'railroady'
## rake diagram:all
gem 'rubocop'
## rubocop -R --format offences
gem 'rack-mini-profiler', :github => 'MiniProfiler/rack-mini-profiler'
gem 'memory_profiler'
gem 'hakiri'
## hakiri gemfile:scan
gem 'xray-rails'
end
group :test do
gem 'rspec-rails', '~> 3.0.0.beta'
## rails generate rspec:model
## https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
gem 'rspec'
end
group :production do
gem 'lograge'
end
group :doc do
gem 'sdoc', require: false
end
group :memcached do
gem 'dalli'
gem 'kgio'
end
gem 'execjs'
gem 'therubyracer', :require => 'v8', platforms: :ruby
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'jquery-turbolinks'
gem 'turbolinks'
gem 'remotipart' ## Allows for remote/ajax forms to upload files.
gem 'font-awesome-rails'
gem 'protected_attributes'
gem 'exception_notification'
gem 'quiet_assets'
gem 'currencies', :github => 'hexorx/currencies'
gem 'gitlab'
gem 'git'
gem 'carrierwave'
gem 'text'
gem 'marco-polo'
gem 'sprockets_better_errors'
gem 'sanitize'
gem 'whois' ## https://github.com/weppos/whois
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment