-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
63 lines (57 loc) · 1.4 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.2'
gem 'mini_portile2', '2.5.0'
gem 'rails', '~> 6.0.3', '>= 6.0.3.4'
gem 'pg', '>= 0.18', '< 2.0'
gem 'parallel'
gem 'puma', '~> 4.1'
gem 'sass-rails', '>= 6'
gem 'webpacker', '~> 4.0'
gem 'turbolinks', '~> 5'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'activeadmin'
gem 'devise', github: 'heartcombo/devise', branch: 'ca-omniauth-2'
gem 'omniauth-google-oauth2'
gem 'omniauth-rails_csrf_protection'
gem 'intuit-oauth'
gem 'acts_as_paranoid', '~> 0.7.0'
gem 'sentry-ruby'
gem 'sentry-rails'
gem 'httparty'
gem 'quickbooks-ruby'
gem 'order_as_specified'
gem 'validate_url'
gem 'rdiscount'
gem 'storext'
gem 'google-apis-admin_reports_v1'
gem 'google-apis-admin_directory_v1'
gem 'google-apis-calendar_v3'
gem 'noticed', '~> 1.5'
gem 'paper_trail'
gem 'hashdiff'
gem 'skylight', '~> 6.0'
gem 'ferrum'
gem 'parity'
gem 'active_model_serializers', '~> 0.10.2'
gem 'rack-cors', '~> 1.1', '>= 1.1.1'
gem 'octokit'
gem 'graphql-client'
gem 'newrelic_rpm'
group :development, :test do
gem 'pry'
gem 'bullet'
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '~> 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
gem 'webdrivers'
gem 'mocha'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]