metamaps--metamaps/Gemfile

53 lines
928 B
Text
Raw Normal View History

2012-09-22 22:39:12 -04:00
source 'https://rubygems.org'
2015-10-30 14:21:47 +08:00
ruby '2.1.3'
2012-09-22 22:39:12 -04:00
2015-09-10 17:43:48 +08:00
gem 'rails', '4.2.4'
2012-09-22 22:39:12 -04:00
gem 'devise'
2014-10-08 00:47:17 -04:00
gem 'redis'
2012-09-22 22:39:12 -04:00
gem 'pg'
2015-09-19 20:25:07 +08:00
gem 'cancancan'
2012-09-22 22:39:12 -04:00
gem 'formula'
gem 'formtastic'
gem 'json'
2012-12-14 02:16:17 -05: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'
2015-10-01 11:02:03 +08:00
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'jbuilder'
2014-05-30 11:00:31 -04:00
#gem 'therubyracer' #optional
2014-05-04 15:12:38 -04:00
#gem 'rb-readline'
2012-09-22 22:39:12 -04:00
# Gems used only for assets and not required
# in production environments by default.
group :assets do
2014-01-28 22:53:10 -05:00
gem 'sass-rails'
2015-09-10 17:43:48 +08:00
gem 'coffee-rails'
2012-09-22 22:39:12 -04:00
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer'
2015-09-10 17:43:48 +08:00
gem 'uglifier'
2012-09-22 22:39:12 -04:00
end
group :production do #this is used on heroku
2014-07-27 15:57:35 -04:00
#gem 'rmagick'
gem 'rails_12factor'
end
group :development, :test do
gem 'pry-rails'
2015-10-23 22:27:33 +08:00
gem 'pry-byebug'
gem 'better_errors'
2015-10-26 11:53:50 +08:00
gem 'binding_of_caller'
gem 'quiet_assets'
end