Sha256: 94c19baf0acd9ddfc21d4db67484a3b46162fab0aafbc1854a5248e8206964a2

Contents?: true

Size: 1.22 KB

Versions: 7

Compression:

Stored size: 1.22 KB

Contents

# frozen_string_literal: true

require_relative "lib/jive/version"

Gem::Specification.new do |spec|
  spec.name          = "jive"
  spec.version       = Jive::VERSION
  spec.authors       = ["mo khan"]
  spec.email         = ["mo@mokhan.ca"]

  spec.summary       = "The art just comes."
  spec.description   = "The art just comes."
  spec.homepage      = "https://rubygems.org/gems/jive"
  spec.license       = "MIT"
  spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")

  spec.metadata["homepage_uri"] = spec.homepage
  spec.files = Dir["lib/**/*.rb"] + Dir["exe/*"] + [
    "LICENSE.txt",
    "README.md",
    "jive.gemspec",
    "jive.sh"
  ]
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]
  spec.post_install_message = <<~MESSAGE
    Run the following command for setup instructions:

      $ jive setup
  MESSAGE

  spec.add_dependency "thor", "~> 1.1"
  spec.add_development_dependency "minitest", "~> 5.0"
  spec.add_development_dependency "rake", "~> 13.0"
  spec.add_development_dependency "rubocop", "~> 1.7"
  spec.add_development_dependency "rubocop-minitest", "~> 0.1"
  spec.add_development_dependency "rubocop-rake", "~> 0.5"
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
jive-0.3.3 jive.gemspec
jive-0.3.2 jive.gemspec
jive-0.3.1 jive.gemspec
jive-0.3.0 jive.gemspec
jive-0.2.3 jive.gemspec
jive-0.2.2 jive.gemspec
jive-0.2.1 jive.gemspec