This repository has been archived by the owner on Sep 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
96 lines (82 loc) · 2.03 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
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '~> 4.0.0'
gem 'unicorn'
gem 'capistrano'
gem 'rvm-capistrano', require: false
gem 'sass-rails', '~> 4.0.0'
gem 'slim'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'jbuilder', '~> 1.2'
gem 'yajl-ruby'
group :doc do
gem 'sdoc', require: false
end
gem 'mysql2', '~> 0.3.18'
gem 'net-ldap', git: 'git://github.com/ruby-ldap/ruby-net-ldap.git', branch: 'master'
gem 'sentry-raven'
# devise
gem 'devise', '~> 3.0.x'
gem 'devise_invitable'
gem 'devise_ldap_authenticatable'
gem 'cancan'
gem 'bootstrap-sass', '~> 3.1.0'
gem 'active_link_to'
gem 'figaro', github: 'laserlemon/figaro'
gem 'rolify', github: 'EppO/rolify'
gem 'draper', '~> 1.0'
gem 'simple_form', git: 'git://github.com/plataformatec/simple_form.git'
gem 'will_paginate', '~> 3.0'
gem 'will_paginate-bootstrap'
gem 'whenever'
gem 'nokogiri'
gem 'redcarpet'
gem 'validate_url'
gem 'paperclip', '~> 4.1'
gem 'rails-settings-cached', '0.3.1'
# time helpers
gem 'chronic'
gem 'tod'
gem 'ice_cube'
gem 'ri_cal'
group :development do
gem 'guard', '>=2.1.0'
gem 'unicorn-rails'
gem 'better_errors'
gem 'annotate', '>= 2.5.0'
gem 'binding_of_caller'
gem 'guard-bundler'
gem 'guard-rails'
gem 'guard-rspec'
gem 'haml-rails'
gem 'haml2slim'
gem 'html2haml'
gem 'quiet_assets'
gem 'rb-fchange', require: false
gem 'rb-fsevent', require: false
gem 'rb-inotify', require: false
gem 'letter_opener'
end
group :development, :test do
gem 'simplecov', require: false
gem 'factory_girl_rails'
gem 'faker'
gem 'rspec-rails'
end
group :test do
gem 'capybara'
gem 'poltergeist'
gem 'database_cleaner'
gem 'email_spec'
gem 'launchy'
end
group :production do
gem 'rails_12factor' # For asset compilation
end
# optional, only useful for playlists/AudioVault: `bundle install --without=oracle`
# https://github.com/wrekatlanta/wrektranet/wiki/Installing-Oracle-adapters
group :oracle do
gem 'activerecord-oracle_enhanced-adapter', git: 'git://github.com/rsim/oracle-enhanced.git'
gem 'ruby-oci8', '~> 2.1.0'
end