Created
June 20, 2014 00:30
-
-
Save thoughtpunch/13a2802770bd6c9893ce to your computer and use it in GitHub Desktop.
Dan Barrett Gemfile
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
gem "devise" # Authentication | |
gem "cancan" # Authorization | |
gem "omniauth" # OAuth providers | |
# JS Libs | |
# | |
gem 'coffee-rails', '~> 4.0.0' | |
gem 'underscore-rails' | |
# Global Config/Settings | |
gem 'settingslogic' | |
# Asynchronous Jobs | |
# | |
gem 'sidekiq' # async/background tasks | |
gem 'clockwork' # Scheduled/CRON Tasks | |
# HTTP Clients & Utils | |
# | |
gem 'faraday' # http client | |
gem 'rest_client' # http client | |
# CSS/HTML/JS Preprocessors | |
# | |
gem 'sass-rails', '~> 4.0.0' | |
gem 'uglifier', '>= 1.3.0' | |
# Pagination | |
# | |
gem 'kaminari' | |
# Tagging/Tags | |
# | |
gem 'acts-as-taggable-on' | |
# SEO-friendly URLs | |
# | |
gem 'friendly_id' | |
group :development do | |
# Debugging | |
# | |
gem "better_errors" # awesome error pages | |
gem "binding_of_caller" # required for 'better_errors' | |
gem 'meta_request' # Chrome rails debugging | |
# Coverage/Metrics | |
# | |
gem 'rails_best_practices' # rails quality analysis | |
gem 'brakeman' # rails security analysis | |
gem 'quiet_assets' # Hide Asset Messages | |
# Autorun Tests, etc | |
# | |
gem 'guard-rspec' # re-ren tests on code change | |
gem 'guard-livereload' # Reload browser on code change | |
gem "letter_opener" # Email Browser Testing | |
gem 'localtunnel' # Sharing Localhost | |
gem "bullet" # Performance Warnings | |
end | |
group :development, :test do | |
gem 'ffaker' # fake/dummy data | |
gem 'factory_girl_rails' # factories | |
gem 'debugger' # ruby debugger | |
gem 'rspec-rails' # Testing library | |
end | |
group :test do | |
gem 'capybara' # Feature Specs that drive a browser | |
gem 'poltergeist' # headless browser | |
gem 'simplecov' # Test Coverage Metrics | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment