This repository has been archived by the owner on Dec 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
94 lines (73 loc) · 2.55 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
source "https://rubygems.org"
ruby "2.4.2"
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 5.1.4"
# Use postgresql as the database for Active Record
gem "pg", "~> 0.18"
# Use Puma as the app server
gem "puma", "~> 3.7"
gem "webpacker", "~> 3.0"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder", "~> 2.5"
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Authentication and Authorization
gem "devise", "~> 4.3"
gem "devise-i18n", "~> 1.5"
gem "doorkeeper", "~> 4.2"
gem "omniauth", "~> 1.8"
gem "omniauth-slack", github: "kmrshntr/omniauth-slack"
gem "omniauth-stripe-connect", "~> 2.10"
# Route/Controller/View DRYers
gem "decent_exposure", "~> 3.0"
# Exception tracking and logging
gem "sentry-raven", "~> 2.7"
group :development, :test do
# Debugging
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: %i[mri mingw x64_mingw]
gem "pry"
# Test runners and supporting utilities
gem "factory_bot_rails", "~> 4.8"
gem "rspec-rails", "~> 3.6"
# Feature testing
gem "capybara", "~> 2.16"
gem "capybara-screenshot"
gem "cucumber-rails", "~> 1.5", require: false
gem "database_cleaner"
gem "selenium-webdriver", "~> 3.8"
gem "site_prism", "~> 2.9"
# Dev tooling niceties
gem "coveralls", require: false
gem "dotenv", "~> 2.2", require: false
gem "foreman", "~> 0.84", require: false
end
group :assets do
gem "uglifier", "~> 4.0"
end
group :development do
gem "listen", ">= 3.0.5", "< 3.2"
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem "web-console", ">= 3.3.0"
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
# Checks that code matches our style guide
gem "rubocop", "~> 0.52"
gem "rubocop-migrations", "~> 0.1"
gem "rubocop-rspec", "~> 1.20.1"
# Runs pre-commit and pre-push checks
gem "overcommit", "~> 0.41"
# Document ALL THE THINGS!
gem "yard"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]