This repository has been archived by the owner on Sep 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
66 lines (48 loc) · 1.71 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '>= 5.0.0.rc1', '< 5.1'
gem 'rack-permissive-cors', git: "https://github.com/jackpine/rack-permissive-cors.git"
# dotenv should be inluded before any other gems that use environment
# variables, otherwise those gems will get initialized with the wrong values.
gem 'dotenv-rails'
gem 'pg'
# pegged for rails 5 compatibility
gem 'activerecord-postgis-adapter', '~> 4.0.0.beta'
gem 'rgeo-geojson'
gem 'devise'
gem 'cancancan'
gem 'role_model'
gem 'newrelic_rpm'
gem 'houston'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
gem 'paperclip'
gem 'fog-aws'
gem 'fog-local'
# Implicit dependency in our version of paperclip. Results in:
# NameError: uninitialized constant Paperclip::Storage::S3::AWS
# http://stackoverflow.com/questions/28374401/nameerror-uninitialized-constant-paperclipstorages3aws
gem 'aws-sdk', '< 2.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
group :development, :test do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'pry'
gem 'pry-byebug'
gem 'factory_girl_rails'
# pegged for rails 5 compatibility
gem 'rspec-rails', '3.5.0.beta3'
gem 'guard-rspec', require: false
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen'
gem 'spring-commands-rspec', group: :development
end
group :test do
gem 'database_cleaner'
end