This repository has been archived by the owner on Aug 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
65 lines (57 loc) · 1.59 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
63
64
65
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
# defaults
gem "coffee-rails", "4.2.2"
gem "jbuilder", "~> 2.5"
gem "jquery-rails"
gem "mysql2", "~> 0.4.4"
gem "puma", "~> 3.7"
gem "rails", "~> 5.1.2"
gem "sass-rails", "~> 5.0"
gem "turbolinks", "~> 5"
gem "uglifier", ">= 1.3.0"
# options
gem "bootstrap-sass", "~> 3.3.6"
gem "config" # environment settings
gem "devise", "~> 4.3"
gem "doorkeeper"
gem "ledermann-rails-settings" # model settings
gem "redis", "~> 3.0"
gem "slim-rails"
gem "webpacker", "~> 2.0"
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
group :development do
gem "annotate"
gem "capistrano", "~> 3.8.2"
gem "capistrano-bundler"
gem "capistrano-rails"
gem "capistrano-rbenv", "~> 2.0.2"
gem "capistrano-safe-deploy-to", "~> 1.1.1"
gem "foreman"
gem "listen", ">= 3.0.5", "< 3.2"
gem "rubocop", "~> 0.49.1", require: false
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
gem "web-console", ">= 3.3.0"
# gem 'rails-erd'
end
group :development, :test do
gem "byebug", platforms: %i[mri mingw x64_mingw]
gem "capybara", "~> 2.13"
gem "pry-byebug"
gem "pry-rails"
gem "selenium-webdriver"
end
group :test do
gem "database_cleaner", "~> 1.6.1"
gem "factory_girl_rails", "~> 4.8.0"
gem "faker", "~> 1.7.3"
gem "rspec-rails", "~> 3.6"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]