Sha256: 1120e39a1456d6949418d40961f3de69462c7006df3d2356600142cbdd72ff40
Contents?: true
Size: 995 Bytes
Versions: 1
Compression:
Stored size: 995 Bytes
Contents
# frozen_string_literal: true require_relative "lib/report_err/version" Gem::Specification.new do |spec| spec.name = "reporterr" spec.version = ReportErr::VERSION spec.authors = ["Austin Wasson"] spec.email = ["austinpwasson@gmail.com"] spec.summary = "Catch, capture, and view errors all from within your Rails app." spec.homepage = "https://github.com/wassson/reporterr.git" spec.license = "MIT" spec.required_ruby_version = ">= 2.7.5" spec.metadata["source_code_uri"] = "https://github.com/wassson/reporterr.git" spec.metadata["changelog_uri"] = "https://github.com/wassson/reporterr/blob/main/CHANGELOG.md" spec.files = Dir.chdir(__dir__) do `git ls-files -z`.split("\x0").reject do |f| (File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile]) end end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
reporterr-0.0.1 | reporterr.gemspec |