metamaps--metamaps/Gemfile

61 lines
1.1 KiB
Ruby
Raw Normal View History

2012-09-23 02:39:12 +00:00
source 'https://rubygems.org'
2014-10-18 17:02:31 +00:00
ruby '2.1.3'
2012-09-23 02:39:12 +00:00
2014-05-04 19:12:38 +00:00
gem 'rails', '3.2.17'
2012-09-23 02:39:12 +00:00
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'devise'
2014-10-08 04:47:17 +00:00
gem 'redis'
2012-09-23 02:39:12 +00:00
gem 'pg'
gem 'cancan'
gem 'formula'
gem 'formtastic'
gem 'json'
2012-12-14 07:16:17 +00:00
gem 'rails3-jquery-autocomplete'
gem 'best_in_place' #in-place editing
gem 'kaminari' # pagination
gem 'uservoice-ruby'
gem 'dotenv'
gem 'paperclip'
gem 'aws-sdk'
2014-05-30 15:00:31 +00:00
#gem 'therubyracer' #optional
2014-05-04 19:12:38 +00:00
#gem 'rb-readline'
2012-09-23 02:39:12 +00:00
# Gems used only for assets and not required
# in production environments by default.
group :assets do
2014-01-29 03:53:10 +00:00
gem 'sass-rails'
2012-09-23 02:39:12 +00:00
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
group :production do #this is used on heroku
2014-07-27 19:57:35 +00:00
#gem 'rmagick'
end
gem 'jquery-rails', '2.1.2'
2012-09-23 02:39:12 +00:00
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
2014-01-29 03:57:12 +00:00
gem 'jbuilder', '0.8.2'
2012-09-23 02:39:12 +00:00
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'