-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
37 lines (26 loc) · 887 Bytes
/
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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '= 5.1.5'
# Use sqlite3 as the database for Active Record
#gem 'sqlite3'
gem 'pg'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# CMS engine
gem 'storytime', git: 'https://github.com/Loriowar/storytime.git', branch: 'custom'
# Freezing of versions according to StoryTime Gemfile.lock
gem 'fog', '~> 1.41'
gem 'sass-rails', '~> 5.0.7'
# ActiveJob adapter
gem 'queue_classic', '~> 3.1.0'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
# gem 'web-console', '~> 2.0'
gem 'awesome_print'
end