forked from pophealth/popHealth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
71 lines (54 loc) · 1.56 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
67
68
69
70
71
source 'http://rubygems.org'
gem 'rails', '3.2.14'
gem 'quality-measure-engine', '3.0.0'
gem 'health-data-standards', '3.4.4'
gem 'nokogiri'
gem 'rubyzip'
# 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"
gem 'json', :platforms => :jruby
gem "mongoid"
gem 'highline'
gem 'devise'
gem 'git'
gem 'foreman'
gem "thin"
gem 'formtastic'
gem 'cancan'
gem 'factory_girl', "2.6.3"
gem 'apipie-rails'
# Windows doesn't have syslog, so need a gem to log to EventLog instead
gem 'win32-eventlog', :platforms => [:mswin, :mingw]
# backport fixes from future versions of Sprockets into a Rails 3-compatible gem
gem 'sprockets', '2.2.2.backport1'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'less-rails'
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem "bootstrap-sass"
end
group :test, :develop, :ci do
gem 'pry'
gem 'jasmine', '2.0.0'
gem 'turn', :require => false
gem 'simplecov', :require => false
gem 'mocha', :require => false
gem "unicorn", :platforms => [:ruby, :jruby]
gem 'minitest', "~> 4.0"
end
group :test, :develop do
gem 'pry-debugger'
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'
# FIXME remove this when we don't need old versions of jquery/backbone/underscore anymore
gem 'jquery-rails'