forked from concerto/concerto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
98 lines (71 loc) · 2.49 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
# Edit this Gemfile to bundle your application's dependencies.
source 'https://rubygems.org'
# Lock the ruby version for now. We don't work on Ruby 2.7, so stick with Ruby 2.6
ruby '~> 2.6.0'
gem 'rails', '~> 4.2'
gem 'nokogiri', '~> 1.13', '>= 1.13.10' #pin while on ruby < 2.7
# Get the absolute path of this Gemfile so the includes below still work
# when the current directory for a bundler command isn't the application's
# root directory.
basedir = File.dirname(__FILE__)
# The Gemfile-plugins gem list is managed by Concerto itself,
# through the ConcertoPlugins controller.
group :concerto_plugins do
eval File.read("#{basedir}/Gemfile-plugins") if File.exist?("#{basedir}/Gemfile-plugins")
end
# Load a local Gemfile if it exists
if File.exist?("#{basedir}/Gemfile.local")
eval File.read("#{basedir}/Gemfile.local")
end
gem 'coffee-rails'
gem 'execjs', '~> 2.2.2'
gem 'sass-rails'
gem 'sprockets', '~> 2.12'
# use nodejs instead of therubyracer for js engine for easier docker and future work
#gem 'therubyracer', platforms: :ruby
gem 'uglifier', '~> 2.7.2'
gem 'bootstrap-datepicker-rails'
gem 'jquery-rails'
gem 'jquery-timepicker-rails'
gem 'turbolinks', '~>2.5.3'
gem 'twitter-bootstrap-rails-confirm'
gem 'responders', '~> 2.0'
# RMagick is used for image resizing and processing
gem 'rmagick', require: 'rmagick', platforms: :ruby
# Attachable does all the file work.
gem 'attachable'
gem 'cancancan'
gem 'devise', :git=> "https://github.com/plataformatec/devise.git", :branch => "3-stable"
gem 'json'
gem 'rubyzip', '~> 1.3.0'
# Process jobs in the background
gem 'clockwork'
gem 'delayed_job_active_record'
gem 'foreman', group: :development
# Test Coverage
gem 'simplecov', require: false, group: :test
# Gem Auditing
gem 'bundler-audit', require: false, group: :test
gem 'kaminari'
gem 'sqlite3', '~> 1.3.6', group: [:development, :test]
gem 'mysql2', group: :mysql
gem 'pg', '~> 0.18', group: :postgres
gem 'public_activity'
gem 'concerto_docsplit'
gem 'redcarpet', '~> 3.5.1'
gem 'google-analytics-turbolinks', '~> 0.0.4'
# NProgress provides progress bars for pages loaded via Turbolinks
gem 'nprogress-rails', '~> 0.2.0.2'
# I18n Tasks
group :development do
gem 'i18n-tasks', '0.9.0'
gem 'slop', '~> 3.6.0' # Required due to https://github.com/glebm/i18n-tasks/issues/118
gem 'awesome_print'
gem 'rack-mini-profiler'
end
gem 'i18n-js', '>= 3.0.0.rc8', '< 3.1.0'
# Github API
gem 'octokit', '~>4.2.0'
gem 'font-awesome-sass'
# Web console
gem 'web-console', '~> 2.0', group: :development