-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
50 lines (38 loc) · 1.34 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
source 'https://rubygems.org'
gem 'rails'
gem 'jruby-openssl', :platforms => :jruby
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
gem 'daemons'
gem 'jquery-rails'
gem 'mongoid'
gem 'delayed_job'
gem 'delayed_job_mongoid'
gem 'hquery-patient-api', :git => 'http://github.com/scoophealth/patientapi.git', :branch => 'master'
#gem 'hquery-patient-api', path: '../patientapi'
gem "health-data-standards", :git => 'http://github.com/scoophealth/health-data-standards.git', :branch => 'master'
#gem 'health-data-standards', path: '../health-data-standards'
#gem "health-data-standards", :git => 'http://github.com/scoophealth/health-data-standards.git', :branch => 'scoop-develop'
gem "hqmf2js", :git => 'http://github.com/scoophealth/hqmf2js.git', :branch => 'scoop-develop'
#gem 'hqmf2js', path: '../hqmf2js'
gem 'hqmf-parser', :git => 'http://github.com/scoophealth/hqmf-parser.git', :branch => 'scoop-develop'
gem 'coderay'
gem 'kramdown'
gem 'pry'
group :test do
# Pretty printed test output
gem 'minitest', '< 5.0.0'
gem 'turn', :require => false
gem 'cover_me', '>= 1.0.0.rc6', :platforms => :ruby
gem 'factory_girl'
gem 'awesome_print', :require => 'ap'
gem 'mocha', :require => false
gem 'therubyracer', :platforms => :ruby
gem 'therubyrhino', :platforms => :jruby
end
#group :production do
# gem 'thin'
#end