# frozen_string_literal: true source "https://rubygems.org" # Specify your gem's dependencies in bugscriber.gemspec gemspec # Rake is a Make-like program implemented in Ruby [https://github.com/ruby/rake] gem 'rake', '~> 13.0' # Minitest provides a complete suite of testing facilities supporting [https://github.com/minitest/minitest] gem 'minitest', '~> 5.0' # RuboCop is a Ruby code style checking and code formatting tool [https://github.com/rubocop/rubocop] gem 'rubocop', '~> 1.21' # Pretty print Ruby objects with proper indentation and colors [https://github.com/awesome-print/awesome_print] gem 'awesome_print' # A mixin to add configuration functionality to your classes [https://github.com/dry-rb/dry-configurable] gem 'dry-configurable', '~> 0.15.0' # Pry is a runtime developer console and IRB alternative with powerful introspection capabilities [https://github.com/pry/pry] gem 'pry', '~> 0.14.1' # A toolkit of support libraries and Ruby core extensions extracted from the Rails framework [https://github.com/rails/rails] gem 'activesupport', '>= 5.0', '>= 7.0.4' # Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity [https://github.com/rails/rails] gem 'rails', '>= 5.0', '>= 7.0.4' # HTTP/REST API client library [https://github.com/lostisland/faraday] gem 'faraday', '~> 2.6'