-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
39 lines (32 loc) · 1.19 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
source 'https://rubygems.org'
ruby "2.0.0"
gem 'rails', '4.0.2'
gem "pg" # Use postgresql as the database for Active Record
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
gem 'american_date'
gem 'aws-sdk'
gem 'coffee-rails', '~> 4.0.0' # Use CoffeeScript for .js.coffee assets and views
gem 'dynamic_form'
gem 'gmaps4rails'
# gem 'gmaps4rails', '>= 2.0.0.pre', git: 'https://github.com/fiedl/Google-Maps-for-Rails.git'
# gem 'json', '~> 1.7.7'
gem 'jbuilder', '~> 1.2' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jquery-rails' # Use jquery as the JavaScript library
gem 'jquery-turbolinks'
gem 'jquery-ui-rails'
gem "paperclip", '~> 2.4'
gem 'sass-rails', '~> 4.0.0' # Use SCSS for stylesheets
gem "sorcery"
gem 'turbolinks' # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'twitter-bootstrap-rails'
gem 'uglifier', '>= 1.3.0' # Use Uglifier as compressor for JavaScript assets
gem 'will_paginate', '~> 3.0.pre4' # TODO: Consider switching to Kaminari
group :development do
gem 'debugger'
end
group :production do
gem 'rails_12factor'
end