forked from nbgallery/nbgallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
executable file
·110 lines (95 loc) · 2.59 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
106
107
108
109
110
source ENV['GALLERY_GEM_SOURCE'] || 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0'
gem 'sprockets'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 6.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
gem 'commontator', '~> 5.1.0'
############################
# Gems for Notebook Gallery
############################
gem 'acts_as_votable'
gem 'bootstrap-sass'
gem 'browser'
gem 'chartkick'
gem 'config'
gem 'devise'
gem 'doorkeeper'
gem 'git'
gem 'hightop'
gem 'jquery-datatables-rails'
gem 'jquery-slick-rails'
gem 'matrix'
gem 'metaid'
gem 'mysql2'
gem 'omniauth-facebook'
gem 'omniauth-github'
gem 'omniauth-gitlab'
gem 'omniauth-google-oauth2'
gem 'omniauth-azure-activedirectory-v2'
gem 'omniauth-rails_csrf_protection'
gem 'pry-rails'
gem 'puma'
gem 'rack-cors'
gem 'rufus-scheduler'
gem 'slim-rails'
gem 'will_paginate'
gem 'rails_same_site_cookie'
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'execjs' # v2.8.0 requires replacing therubyracer with mini_racer
gem 'mini_racer'
# API clients
gem 'httmultiparty'
gem 'httparty'
# Error handling
gem 'exception_notification'
gem 'gaffe'
# Scheduled jobs when running under Passenger
# Required explicitly in script/cronic so we can detect when it's active
gem 'cronic', require: false
# Fulltext indexing
gem 'sunspot_rails'
gem 'sunspot_solr'
# Nightly computation - similarities, suggestions, etc.
gem 'activerecord-import'
gem 'ranker'
gem 'tf-idf'
# Instrumentation
gem 'russdeep'
# Notebook rendering
gem 'diffy'
gem 'redcarpet'
gem 'rouge'
gem 'bootsnap', '>= 1.1.0', require: false
#Better logging
gem 'lograge'
# Development only
group :development do
gem 'dotenv'
gem 'overcommit', require: false
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
gem 'slim_lint', require: false
gem 'web-console', '>= 3.3.0'
gem 'listen'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen'
end
group :test do
gem 'rails-controller-testing'
end
# Load gems from extensions
extension_dirs =
ENV['GALLERY_EXTENSION_DIRS']&.split(File::PATH_SEPARATOR) ||
Dir[File.join(File.dirname(__FILE__), '*extensions')]
extension_dirs.each do |dir|
gemfiles = Dir["#{dir}/Gemfile"] + Dir["#{dir}/*/Gemfile"]
gemfiles.each do |gemfile|
eval(File.read(gemfile), nil, gemfile) # rubocop: disable Security/Eval
end
end