forked from project-rhex/patient-data-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
54 lines (40 loc) · 998 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
source 'http://rubygems.org'
gem 'rails', '3.2.13'
gem "health-data-standards",:git => 'https://github.com/projectcypress/health-data-standards.git', branch: 'develop'
gem "mongoid", '~> 3.1.0'
gem "capistrano", "2.13.5"
gem "nokogiri", '~> 1.5.5'
gem 'devise'
gem "json-jwt"
gem 'omniauth'
gem 'omniauth_openid_connect', :git => "https://github.com/pkmitre/omniauth_openid_connect.git"
gem 'kaminari'
gem "symbolize", :require => "symbolize/mongoid"
gem 'rest-client'
gem "typhoeus"
gem 'rmagick', :require => 'RMagick'
gem 'feedzirra'
gem 'dicom'
group :assets do
gem 'sass-rails', " ~> 3.2.3"
gem 'bootstrap-sass', '~> 2.3.1.0'
gem 'coffee-rails', "~> 3.2.1"
gem 'uglifier', ">= 1.0.3"
end
gem 'jquery-rails'
group :production do
gem "therubyracer"
gem 'thin'
end
group :development do
gem "pry"
gem 'pry-nav'
end
group :test do
gem "pry"
gem 'turn', :require => false
gem "minitest", "~> 4.0"
gem 'cover_me'
gem 'factory_girl_rails'
gem 'webmock'
end