Sha256: da5b6158ca97c4bcaff959e9864ecfa9f4d965bfdbb9a53d73a6b4f2ddc2ba4e
Contents?: true
Size: 1.11 KB
Versions: 2
Compression:
Stored size: 1.11 KB
Contents
# frozen_string_literal: true require_relative "lib/version" Gem::Specification.new do |spec| spec.name = "octokitted" spec.version = Octokitted::Version::VERSION spec.authors = ["Grant Birkinbine"] spec.email = "grant.birkinbine@gmail.com" spec.license = "MIT" spec.summary = "A self-hydrating version of Octokit for usage in CI systems - like GitHub Actions!" spec.description = <<~SPEC_DESC A self-hydrating version of Octokit for usage in CI systems - like GitHub Actions! SPEC_DESC spec.homepage = "https://github.com/grantbirki/octokitted" spec.metadata = { "source_code_uri" => "https://github.com/grantbirki/octokitted", "documentation_uri" => "https://github.com/grantbirki/octokitted", "bug_tracker_uri" => "https://github.com/grantbirki/octokitted/issues" } spec.add_dependency "git", "~> 1.18" spec.add_dependency "octokit", "~> 7.1" spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0") spec.files = %w[LICENSE README.md octokitted.gemspec] spec.files += Dir.glob("lib/**/*.rb") spec.require_paths = ["lib"] end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
octokitted-0.0.2 | octokitted.gemspec |
octokitted-0.0.1 | octokitted.gemspec |