forked from MeasureAuthoringTool/bonnie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
66 lines (51 loc) · 1.85 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
source 'https://rubygems.org'
gem 'rails', '3.2.14'
gem 'health-data-standards', :git => 'https://github.com/projectcypress/health-data-standards.git', :branch => 'hqmf_r2.1'
gem 'simplexml_parser', :git => 'https://github.com/projecttacoma/simplexml_parser.git', :branch => 'master'
gem 'hqmf2js', :git => 'https://github.com/pophealth/hqmf2js.git', :branch => 'master'
gem 'bonnie_bundler', :git => 'https://github.com/projecttacoma/bonnie_bundler.git', :branch => 'master'
gem 'quality-measure-engine', '3.0.0'
gem 'hquery-patient-api', '1.0.4'
#gem 'health-data-standards', :path => '../health-data-standards'
#gem 'hqmf2js', path: '../hqmf2js'
#gem 'bonnie_bundler', :path => '../bonnie_bundler'
#gem 'quality-measure-engine', :path => '../quality-measure-engine'
#gem 'hquery-patient-api', :path => '../patientapi'
#gem 'simplexml_parser', :path => '../simplexml_parser'
# needed for HDS
gem 'rubyzip', '< 1.0.0'
gem 'mongoid', '~> 3.1.0'
gem 'devise'
gem 'systemu'
# needed for parsing value sets (we need to use roo rather than rubyxl because the value sets are in xls rather than xlsx)
gem 'roo'
gem 'oj' # Faster JSON
group :test, :development, :ci do
gem 'pry'
gem 'jasmine'
gem 'turn', :require => false
gem 'simplecov', :require => false
gem 'minitest', '~> 4.0'
end
group :test, :development do
gem 'pry-debugger'
gem 'thin'
gem 'capistrano-rails'
gem 'rvm1-capistrano3', require: false
end
group :production do
gem 'exception_notification'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'less-rails'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
gem 'sprockets', '2.2.2.backport1'
gem 'foreman'
gem 'handlebars_assets'
gem 'jquery-rails'