Skip to content

Instantly share code, notes, and snippets.

/Gemfile Secret

Created December 27, 2015 18:27
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 anonymous/f399bb20a5be6794794f to your computer and use it in GitHub Desktop.
Save anonymous/f399bb20a5be6794794f to your computer and use it in GitHub Desktop.
~/pipeline$ more Gemfile
source 'https://rubygems.org'
gem 'rake'
# deployment
gem 'capistrano'
gem 'rvm-capistrano'
# application
gem 'settingslogic', '2.0.9'
gem 'backburner', '0.4.4'
gem 'beanstalkd_view', '1.2.6'
gem 'httparty', '0.11.0'
gem 'daemons', '1.1.9'
gem 'nokogiri', '1.5.9'
gem 'mail', '2.5.4'
gem 'mysql2', '0.3.13'
gem 'sequel', '4.3.0'
gem 'database_cleaner', '1.2.0'
group :production do
gem 'bluepill'
end
group :development do
gem 'pry'
gem 'awesome_print'
end
group :test do
gem 'rspec'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment