-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
41 lines (28 loc) · 1 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2.4'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# for displaying source code of examples
gem 'codemirror-rails'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', group: :development
gem 'grapple'
gem "nokogiri", ">= 1.12.5"
# Use Puma as the app server
gem 'puma', '~> 4.3.9'
gem 'will_paginate'
gem 'i18n'
group :development, :test do
# For debugging in VSCode
gem 'ruby-debug-ide'
gem 'debase'
end