-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
119 lines (100 loc) · 3.5 KB
/
Copy pathGemfile
File metadata and controls
119 lines (100 loc) · 3.5 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
# 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.3.11'
gem 'rails', '~> 6.1.7.10'
# Use postgresql as the database for Active Record
gem 'pg', '~> 1.6.3'
# Use Puma as the app server
gem 'puma', '~> 8.0'
# Use cssbundling for stylesheets
gem 'cssbundling-rails', '~> 1.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
# 1.3.7 has error uninitialized constant
# ActiveSupport::LoggerThreadSafeLevel::Logger
gem 'concurrent-ruby', '< 1.3.5'
# 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', '~> 1.2.6'
# https://github.com/ai/autoprefixer-rails
# gem 'autoprefixer-rails', '~> 7.2.5'
gem 'redcarpet', '~> 3.6.1'
gem 'cancancan', '~> 3.6.1'
# Need to update rails, to update devise to 5
gem 'devise', '~> 4.9'
# GitHub API
gem 'octokit', '~> 10.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', '~> 2.0'
# Not in faraday anymore (used by octokit)
gem 'faraday-retry', '~> 1.0'
gem 'kaminari', '~> 1.2.2'
gem 'faker', '~> 3.5.3', require: false
gem 'rollbar', '~> 3.1'
# https://github.com/scenic-views/scenic
# combine issues/tasks for searching
# scenic 1.9 requires ruby 3.1
gem 'scenic', '~> 1.8.0'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger
# console
gem 'byebug', platforms: %i[mri windows]
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '~> 3.32'
gem 'dotenv-rails', '~> 3.2'
# fabrication 3 requires ruby 3.2
gem 'fabrication', '~> 2'
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'
# rspec-rails 8 requires rails 7
gem 'rspec-rails', '~> 6.0'
gem 'selenium-webdriver', '~> 4.26'
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'
# Foreman used by bin/dev
gem 'foreman', '~> 0.90'
gem 'guard-livereload', '~> 2.5', require: false
gem 'guard-webpacker', '~> 0.2.1'
gem 'letter_opener', '~> 1.7'
gem 'listen', '~> 3.2'
# 1.72 introduces plugins
gem 'rubocop', '~> 1.71.0', require: false
gem 'rubocop-rails', '~> 2', 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