-
Notifications
You must be signed in to change notification settings - Fork 15
/
Gemfile
42 lines (34 loc) · 891 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
source 'http://rubygems.org'
gem 'rails', '3.2.8'
gem "health-data-standards", '~> 2.0.0'
gem 'ruby-openid'
gem "mongoid", '~> 3.0.6'
gem "pry"
gem 'pry-nav'
gem "capistrano"
gem "nokogiri", '~> 1.5.5'
gem 'devise'
gem 'devise_oauth2_providable', :git => 'https://github.com/project-rhex/devise_oauth2_providable.git' #,:branch => "master"
gem 'omniauth_openid_connect', :git => "https://github.com/project-rhex/omniauth_openid_connect.git"
gem 'omniauth'
gem 'omniauth-openid'
gem 'kaminari'
gem "symbolize", :require => "symbolize/mongoid"
group :assets do
gem 'sass-rails', " ~> 3.2.3"
gem 'coffee-rails', "~> 3.2.1"
gem 'uglifier', ">= 1.0.3"
end
gem 'jquery-rails'
group :production do
gem "therubyracer"
gem 'thin'
end
group :test do
gem 'turn', :require => false
gem 'minitest'
gem 'feedzirra'
gem 'cover_me'
gem 'factory_girl_rails'
gem 'webmock'
end