contactorama/Gemfile

67 lines
1.6 KiB
Ruby
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -*- mode: yaml; -*-
source 'http://rubygems.org'
gem 'rails', '3.2.5'
gem 'mysql2', '0.3.11'
gem 'bootstrap-sass', '2.0.2'
# Bourbon: fancy css mixins https://github.com/thoughtbot/bourbon
gem 'bourbon', '1.4.0'
gem 'activeadmin', '0.4.0'
# https://github.com/plataformatec/devise
gem 'devise', '2.0.4'
gem 'bcrypt-ruby', '3.0.1'
# https://github.com/ryanb/cancan
gem 'cancan', '1.6.5'
# Deploy with Capistrano
gem 'capistrano', '2.5.21'
# For avatar images: https://github.com/jnicklas/carrierwave
gem 'rmagick', '2.9.2'
gem 'carrierwave', '0.6.2'
# https://github.com/jnunemaker/twitter
gem 'twitter', '2.5.0'
# Specify this directly in order to use version we also have @production site. Otherwise, 'rdoc' pulls newest version in.
gem 'json', '1.6.5'
# We are sending mail. The latest version is just fine.
gem 'mail'
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
# gem 'ruby-debug'
# gem 'ruby-debug19', :require => 'ruby-debug'
# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'aws-s3', :require => 'aws/s3'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '3.2.5'
gem 'coffee-rails', '3.2.2'
gem 'uglifier'
end
# gem 'jquery-rails'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
# group :development, :test do
# gem 'webrat'
# end
group :development do
# provides: rake diagram:all
#gem 'railroady'
end