This repository was archived by the owner on Oct 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
138 lines (101 loc) · 2.98 KB
/
Gemfile
File metadata and controls
138 lines (101 loc) · 2.98 KB
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
128
129
130
131
132
133
134
135
136
137
138
source 'https://rubygems.org'
gem 'passenger', '5.3.2'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.6'
# Use jdbcsqlite3 as the database for Active Record
#gem 'activerecord-jdbcsqlite3-adapter'
gem 'mysql2', '~> 0.3.18'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyrhino'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-ui-rails', '~> 4.2.0'
gem 'rails4-autocomplete'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
#gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# bootstrap
gem 'bootstrap-sass'
# summernote alternative to boostrap-wysihtml5
gem 'summernote-rails'
gem 'autoprefixer-rails', '~> 6.5.1'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
group :development, :test do
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin]
# CollectiveAccess Web Service API
gem 'collectiveaccess'
# authentication
gem 'devise', '~> 4.2'
# user roles
gem "rolify"
# user authorization
gem 'pundit'
# group authorization
gem 'groupify'
# simple forms
gem 'simple_form'
# media upload/processing
gem 'paperclip', '~> 4.2'
gem 'paperclip-av-transcoder'
# thumbnail generation
gem 'dragonfly', '~> 1.0.12'
# comments
gem 'acts_as_commentable'
#gem 'acts_as_commentable_with_threading'
gem 'will_paginate', '~> 3.1.0'
# elasticsearch
gem 'elasticsearch-model'
gem 'elasticsearch-rails'
# settings
gem 'ledermann-rails-settings'
# change logging
gem 'paper_trail', '~> 4.0'
# generate missing foreign keys automatically
gem 'immigrant'
# nice wrapper around flickr API
gem 'flickraw'
gem 'htmlentities'
# oauth
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
gem 'omniauth-shibboleth'
gem 'dotenv-rails'
gem 'recaptcha', require: "recaptcha/rails"
# Intro Tour
gem 'bootstrap-tour-rails'
# old fashioned text file logging for maintenance scripts
require 'logger'
gem 'pdfjs_viewer-rails'
gem 'mime-types', require: 'mime/types/full'
# truncate html tags properly for collapsing body text
gem 'truncate_html'
# hierarchy support for structured tags
gem 'ancestry'
gem 'spreadsheet'
gem 'roo', '~> 2.5.0'
gem 'jquery_query_builder-rails'
gem 'ratyrate'
gem 'riiif', '0.4.1'
gem 'bootstrap-editable-rails'
gem 'leaflet-rails'
gem 'activerecord-session_store'
gem 'net-ldap'
gem 'momentjs-rails', '>= 2.9.0'
gem 'bootstrap3-datetimepicker-rails', '~> 4.17.47'