forked from projectcypress/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
49 lines (38 loc) · 1.15 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
source 'http://rubygems.org'
#gem 'bson', '1.3.2'
gem 'rails', '3.2.2'
gem 'jquery-rails'
gem 'rake'
#gem 'quality-measure-engine', :git => 'https://github.com/pophealth/quality-measure-engine.git', :branch => 'develop'
gem 'quality-measure-engine', '1.1.5'
#gem 'health-data-standards', :git => 'https://github.com/projectcypress/health-data-standards.git', :branch => 'develop'
gem 'health-data-standards', '1.0.1'
#gem 'health-data-standards', path: '../shared/health-data-standards'
gem 'bson', '1.5.1'
gem 'bson_ext', '1.5.1'
gem 'mongoid', '~> 2.0'
gem 'devise', '~> 2.0'
gem 'simple_form'
gem 'nokogiri', '~> 1.4.4'
gem 'prawn'
gem "prawnto_2", :require => "prawnto"
gem 'pry'
gem 'pry-nav'
gem 'redis', '~> 2.2.2'
# Windows doesn't have syslog, so need a gem to log to EventLog instead
gem 'win32-eventlog', :platforms => [:mswin, :mingw]
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
group :test, :develop do
gem 'turn', :require => false
gem 'minitest'
gem "tailor"
gem 'simplecov', :require => false
gem 'mocha', :require => false
end
group :production do
gem 'therubyracer', :platforms => [:ruby, :jruby]
end