-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
106 lines (88 loc) · 3.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
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
95
96
97
98
99
100
101
102
103
104
105
106
# 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
ruby '3.0.2'
gem 'rails', '~> 6.1.0'
# Use postgresql as the database for Active Record
gem 'pg', '~> 1.2.3'
# Use Puma as the app server
gem 'puma', '~> 5.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 6.0'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker', '~> 6.0.0.rc.6'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
# Active Job backend
# https://github.com/brandonhilkert/sucker_punch
gem 'sucker_punch', '~> 3.0'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# https://github.com/swanandp/acts_as_list
gem 'acts_as_list', '~> 0.9.10'
# https://github.com/ai/autoprefixer-rails
# gem 'autoprefixer-rails', '~> 7.2.5'
gem 'redcarpet', '~> 3.5.1'
gem 'cancancan', '~> 3.2.0'
gem 'devise', '~> 4.8'
# GitHub API
gem 'octokit', '~> 4.0'
gem 'omniauth-github', '~> 2.0'
# required for omniauth 2.0
# https://github.com/omniauth/omniauth/wiki/Upgrading-to-2.0#rails
gem 'omniauth-rails_csrf_protection', '~> 1.0'
gem 'kaminari', '~> 1.2.1'
gem 'faker', '~> 2.14', require: false
gem 'rollbar', '~> 3.1'
# https://github.com/scenic-views/scenic
# combine issues/tasks for searching
gem 'scenic', '~> 1.5'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger
# console
gem 'byebug', platforms: %i[mri mingw x64_mingw]
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '~> 3.32'
gem 'dotenv-rails', '~> 2.7'
gem 'fabrication', '~> 2.22'
gem 'guard', '~> 2.0'
gem 'guard-bundler', require: false
gem 'guard-rails', '~> 0.8.1', require: false
gem 'guard-rspec', '~> 4.7.3', require: false
gem 'rspec', '~> 3.10'
gem 'rspec-rails', '~> 4.0'
gem 'selenium-webdriver'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere
# in the code.
gem 'better_errors'
gem 'binding_of_caller'
gem 'guard-livereload', '~> 2.5', require: false
gem 'guard-webpacker', '~> 0.2.1'
gem 'letter_opener', '~> 1.7'
gem 'listen', '~> 3.2'
gem 'rubocop', '~> 1.24.0', require: false
gem 'rubocop-rails', '~> 2.13.0', require: false
gem 'scss_lint', '~> 0.59', require: false
gem 'scss_lint_reporter_junit', '~> 0.1', require: false
# Spring speeds up development by keeping your application running in the
# background. Read more: https://github.com/rails/spring
gem 'spring', '~> 2.1'
gem 'spring-watcher-listen', '~> 2.0'
gem 'web-console', '>= 3.3.0'
end
group :test do
# for circleci support
gem 'rspec_junit_formatter', '~> 0.4.1'
gem 'shoulda-matchers', '~> 5.1'
gem 'timecop', '~> 0.9'
gem 'webmock', '~> 3.14.0'
end