-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
77 lines (70 loc) · 1.76 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.5.0'
gem 'prawn-rails'
gem 'combine_pdf'
gem 'devise'
gem 'kaminari'
gem 'cancancan'
gem 'awesome_print'
gem 'record_tag_helper'
gem 'attr_default'
gem 'hjson'
gem 'memoist'
gem 'percentage', :github => 'mikeymicrophone/percentage'
gem 'timespan'
gem 'redcarpet'
gem 'watir', :github => 'watir/watir'
gem 'webdrivers'
gem 'paranoia'
gem 'fub_client', :github => 'mikeymicrophone/fub_client'
gem 'contactually-rb'
gem 'google-api-client'
gem 'google_calendar'
gem 'ruby_outlook'
gem 'microsoft_graph'
gem 'adal', :github => 'AzureAD/azure-activedirectory-library-for-ruby'
gem 'omniauth-google-oauth2'
gem 'omniauth-microsoft-office365'
gem 'omniauth-contactually'
gem 'oauth2'
gem 'sekrets'
gem 'aws-sdk-s3'
gem 'font_awesome5_rails'
gem 'spinjs-rails'
gem 'fabrication'
gem 'faker'
gem 'google-webfonts-rails', :github => 'masarakki/google-webfonts-rails', :branch => 'for-rails5'
gem 'rollbar'
gem 'newrelic_rpm'
gem 'sqreen'
gem 'rails', '~> 5.2.1'
gem 'pg'
gem 'puma', '~> 3.11'
gem 'jquery-rails'
gem 'jquery-ui-rails', '5.0.5'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'crack'
gem 'rails-env-credentials'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
gem 'chromedriver-helper'
gem 'rspec-rails'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'chartjs-ror'