This repository has been archived by the owner on Mar 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
133 lines (92 loc) · 3.02 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
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
ruby '2.4.2'
source 'https://rubygems.org' do
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails'
gem 'responders'
# Use postgresql as the database for Active Record
gem 'pg'
# Use Puma as the app server
gem 'puma'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
gem 'rack-cors'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# Mail handling
gem 'mailgun_rails'
gem 'roadie-rails'
gem 'nokogiri'
gem 'recursive-open-struct'
gem 'attr_encrypted'
gem 'addressable'
gem 'bottled_services', git: 'https://github.com/pawelniewie/bottled_services.git', branch: 'master'
gem 'newrelic_rpm'
gem 'draper', '~> 3.0.0.pre1'
gem 'gibbon'
gem 'rails-commons', git: 'https://github.com/pawelniewie/rails-commons.git', branch: 'master'
gem 'solid_assert'
gem "bugsnag"
gem 'delayed_job_active_record'
gem 'mini_racer', platforms: :ruby
gem 'devise'
gem 'devise_invitable'
gem 'uglifier'
gem 'slim'
gem "zero_downtime_migrations"
gem 'jwt'
gem 'pundit'
gem "active_record-updated_at"
gem 'graphql'
gem 'graphiql-rails'
gem 'graphql-rails-resolver', git: 'https://github.com/colepatrickturner/graphql-rails-resolver.git', branch: 'master'
gem 'deterministic'
gem 'activerecord-session_store'
gem 'sequenced'
gem 'virtus'
gem 'activeadmin', git: 'https://github.com/activeadmin/activeadmin.git'
# Workflow
gem 'aasm'
gem 'wisper', '2.0.0.rc1'
gem "trailblazer-rails"
gem "cells-rails"
# Auditing
gem "rails-observers", git: 'https://github.com/rails/rails-observers.git'
gem "audited", "~> 4.3"
gem 'activerecord-clean-db-structure'
gem 'acts_as_tenant', git: 'https://github.com/a3ammar/acts_as_tenant.git'
gem "paperclip"
gem 'active_model_serializers', '~> 0.10.0'
gem 'webpacker'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'pry-byebug', platform: :mri
gem 'rspec-rails'
gem 'annotate'
gem 'rspec_junit_formatter'
end
group :development do
gem 'listen', '~> 3.0.5'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'dotenv-rails'
gem 'dotenv-heroku'
gem "better_errors"
gem "binding_of_caller"
end
group :test do
gem "capybara"
gem "capybara-selenium"
gem "chromedriver-helper"
gem 'database_cleaner'
gem 'site_prism'
end
gem 'lograge', group: :production
end