-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
115 lines (97 loc) · 2.04 KB
/
Gemfile
File metadata and controls
115 lines (97 loc) · 2.04 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
source 'https://rubygems.org'
ruby '2.6.6'
# transient dependency of rails with security issue, pick secure one
gem 'loofah', '>= 2.2.3'
gem 'rails-html-sanitizer', '~> 1.0.4'
gem 'sprockets', '~> 3.7.2'
gem 'rack', '>= 1.6.11'
# infrastructure
gem 'dry-auto_inject'
gem 'dry-validation'
gem 'dry-monads'
gem 'dry-transaction'
gem 'dry-struct'
gem 'dry-initializer'
gem 'dry-dependency-injection'
gem 'dry-types'
# pdf
gem 'slim'
gem 'wicked_pdf'
# storage
gem 'fog-aws'
gem 'magic'
# authentication
gem 'rodauth'
gem 'bcrypt'
gem 'jwt'
# postgres
gem 'schema_plus_enums'
gem 'pg', '0.20.0'
gem 'pgreset' # Automatically kill postgres connections during db:reset
# json
gem 'multi_json'
gem 'oj'
# background / message queue
gem 'sidekiq'
# iso-3166, etc
gem 'validates_zipcode'
gem 'countries'
gem 'iban-tools'
gem 'ruby_regex'
# discovergy
gem 'oauth'
# metrics
gem 'leafy'
gem 'concurrent-ruby-ext'
# Backend
gem 'puma'
gem 'roda'
gem 'activerecord', '< 5'
gem 'redis'
gem 'rack-cors', require: 'rack/cors'
gem 'clockwork'
gem 'mail'
gem 'multipart-post'
gem 'ffaker' # using ffaker instead of faker because it has German fakers.
gem "mini_magick", ">= 4.9.4"
gem 'carrierwave'
gem 'faraday'
gem 'jbuilder'
gem 'remote_lock'
gem 'factory_girl'
gem 'dotenv'
gem 'smarter_csv'
gem 'sentry-raven' # the Sentry exception notification service
gem 'rake'
gem 'rails', '< 5'
gem 'rubyzip', '>= 1.0.0'
# excel
gem 'rubyXL'
# bin/console
gem 'pry'
# Injected by Heroku, we might as well include it here directly
gem 'rails_12factor'
group :production, :staging do
gem 'newrelic_rpm'
end
group :development, :test do
gem 'pry-byebug'
gem 'awesome_print'
gem 'brakeman', :require => false
gem 'listen'
gem 'guard'
gem 'guard-livereload'
gem 'guard-bundler'
gem 'guard-brakeman'
gem 'guard-rspec'
gem 'fog-local'
gem 'rubocop', require: false
end
group :test do
gem 'wkhtmltopdf-binary-edge', '~> 0.12.4.0' # this is for codeship
gem 'ruby-swagger'
gem 'rspec_nested_transactions'
gem 'pry-rescue'
gem 'pry-stack_explorer'
gem 'timecop'
end