Sha256: cc54097a49da1af984b4d495f5c68d6f833373bebd55b1b488c3e685ea6ff7f7

Contents?: true

Size: 1.4 KB

Versions: 12

Compression:

Stored size: 1.4 KB

Contents

# frozen_string_literal: true

source "https://rubygems.org"

git_source(:github) do |repo_name|
  repo_name = "#{repo_name}/#{repo_name}" if repo_name.exclude?("/")
  "https://github.com/#{repo_name}.git"
end

ruby File.read(".ruby-version").strip

gem "hephaestus", "~> 0.8"

# !!! TODO: put your platform's dependencies here !!!

group :development, :test do
  # better debug output with `ap`
  gem "amazing_print"

  # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
  gem "debug", platforms: [:mri, :mingw, :x64_mingw], require: false

  gem "faker", "~> 3.4"
  gem "rubocop", require: false
  gem "rubocop-standard", require: false
end

group :development do
  gem "dotenv-rails"

  gem "foreman", "~> 0.88"

  gem "licensed", "~> 4.4"

  gem "ruby-lsp", "~> 0.17", require: false

  gem "spoom"
  gem "sorbet"
  gem "tapioca", require: false
end
gem "sorbet-runtime"

group :test do
  gem "simplecov", "~> 0.18", require: false
  gem "simplecov-console", "~> 0.7", require: false

  # track down flakey tests
  gem "minitest-bisect"

  # mocking lib
  gem "mocha"

  # allow easier middleware testing
  gem "rack-test", "~> 2.0"

  # navigate website
  gem "selenium-webdriver"

  # jump around through time
  gem "timecop", "~> 0.9"

  # prevents real http requests
  gem "webmock", "~> 3.23"
end

group :ci do
  gem "brakeman", "~> 6.1"
  gem "bundle-audit", "~> 0.1"
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
hephaestus-0.8.17 templates/root/Gemfile
hephaestus-0.8.16.1 templates/root/Gemfile
hephaestus-0.8.16 templates/root/Gemfile
hephaestus-0.8.15.5 templates/root/Gemfile
hephaestus-0.8.15.4 templates/root/Gemfile
hephaestus-0.8.15.3 templates/root/Gemfile
hephaestus-0.8.15.2 templates/root/Gemfile
hephaestus-0.8.15.1 templates/root/Gemfile
hephaestus-0.8.15 templates/root/Gemfile
hephaestus-0.8.14 templates/root/Gemfile
hephaestus-0.8.13 templates/root/Gemfile
hephaestus-0.8.12.2 templates/root/Gemfile