-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
68 lines (58 loc) · 2.65 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.3'
gem 'jbuilder', '~> 2.5' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'pg', '>= 0.18', '< 2.0' # Use postgresql as the database for Active Record
gem 'puma', '~> 3.11' # Use Puma as the app server
gem 'rails', '~> 6.0.0.rc1' # You can bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'sidekiq', '~>5.2.7' # Simple, efficient background processing for Ruby
gem 'turbolinks', '~> 5' # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'webpacker', '~> 4.0' # Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'chartkick', '~> 3.2.1'
gem 'envied', '~> 0.9.3' # Ensure presence and type of your app's ENV-variables
gem 'groupdate', '~> 4.1.2'
gem 'rack-timeout', '~> 0.5.1' # Configure Rails middleware with a default timeout of 15
gem 'sendgrid-ruby', '~> 6.0.0' # For sending emails
# For Clearstream
gem 'faraday', '~> 0.15.4'
gem 'faraday_middleware', '~> 0.13.1'
gem 'json', '~> 2.2.0'
gem 'typhoeus', '~> 1.3.1'
gem 'highlands_auth', git: 'git@github.com:highlands/highlands_auth.git', branch: 'master'
gem 'haml-rails', '~> 2.0.1'
gem 'administrate', github: 'thoughtbot/administrate'
gem 'administrate-field-nested_has_many', '~> 1.1.0'
gem 'font-awesome-sass', '~> 5.6', '>= 5.6.1'
gem 'logdna', '~> 1.3.0'
gem 'lograge', '~> 0.11.2'
gem 'logstash-event', '~> 1.2.02'
gem 'slim', '~> 4.0.1'
gem 'systemu', '~> 2.6.5'
group :development, :test do
gem 'faker', '~> 2.1.0'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'awesome_print', '~> 1.8.0'
gem 'byebug', '~> 11.0.1', platforms: %i[mri mingw x64_mingw]
gem 'webmock', '~> 3.6.0'
# https://github.com/liufengyun/hashdiff/issues/45#issuecomment-499566400
gem 'hashdiff', ['>= 1.0.0.beta1', '< 2.0.0']
gem 'hirb', '~> 0.7.3'
gem 'rubocop-performance', '~> 1.4.1'
gem 'rubocop-rails', '~> 2.2.1'
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'web-console', '>= 3.3.0'
end
group :test do
gem 'capybara', '>= 2.15'
gem 'database_cleaner', '~> 1.7.0'
gem 'factory_bot_rails', '~> 5.0.2'
gem 'rails-controller-testing', '~> 1.0.4'
gem 'rspec-rails', '~> 3.8.2'
gem 'selenium-webdriver', '~> 3.142.3'
gem 'shoulda-matchers', '~> 4.1.2'
gem 'webdrivers', '~> 4.1.2' # Easy installation and use of web drivers to run system tests with browsers
end