forked from codeforamerica/trailsyserver
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
170 lines (129 loc) · 4.37 KB
/
Gemfile
File metadata and controls
170 lines (129 loc) · 4.37 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
source 'https://rubygems.org'
ruby '2.6.6'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.1.7'
gem 'actionpack-page_caching'
# Use postgresql as the database for Active Record
gem 'pg', '~> 1.1.4'
#gem 'left_join'
#gem 'active_record_union'
# bootstrap
gem 'twitter-bootstrap-rails', '~> 4.0'
gem 'momentjs-rails', '~> 2.17', '>= 2.17.1'
gem 'bootstrap3-datetimepicker-rails'
#gem 'bootstrap-datepicker-rails'
gem 'will_paginate', '~> 3.1', '>= 3.1.7'
gem 'will_paginate-bootstrap', '~> 1.0', '>= 1.0.2'
gem 'validates_overlap', '~> 0.8.6' # Date overlap
gem 'rack-cors', :require => 'rack/cors'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.2.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem "therubyracer"
# Use jquery as the JavaScript library
gem 'jquery-rails', '~> 4.3.1'
gem 'jquery-ui-rails', '~> 5.0.5'
#gem 'bootstrap-editable-rails'
#gem 'best_in_place', '~> 3.1.1'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks', '~> 5.0.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7.0'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]
gem 'activerecord-postgis-adapter', '~> 5.2', '>= 5.2.2'
gem 'rgeo', '~> 2.0', '>= 2.0.1'
gem 'rgeo-geojson', '~> 2.1', '>= 2.1.1'
gem 'oj', '~> 3.7', '>= 3.7.12'
gem 'unicorn', '~> 5.4'
gem 'devise', '~> 4.6', '>= 4.6.2'
# Current released version of devise_security_extension does not work with 5.1. Need to use master
gem 'devise_security_extension', git: 'https://github.com/phatworx/devise_security_extension.git'
gem 'rails_email_validator'
gem 'pundit', '~> 2.0', '>= 2.0.1'
gem 'rubyzip'
gem 'paperclip', '~> 3.0'
gem 'aws-sdk'
gem 'ransack', '~> 2.1', '>= 2.1.1'
gem 'rack-attack'
gem 'paper_trail', '~> 10.3'
gem 'paper_trail-association_tracking', '~> 2.0'
#gem 'delayed_job_active_record'
gem "daemons"
# cron jobs for backups and sending reminders
gem 'whenever', '~> 0.10.0', require: false
group :development do
gem 'sshkit', '~> 1.13.1'
gem "capistrano", "~> 3.7"
gem 'capistrano-rails', '~> 1.2'
#gem 'capistrano-postgresql', '~> 4.2.0'
#gem 'capistrano-postgresql', :github => 'nmcalabroso/capistrano-postgresql', :ref => '16f4a289c0e07e066d6a3dccb4fb6aa26c4e7a6d'
#gem 'capistrano3-unicorn'
gem 'capistrano-bundler', '~> 1.2', require: false
gem 'rvm1-capistrano3', require: false
gem 'capistrano-rake', require: false
gem 'capistrano3-unicorn'
# this whole group makes finding performance issues much friendlier
gem 'rack-mini-profiler'
gem 'flamegraph'
gem 'stackprof' # ruby 2.1+ only
gem 'memory_profiler'
gem 'ruby-prof'
# n+1 killer.
gem 'bullet'
gem 'query_diet'
# what attributes does this model actually have?
gem 'annotate'
#a console in your tests, to find out what's actually happening
gem 'pry-rails'
# a console in your browser, when you want to interrogate views.
gem 'web-console'
end
group :test do
# mock tests w/mocha
gem 'mocha', :require => false
gem 'sqlite3', :platform => [:ruby, :mswin, :mingw]
# for JRuby
gem 'jdbc-sqlite3', :platform => :jruby
gem 'memory_test_fix' # in memory DB, for the speedy
# generate fake data w/faker: http://rubydoc.info/github/stympy/faker/master/frames
gem 'faker'
gem 'rubocop', require: false
gem 'rubocop-rspec'
end
group :development, :test do
gem 'rspec-rails', '~> 3.8'
gem 'guard'
gem 'guard-rspec', require: false
gem 'guard-minitest'
gem 'guard-rubocop'
gem 'guard-bundler', require: false
gem 'capybara'
gem 'capybara-email'
gem 'pundit-matchers', '~> 1.6.0'
gem 'pry'
gem 'factory_bot_rails'
gem 'shoulda-matchers', '~> 3.1.1', require: false
gem 'database_cleaner'
gem 'poltergeist'
gem "json_matchers"
end
group :production do
#gem 'rails_12factor'
#gem 'heroku_rails_deflate'
end