This repository has been archived by the owner on Sep 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
83 lines (66 loc) · 2.22 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '2.4.5'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.2.11'
# Use Bootstrap via this gem
gem 'bootstrap-sass', '~> 3.4.1'
gem 'sass-rails', '~> 5.0.4'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'therubyrhino'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', :group => :doc
gem 'carrierwave', '~> 0.11.2'
gem 'carrierwave-mongoid', :require => 'carrierwave/mongoid'
gem 'thin'
gem 'sucker_punch', '~> 2.0'
# sucker punch for running jobs async, in-process
gem 'cqm-converter', '~> 0.3.6'
gem 'cqm-models', '~> 0.8.4'
gem 'cqm-parsers', '~> 0.2.4'
gem 'cqm-validators', '~> 0.1.1'
gem 'health-data-standards', '~> 4.3.5'
gem 'quality-measure-engine',
:git => 'https://github.com/projectcypress/quality-measure-engine.git', :branch => 'bump_mongoid'
# gem "bson"
# gem "moped", github: "mongoid/moped"
gem 'font-awesome-sass'
gem 'rubyzip'
# clean up the stdout logs, doesn't affect the log/access.log and log/error.log
gem 'lograge'
# necessary to prevent cache-busting of the bootstrap fonts
gem 'non-stupid-digest-assets'
gem 'bunny'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem 'overcommit'
gem 'pry'
gem 'rubocop', '0.60.0', :require => false
gem 'scss_lint', :require => false
end
group :test do
gem 'brakeman', :require => false
gem 'bundler-audit'
gem 'codecov', :require => false
gem 'factory_bot_rails'
gem 'minitest', '5.10.3'
gem 'minitest-rails'
gem 'minitest-reporters'
gem 'mocha', :require => false
gem 'simplecov', :require => false
end
group :production do
gem 'newrelic_rpm'
gem 'unicorn-rails'
end