forked from codeforamerica/ohana-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
99 lines (78 loc) · 1.73 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
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
source 'https://rubygems.org'
ruby '2.2.2'
gem 'rails', '~> 4.2'
gem 'pg'
gem 'sass-rails', '~> 5.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'uglifier', '>= 1.3.0'
gem 'bootstrap-sass', '~> 3.3.0'
# Rails 4
gem 'protected_attributes'
# gem 'rails-observers'
# gem 'rails-perftest'
# Front end
gem 'jquery-rails', '~> 4.0'
gem 'haml-rails'
gem 'select2-rails'
# Server for deployment
gem 'puma'
# Geocoding
gem 'geocoder'
# CORS support
gem 'rack-cors', require: 'rack/cors'
# API Design
gem 'kaminari'
gem 'active_model_serializers', '~> 0.8.0'
# Authentication
gem 'devise', '~> 3.4'
# Authorization
gem 'pundit'
gem 'auto_strip_attributes', '~> 2.0'
gem 'enumerize'
# App config and ENV variables for heroku
gem 'figaro', '~> 1.0'
# Nested categories for OpenEligibility
gem 'ancestry'
gem 'friendly_id', '~> 5.0'
# Caching
gem 'rack-cache'
gem 'dalli'
gem 'kgio'
gem 'memcachier'
gem 'csv_shaper'
gem 'rubyzip'
gem 'sucker_punch'
group :production do
# Heroku recommended
gem 'rails_12factor'
end
group :test, :development do
gem 'rspec-rails', '~> 3.1'
gem 'rspec-its'
gem 'factory_girl_rails', '>= 4.2.0'
gem 'bullet'
gem 'smarter_csv'
end
group :test do
gem 'database_cleaner', '>= 1.0.0.RC1'
gem 'capybara'
gem 'poltergeist'
gem 'shoulda-matchers', require: false
gem 'coveralls', require: false
gem 'rubocop'
gem 'haml-lint'
gem 'webmock'
end
group :development do
gem 'quiet_assets', '>= 1.0.2'
gem 'better_errors', '>= 0.7.2'
gem 'binding_of_caller', '>= 0.7.1', platforms: [:mri_19, :rbx]
gem 'spring'
gem 'spring-commands-rspec'
gem 'spring-watcher-listen'
gem 'letter_opener'
# For profiling the app's performance and memory usage.
gem 'derailed'
gem 'rack-mini-profiler'
gem 'flamegraph'
end