Sha256: 18142fc6e3c3bbeca3d2445f8c5a0eb67db1423b0419bdc7337d76d47ea905a1

Contents?: true

Size: 1.15 KB

Versions: 3

Compression:

Stored size: 1.15 KB

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "sentry_jets/version"

Gem::Specification.new do |spec|
  spec.name          = "sentry-jets-tmp"
  spec.version       = SentryJets::VERSION
  spec.authors       = ["Jeremiah Parrack"]
  spec.email         = ["jeremiahlukus1@gmail.com"]

  spec.summary       = %q{Sentry exception report support for Jets}
  spec.homepage      = "https://github.com/jeremiahlukus/sentry-jets"
  spec.license       = "MIT"

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "sentry-ruby"

  spec.add_development_dependency "bundler", "~> 2.4.20"
  spec.add_development_dependency "rake", "~> 13.0"
  spec.add_development_dependency "rspec", "~> 3.4"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sentry-jets-tmp-0.4.5 sentry-jets-tmp.gemspec
sentry-jets-tmp-0.4.4 sentry-jets-tmp.gemspec
sentry-jets-tmp-0.4.3 sentry-jets-tmp.gemspec