-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
135 lines (103 loc) · 4.33 KB
/
Copy pathGemfile
File metadata and controls
135 lines (103 loc) · 4.33 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.4"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
gem "rails", "~> 7.0.8"
# Use sqlite3 as the database for Active Record
gem "sqlite3", "~> 1.4"
# Use Puma as the app server
gem "puma", "~> 5.0"
# Use SCSS for stylesheets
gem "sass-rails", ">= 6"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder", "~> 2.7"
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.4.4", require: false
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
# Discover N+1 statements
gem "bullet"
# Jard is an improvement on Byebug
gem "ruby_jard"
gem "pry-byebug"
# RuboCop is an excellent linter, we keep it in `test` for CI
gem "rubocop", require: false
gem "rubocop-rails", require: false # Rails specific styles
gem "rubocop-rails_config", require: false # More Rails stuff
gem "rubocop-performance", require: false # Performance checks
gem "rubocop-minitest", require: false # For checking tests
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem "web-console", ">= 4.1.0"
# Display performance information such as SQL time and flame graphs for each request in your browser.
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
gem "rack-mini-profiler", "~> 2.0"
gem "listen", "~> 3.3"
# Spring is removed here because it causes serious issues with the scrapers
# This is required for Ruby 3 from Sorbet
gem "sorted_set"
# Tmuxinator lets us set up standard development environments easily
gem "tmuxinator"
# Yard is for documenting the code
gem "yard", require: false
end
group :test do
gem "net-ping"
end
# Adds support for Capybara system testing and selenium driver
gem "capybara", ">= 3.26"
gem "selenium-webdriver", "4.19"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# The whole point of this app
gem "zorki", "0.1.23", git: "https://github.com/TechAndCheck/zorki"
# gem "zorki", path: "/Users/christopher/Repositories/zorki"
gem "forki", git: "https://github.com/TechAndCheck/forki"
# gem "forki", "0.2.7", path: "/Users/christopher/Repositories/Reporters_Lab/forki"
gem "youtubearchiver", git: "https://github.com/TechAndCheck/YoutubeArchiver"
# gem "birdsong",path: "/Users/christopher/Repositories/birdsong"
gem "birdsong", "0.2.5", git: "https://github.com/cguess/birdsong", branch: "master"
# gem "mosquito-scrape", git: "https://github.com/TechAndCheck/mosquito", branch: "main", require: "mosquito"
# gem "mosquito-scrape", path: "/Users/christopher/Repositories/mosquito", require: "mosquito"
gem "morris", git: "https://github.com/techandcheck/morris", branch: "main"
# gem "morris", path: "/Users/christopher/Repositories/Reporters_Lab/morris"
# Run shell commands (yt-dlp)
gem "terrapin"
# Figaro lets us configure and require environment variable at boot, instead of getting stuck with a
# bad deployment
gem "figaro"
# Add the ability to load `.env` files on launch
gem "dotenv-rails"
# Make JSON-ifying stuff easier
gem "blueprinter" # git: "https://github.com/blueprinter-ruby/blueprinter"
# Used to store settings for auth keys
gem "rails-settings-cached"
# For creating web requests
gem "typhoeus"
# New way to bundle CSS and JS for Rails 7
gem "cssbundling-rails"
gem "importmap-rails"
# Use Stimulus for Rails 7
gem "stimulus-rails"
# Sprockets helps do the CSS stuff
gem "sprockets-rails", require: "sprockets/railtie"
# Tailwind CSS integration
gem "tailwindcss-rails", "~> 2.0"
# New Rails 3.1 debug
gem "debug", ">= 1.0.0"
# Handles the queuing for jobs
gem "sidekiq", "~> 6.5.5"
# AWS for uploading to S3
gem "aws-sdk-s3"
# Curb uses CURL instead of Net::HTTP for capybara
gem "curb", "~> 1.0", ">= 1.0.5"
gem "slack-ruby-client"
gem "honeybadger", "~> 5.8"