Sha256: 6e905cf1e7d4cd9858a93332535ec2492f2905c85adefccb1227c5e89eb77c9e

Contents?: true

Size: 1.65 KB

Versions: 1

Compression:

Stored size: 1.65 KB

Contents

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'lolcommits/sample_plugin/version'

Gem::Specification.new do |spec|
  spec.name        = "lolcommits-sample_plugin"
  spec.version     = Lolcommits::SamplePlugin::VERSION
  spec.authors     = [ "Matthew Hutchinson" ]
  spec.email       = [ "matt@hiddenloop.com" ]
  spec.summary     = %q(Example gem for lolcommits plugin development)
  spec.homepage    = "https://github.com/lolcommits/lolcommits-sample_plugin"
  spec.license     = "LGPL-3.0"
  spec.description = %q(Use this gem as a guide or template to get started with lolcommits plugin development)

  spec.metadata = {
    "homepage_uri"      => "https://github.com/lolcommits/lolcommits-sample_plugin",
    "documentation_uri" => "https://rubydoc.info/gems/lolcommits-sample_plugin",
    "changelog_uri"     => "https://github.com/lolcommits/lolcommits-sample_plugin/blob/master/CHANGELOG.md",
    "source_code_uri"   => "https://github.com/lolcommits/lolcommits-sample_plugin",
    "bug_tracker_uri"   => "https://github.com/lolcommits/lolcommits-sample_plugin/issues",
    "allowed_push_host" => "https://rubygems.org"
  }

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|features)/}) }
  spec.test_files    = `git ls-files -- {test,features}/*`.split("\n")
  spec.bindir        = "bin"
  spec.executables   = []
  spec.require_paths = [ "lib" ]

  spec.required_ruby_version = ">= 3.1"

  spec.add_runtime_dependency "lolcommits", ">= 0.17.2"

  spec.add_development_dependency "bundler"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "minitest"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lolcommits-sample_plugin-0.5.1 lolcommits-plugin-sample.gemspec