-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
66 lines (52 loc) · 1.56 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
source 'https://rubygems.org'
ruby '3.2.0'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'administrate', '~> 0.20.1'
gem 'algolia', '~> 2.0.4'
gem 'chronic'
gem 'loofah', '~> 2.3.1'
gem 'pg'
gem 'puma', '~> 5.6.4'
gem 'rails', '~> 6.1.7.8'
gem 'sidekiq', '~> 4.1.3'
gem 'simple_command'
gem 'twitter', '~> 7.0.0'
gem 'rss', '~> 0.2.9'
gem 'uglifier'
# Ruby toolkit for the GitHub API
gem 'octokit', '~> 4.0'
gem 'devise', '~> 4.9.4'
gem 'watir', '~> 7.3.0'
gem 'progress_bar', '~> 1.3.0'
# API
gem 'faraday'
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
gem 'rack-cors', :require => 'rack/cors'
#
# JWT; Token-based authentication
gem 'jwt'
group :test do
gem 'mocha', '1.7.0', require: false
gem 'webmock'
end
group :development, :test do
gem 'better_errors'
gem 'binding_of_caller'
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'dotenv-rails', '3.1.2'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rspec-rails', '~> 6.1.3'
gem 'rubocop', '~> 1.65.1'
gem 'rubocop-performance', '~> 1.21.1'
gem 'rubocop-rails', '~> 2.25.1'
# 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'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]