forked from hadleynet/hqmf2js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
38 lines (31 loc) · 881 Bytes
/
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
source "http://rubygems.org"
gem 'rails'
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
gem "hquery-patient-api", :git => 'http://github.com/hquery/patientapi.git', :tag => 'V0.3'
#gem 'hquery-patient-api', :path => '../patientapi'
gem 'hqmf-parser', :git => 'https://github.com/hquery/hqmf-parser.git', :tag => 'V0.3'
#gem 'hqmf-parser', :path => '../hqmf-parser'
gem "health-data-standards", :git => 'http://github.com/projectcypress/health-data-standards.git', :branch => 'develop'
gem 'nokogiri'
gem 'sprockets'
gem 'coffee-script'
gem 'uglifier'
gem 'tilt'
gem 'rake'
gem 'pry'
group :test do
gem 'minitest'
gem 'turn', :require => false
gem 'cover_me', '~> 1.2.0'
gem 'awesome_print', :require => 'ap'
platforms :ruby do
gem "therubyracer", :require => 'v8'
end
platforms :jruby do
gem "therubyrhino"
end
end