-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
executable file
·52 lines (41 loc) · 1.08 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
source 'https://rubygems.org'
gem 'rails', '=3.2.13'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
gem 'daemons'
gem 'jquery-rails', '=1.0.19'
gem 'sprockets'
gem 'webrick', '1.3.1'
gem 'mongoid'
gem 'mongoid_rails_migrations'
gem 'simple_form'
gem 'multipart-post'
gem 'delayed_job'
gem 'delayed_job_mongoid'
gem 'hquery-patient-api', :git => 'https://github.com/scoophealth/patientapi.git', :branch => 'master'
gem 'coderay'
gem 'devise'
gem 'cancan'
gem 'pry'
gem 'kramdown'
gem 'jasmine', :group => [:development, :test]
gem 'headless', :group => [:development, :test]
gem 'parallel'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
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 'fakeweb'
gem 'mocha', :require => false
gem 'therubyracer', :platforms => :ruby
gem 'therubyrhino', :platforms => :jruby
end