Created
March 25, 2014 00:30
-
-
Save superscott/9752482 to your computer and use it in GitHub Desktop.
gems
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.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