-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
52 lines (36 loc) · 1.07 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2.1'
# Use postgresql as the database for Active Record
gem 'pg', '0.21.0'
# Use SCSS for stylesheets
gem 'sassc-rails'
gem 'bootsnap', '>= 1.1.0', require: false
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use jquery as the JavaScript library
gem 'jquery-ui-rails', '~> 5.0.5'
gem 'jquery-rails', '~> 4.3', '>= 4.3.3'
# template language HAML
gem 'haml-rails'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
group :test do
gem 'rspec-rails'
gem 'database_cleaner'
end
# Internationalization
gem 'i18n-js'
# Used in rake tasks
gem 'ruby-progressbar'
# font awesome icons
gem 'font-awesome-rails'
# search with elasticsearch
gem 'searchkick', '2.4.0'