-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
62 lines (55 loc) · 1.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
source 'https://rubygems.org'
gem 'rails', '~>6.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
#gem 'rake', '=0.9.2.2'
gem 'omniauth-google-oauth2'
gem "omniauth-rails_csrf_protection"
gem 'marcel','~>1'
gem 'activerecord-session_store'
gem 'activerecord_where_assoc', '~> 1.0' # for scopes about associations
gem 'mysql2'
gem 'json', '>=1.7.7'
gem 'nokogiri'
gem 'clockwork' # scheduler
gem 'hebrew', '>=0.2.6' # for naive_full_nikkud
#gem 'dispatcher'
gem 'puma'
#gem 'thin'
gem 'hamlit-rails'
gem 'haml'
gem 'htmlentities'
gem 'sass-rails'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'jquery-ui-rails'
#gem 'therubyracer'
gem 'mini_racer'
gem 'rexml'
gem 'globalid', '~> 1.0'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
group :development do
gem 'listen'
gem 'bootsnap', require: false
gem 'byebug'
gem 'sqlite3' # enable for dev, if you like
gem 'web-console' #, '~> 2.0'
end
group :production do
gem 'puma-daemon'
end
gem 'rmagick', '~> 5.3' # TODO: migrate away from this to mini_magick
gem 'mini_magick' # for activestorage analysis providing height/width for canvas
gem 'will_paginate'
gem 'tinymce-rails', '~> 5.0' # 6.x changed the toolbar layout and I couldn't be bothered to figure out the change
gem 'tinymce-rails-langs'
gem 'rmultimarkdown'
gem 'test-unit'
gem 'aws-sdk-s3', require: false
gem 'http'