forked from sc0v/binder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
127 lines (95 loc) · 2.17 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
source 'https://rubygems.org'
ruby '2.3.0'
gem 'rails', '4.2.6'
gem 'turbolinks'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'jbuilder'
gem 'bootstrap-sass'
gem 'simple_form'
gem 'therubyracer', :platform=>:ruby
gem 'omniauth'
gem 'omniauth-shibboleth'
# User and role management
gem 'cancancan'
gem 'devise'
gem 'rolify'
# For LDAP calls to CMU's database
gem 'ruby-ldap'
gem 'activeldap', :require => 'active_ldap/railtie'
# For Card-lookup requests
gem 'savon'
# For delayed jobs
gem 'daemons'
gem 'delayed_job'
gem 'delayed_job_active_record'
# For Capistrano deployment
group :development do
gem 'capistrano-rbenv', require: false
# bundler specific tasks in capistrano
gem 'capistrano-bundler'
# rails specific tasks in capistrano
gem 'capistrano-rails'
# passenger specific tasks in capistrano
gem 'capistrano-passenger'
# hide passwords in capistrano
gem 'highline'
# sudo commands in capistrano
gem 'sshkit-sudo'
end
# Document attachments
gem "carrierwave"
# For Pagniation
gem 'will_paginate'
gem 'will_paginate-bootstrap'
gem 'possessive'
gem 'responders'
# Favicons
gem 'rails_real_favicon'
# Twilio for SMS
gem 'twilio-ruby'
# Dossier for reports
gem 'dossier'
# Single test gem for unit testing
gem 'single_test'
group :development do
# Automatically generate comments in models and such based on schema
gem 'annotate'
gem 'better_errors'
gem 'binding_of_caller', :platforms=>[:mri_19, :mri_20, :rbx]
gem 'quiet_assets'
gem 'rails_layout'
gem 'rails-erd'
gem 'spring'
end
group :development, :test do
gem 'thin'
end
group :development, :staging, :production do
gem 'newrelic_rpm'
gem 'mysql2', '~> 0.4.10'
gem 'capistrano3-delayed-job'
end
group :test do
# Functional Test Framework (Capybara with Minitest
#gem 'capybara'
#gem 'minitest'
#gem 'minitest-spec-rails'
#gem 'minitest-wscolor'
# For mocking Web calls
gem 'webmock'
# For Improved Minitest Syntax
gem 'shoulda'
gem 'shoulda-matchers'
# For Factories
gem 'factory_girl_rails'
# For Travis
gem 'rake'
gem 'sqlite3'
gem 'coveralls', require: false
end
group :staging, :production do
gem 'passenger'
end