forked from harvard-lil/h2o
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
105 lines (97 loc) · 2.43 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'pg', '~> 0.21'
gem 'rails', '5.2.2.1'
gem 'puma', '~> 3.12'
# Asset pipeline and libs (jquery, etc) managed through webpacker configs
gem 'webpacker', '>= 4.0.x'
gem 'actionpack-page_caching'
gem 'acts-as-taggable-on', git: 'https://github.com/mbleigh/acts-as-taggable-on.git', ref: '9bb5738'
gem 'ancestry'
gem 'authlogic'
gem 'bcrypt'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
gem 'cancancan'
gem 'capapi', git: 'https://github.com/leppert/capapi-ruby.git'
gem 'ckeditor'
gem 'coveralls', require: false
gem 'daemons', '1.0.10'
gem 'deep_cloneable'
gem 'delayed_job_active_record'
gem 'delayed_job'
gem 'diff_match_patch'
gem 'draper'
gem 'erubi'
gem 'erubis'
gem 'exception_notification'
gem 'exception_handler'
gem 'fastercsv'
gem 'ffi', '>= 1.9.24'
gem 'formtastic'
gem 'hamlit'
gem 'high_voltage'
gem 'humanize'
gem 'http-cookie'
gem 'httparty'
gem 'jbuilder', '~> 2.6.3'
gem 'json', '1.8.6'
gem 'kaminari'
gem 'loofah', '~> 2.2.3'
gem 'loofah-activerecord', '~> 2.0.0'
gem 'nilify_blanks'
gem 'nokogiri'
gem 'nokogumbo'
gem 'paperclip', '~> 5.2.0'
gem 'progress_bar'
gem 'rails-observers'
gem 'rails_admin', '~> 1.3.0'
gem 'rails_admin_import'
gem 'rails-html-sanitizer'
gem 'sanitize'
gem 'RedCloth'
gem 'rest-client', '~> 1.8.0'
gem 'rubyzip', '>= 1.2.2'
gem 'scrypt'
gem 'select2-rails'
gem 'simple_form'
gem 'sunspot_rails'
gem 'warden'
gem 'will_paginate', git: 'https://github.com/asurin/will_paginate.git', ref:'9e1c0e0'
# export binary gems
gem 'htmltoword', require: true
gem 'methadone', require: false
gem 'wkhtmltopdf-binary', require: false
group :development do
gem 'annotate'
gem 'sunspot_solr'
gem 'web-console'
gem 'guard'
gem 'guard-bundler'
gem 'guard-yarn'
gem 'guard-rails'
gem 'guard-rake'
gem 'guard-spring'
gem 'guard-yield'
gem 'guard-minitest'
gem 'guard-process'
gem 'guard-sunspot', git: 'https://github.com/smit1625/guard-sunspot.git', ref: 'd7b24d8' # fork with Guard 2 support
gem 'terminal-notifier-guard'
end
group :development, :test do
gem 'dotenv-rails'
gem 'launchy'
gem 'minitest-metadata', require: false
gem 'minitest-spec-rails'
gem 'minitest-reporters'
gem 'poltergeist'
gem 'rb-readline'
gem 'pry-byebug'
gem 'simplecov'
gem 'm'
gem 'selenium-webdriver'
end
group :test do
gem 'webmock'
gem 'pretty-diffs'
end