-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathGemfile
90 lines (76 loc) · 1.79 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
source 'http://rubygems.org'
ruby '2.2.3'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'rails', '~> 4'
gem 'pg'
# store sessions in db rather than in cookies
gem 'activerecord-session_store'
# deprecated, to remove, user.UserObserver is the only place we use this
gem 'rails-observers'
gem "haml-rails", "~> 0.9"
# web server
gem 'unicorn'
# pagination & tagging
gem "kaminari", "~> 0.15.1"
gem 'will_paginate', "~> 3.0.pre2"
gem 'acts-as-taggable-on'
# Emails
gem 'actionmailer-with-request', '~> 0.3'
gem 'exception_notification' , '~> 4'
# Security
gem 'authlogic'
gem 'rubycas-client', "~> 2.3.9", :require => ['casclient', 'casclient/frameworks/rails/filter']
gem 'ucb_ldap', "2.0.0.pre5"
gem 'omniauth'
gem 'omniauth-cas'
gem 'bcrypt'
# Misc
gem 'pothoven-attachment_fu'
gem 'nokogiri'
gem 'email_validator'
# Support for syck. Syck was removed from the ruby stdlib.
gem 'syck'
# Deploy with Capistrano
gem 'capistrano'
gem 'capistrano-passenger'
# Production-specific
group :production do
gem 'rails_12factor'
end
# Development
group :development do
gem 'yard'
gem 'better_errors', "1.1.0"
gem 'binding_of_caller'
gem 'bullet'
gem 'annotate'
gem 'byebug'
end
# Testing
group :test do
gem 'autotest-rails'
gem 'cucumber-rails', "~> 1.4.2"
gem 'capybara'
gem 'database_cleaner'
gem 'simplecov'
end
# Rspec
group :test, :development do
gem 'rspec-rails', '~>3.0'
gem 'rspec', '~> 3.3'
gem 'factory_girl_rails', "~> 4.0"
end
# UI
gem 'therubyracer'
gem 'uglifier'
gem 'sass-rails', '>= 3.2'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'bootstrap-sass', '~> 3.3.3'
gem 'bootstrap_form'
gem 'bootstrap-material-design'
gem 'jquery-datatables-rails', '~> 3.3.0'
gem 'will_paginate-bootstrap'
gem 'bootstrap-datepicker-rails'
gem 'momentjs-rails'