forked from projectcypress/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
88 lines (63 loc) · 2.25 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
source 'https://rubygems.org'
gem 'bson'
gem 'rails', '~> 4.1.11'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'rake'
# gem 'quality-measure-engine', :git => 'https://github.com/pophealth/quality-measure-engine.git', :branch => 'master'
# gem 'quality-measure-engine', :path => '../quality-measure-engine'
gem 'quality-measure-engine', '3.1.2'
# gem 'health-data-standards', "3.5.3"
#gem 'health-data-standards', path: "../health-data-standards"
gem 'health-data-standards',:git => 'https://github.com/projectcypress/health-data-standards.git', :branch => 'master'
#gem 'quality-measure-engine', '~> 2.5.0'
# gem 'health-data-standards',:git => 'https://github.com/ssayer/health-data-standards.git', :branch => 'validators'
# gem 'health-data-standards', :path => '../health-data-standards'
# gem 'health-data-standards', '~> 3.5.2'
#gem 'test-patient-generator', :git => 'https://github.com/pophealth/test-patient-generator.git', :branch => 'develop'
#gem 'test-patient-generator', '~> 1.2.0'
#gem "delayed_job_mongoid_web", :git => 'https://github.com/rdingwell/delayed_job_mongoid_web.git', :branch => 'develop'
gem 'delayed_job_mongoid'
gem "mongoid_rails_migrations" , "~>1.0"
gem 'highline'
# gem 'state_machine'
# Switched to AASM, because state_machine hasn't been updated in almost a year
gem 'aasm'
gem 'devise', '~> 3.2'
gem 'simple_form'
gem "prawn", :require => "prawn"
gem "prawn-table"
gem "pdf-reader", '0.9.0'
gem 'thin', :platforms => [:ruby]
gem 'carrierwave'
gem 'carrierwave-mongoid', :require => 'carrierwave/mongoid'
gem 'cancan', '~> 1.6.7'
gem 'mongoid-grid_fs', '~> 2.1.0' #:git=>'https://github.com/ahoward/mongoid-grid_fs.git'
gem 'cache_digests'
gem "sass", :require => 'sass'
group :assets do
# gem 'bootstrap-sass'
# gem 'sass-rails'
# gem 'coffee-rails'
# gem 'jquery-rails' # necessary for jquery_ujs w/data-method="delete" etc
gem 'uglifier'
end
group :test, :develop do
gem 'pry'
gem 'pry-nav'
gem 'turn', :require => false
gem "cane"
gem 'ruby-graphviz'
end
group :test do
gem 'mocha', :require => false
gem 'webmock'
gem 'rails-perftest'
gem 'ruby-prof'
gem 'simplecov'
gem 'bundler-audit'
end
group :production do
gem 'therubyracer', :platforms => [:ruby]
gem 'therubyrhino', :platforms => [:jruby]
end