-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
39 lines (37 loc) · 1.04 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
source "https://rubygems.org"
git_source(:github){|repo| "https://github.com/#{repo}.git"}
gem "bcrypt", "3.1.12"
gem "bootsnap", ">= 1.1.0", require: false
gem "bootstrap-sass", "3.3.7"
gem "bootstrap-will_paginate", "1.0.0"
gem "carrierwave", "1.2.2"
gem "config"
gem "faker"
gem "jbuilder", "~> 2.5"
gem "jquery-rails", "~> 4.3", ">= 4.3.3"
gem "mini_magick", "4.7.0"
gem "puma", "~> 3.11"
gem "rails", "~> 5.2.2"
gem "rails-i18n"
gem "rubocop", "~> 0.54.0", require: false
gem "sass-rails", "~> 5.0"
gem "turbolinks", "~> 5"
gem "uglifier", ">= 1.3.0"
gem "validates_timeliness", "~> 4.0"
gem "will_paginate", "3.1.6"
group :development, :test do
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem "mysql2", ">= 0.4.4", "< 0.6.0"
end
group :development do
gem "listen", ">= 3.0.5", "< 3.2"
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
gem "web-console", ">= 3.3.0"
end
group :test do
gem "capybara", ">= 2.15"
gem "chromedriver-helper"
gem "selenium-webdriver"
end
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]