-
Notifications
You must be signed in to change notification settings - Fork 154
/
Gemfile
66 lines (51 loc) · 1.49 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 'http://rubygems.org'
gem 'rails', '~> 4.1.2'
gem 'quality-measure-engine', '3.1.0'
gem "hqmf2js", :git=> "https://github.com/pophealth/hqmf2js.git"
gem 'health-data-standards', '3.5.0'
#gem 'health-data-standards', :path=> '../health-data-standards'
gem 'nokogiri'
gem 'rubyzip'
gem 'hquery-patient-api', '1.0.4'
gem 'sshkit'
# Should be removed in the future. This is only used for the
# admin log page. When the admin pages are switched to
# client side pagination, this can go away.
gem 'will_paginate'
gem "active_model_serializers", '0.8.1'
gem 'json', :platforms => :jruby
gem "mongoid"
gem 'highline'
gem 'devise'
gem 'git'
gem 'protected_attributes', '~> 1.0.5'
gem 'foreman'
gem "thin"
gem 'formtastic'
gem 'cancan'
gem 'factory_girl', "2.6.3"
gem 'apipie-rails'
# Gems used for assets
gem 'bootstrap-sass', '~> 3.0.3'
gem 'sass-rails', "~> 4.0.2"
gem 'coffee-rails'
gem 'jquery-rails' # necessary for jquery_ujs w/data-method="delete" etc
gem 'uglifier'
gem 'non-stupid-digest-assets' # support vendored non-digest assets
group :test, :develop, :ci do
gem 'pry'
gem 'jasmine', '2.0.1'
gem 'turn', :require => false
gem 'simplecov', :require => false
gem 'mocha', :require => false
gem "unicorn", :platforms => [:ruby, :jruby]
gem 'minitest', "~> 5.3"
end
group :test, :develop do
gem 'pry-byebug'
end
group :production do
gem 'libv8', '~> 3.16.14.3'
gem 'therubyracer', '~> 0.12.0', :platforms => [:ruby, :jruby] # 10.8 mountain lion compatibility
end
gem 'handlebars_assets'