Files
importer-issue-ops/Gemfile

24 lines
691 B
Ruby
Raw Permalink Normal View History

2022-01-07 19:45:53 +00:00
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
2022-05-31 11:52:52 -07:00
gem "activesupport", "~> 7.0"
gem "json", "~> 2.6"
gem "require_all", "~> 3.0.0"
2022-01-07 19:45:53 +00:00
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"
2022-01-07 19:45:53 +00:00
gem "ruby-debug-ide", "~> 0.7.2"
gem "shoulda-matchers", "~> 4.5.1"
end