Sha256: 1ddeddc8619ed28e95b883df1bb6e87013a61b46e7ed37e02142d9332e50ba23
Contents?: true
Size: 1.76 KB
Versions: 1
Compression:
Stored size: 1.76 KB
Contents
lib = File.expand_path("lib", __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "tomo/plugin/rollbar/version" Gem::Specification.new do |spec| spec.name = "tomo-plugin-rollbar" spec.version = Tomo::Plugin::Rollbar::VERSION spec.authors = ["Matt Brictson"] spec.email = ["opensource@mattbrictson.com"] spec.summary = "Provides rollbar tasks for tomo" spec.homepage = "https://github.com/mattbrictson/tomo-plugin-rollbar" spec.license = "MIT" spec.metadata = { "bug_tracker_uri" => "https://github.com/mattbrictson/tomo-plugin-rollbar/issues", "changelog_uri" => "https://github.com/mattbrictson/tomo-plugin-rollbar/releases", "homepage_uri" => "https://github.com/mattbrictson/tomo-plugin-rollbar", "source_code_uri" => "https://github.com/mattbrictson/tomo-plugin-rollbar" } # 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(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(docs|test|spec|features)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.required_ruby_version = ">= 2.4.0" spec.add_dependency "tomo" spec.add_development_dependency "bundler", "~> 2.0" spec.add_development_dependency "minitest", "~> 5.11" spec.add_development_dependency "minitest-reporters", "~> 1.3" spec.add_development_dependency "rake", "~> 12.3" spec.add_development_dependency "rubocop", "0.71.0" spec.add_development_dependency "rubocop-performance", "1.4.0" spec.add_development_dependency "webmock", "~> 3.6" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tomo-plugin-rollbar-0.1.1 | tomo-plugin-rollbar.gemspec |