Skip to content

Instantly share code, notes, and snippets.

@coalwater
Created January 24, 2015 12:34
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 coalwater/bfe3a61455f2678c1a1b to your computer and use it in GitHub Desktop.
Save coalwater/bfe3a61455f2678c1a1b to your computer and use it in GitHub Desktop.
Some rails gems that I often use, just to keep track
# app server
gem 'puma'
# Factories for testing https://github.com/thoughtbot/factory_girl
gem 'factory_girl'
# Random data https://github.com/stympy/faker
gem 'faker'
# easy breadcrumbs
gem 'breadcrumbs_on_rails'
# just what it says
gem 'simple_calendar'
# for creating ical download files
gem 'icalendar'
# simple file uploading
gem 'paperclip'
gem 'better_errors'
gem 'sidekiq'
gem 'kaminari'
gem 'cancancan'
gem 'workflow'
# capistrano group
gem 'capistrano', require: false
gem 'capistrano-ext', require: false
gem 'capistrano-rails', require: false
gem 'capistrano-chruby', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano3-puma', require: false
gem 'quiet_assets'
gem 'capistrano-sidekiq'
#
group :test do
gem 'capybara'
gem 'database_cleaner'
gem 'simplecov'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment