Files
importer-issue-ops/Gemfile
Chase S 65b029a677 Upgrade to Ruby 3.2 (#30)
* Upgrade to Ruby 3.2

* Upgrade and fix rubocop linting

* Bundle exec the parse issue command

* Go back to manually installing dependencies for issue ops
2023-08-14 14:13:37 +00:00

24 lines
691 B
Ruby

# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
gem "activesupport", "~> 7.0"
gem "json", "~> 2.6"
gem "require_all", "~> 3.0.0"
group :development do
gem "dotenv", "~> 2.7.6"
gem "factory_bot", "~> 6.1"
gem "faker", "~> 2.17"
gem "pry-byebug", "~> 3.9"
gem "rspec", "~> 3.10"
gem "rspec-github", "~> 2.3", ">= 2.3.1"
gem "rubocop", "~> 1.5"
gem "rubocop-github", "~> 0.2"
gem "rubocop-performance", "~> 1.18"
gem "ruby-debug-ide", "~> 0.7.2"
gem "shoulda-matchers", "~> 4.5.1"
end