-
Notifications
You must be signed in to change notification settings - Fork 7
/
Gemfile
68 lines (55 loc) · 1.57 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
source 'https://rubygems.org'
gem 'protected_attributes', '1.1.3'
gem 'rails', '4.2.10'
gem 'jquery-rails', '4.2.2'
gem 'haml', '4.0.7'
gem 'sass-rails', '5.0.6'
gem 'coffee-rails', '4.2.1'
gem 'uglifier', '3.0.4'
gem 'nokogiri', '1.8.2'
gem 'feedjira', '2.1.0'
gem 'savon', '2.12.0'
gem 'siteseeker_normalizer', '0.1.6'
gem 'net-ldap', '0.16.1' # '0.3.1' works, 0.5 and 0.6 (0.10.1?) have an encoding issue: https://github.com/ruby-ldap/ruby-net-ldap/pull/82
gem 'ruby-saml', '1.4.2' # '0.7.0' works, 0.7.1/2 is broken
gem 'bcrypt-ruby', '3.1.5'
gem 'dalli', '2.7.6'
gem 'mysql2', '0.4.5'
gem 'elasticsearch-model', '0.1.9'
gem 'elasticsearch-rails', '0.1.9'
gem 'ansi'
gem 'paperclip', '6.0.0'
gem 'simple_form', '3.3.1'
gem 'daemons', '1.2.4'
gem 'daemons-rails', '1.2.1'
gem 'delayed_job_active_record', '4.1.1'
gem 'capistrano', '~> 3.7.1'
gem 'capistrano-rails', '~> 1.2.0'
gem 'capistrano-rbenv', '~> 2.1.0'
gem 'whenever', '~> 0.9.2', require: false
gem 'highline'
gem 'execjs'
gem 'jbuilder', '2.6.1'
gem 'axlsx', git: 'https://github.com/randym/axlsx.git', ref: '05f3412'
gem 'vcardigan', '0.0.9'
gem 'unicorn', group: [:test, :production]
group :development do
gem 'bullet'
gem 'haml-rails'
gem 'pry-rails'
end
group :development, :local_test do
gem 'quiet_assets'
gem 'thin'
end
group :local_test do
gem 'rspec-rails', '3.5.2'
gem 'factory_girl_rails', '4.8.0'
gem 'capybara', '2.12.1'
gem 'rack-test', '0.6.3'
gem 'poltergeist', '1.13.0'
gem 'guard-rspec', '4.7.3'
gem 'rb-fsevent', '0.9.8'
gem 'launchy', '2.4.3'
gem 'database_cleaner', '1.5.3'
end