Sha256: 8b86d5c1365165b2afe0c1b9ae5cca11876c68794db1c247a82fd87c75eb83bb

Contents?: true

Size: 1.65 KB

Versions: 6

Compression:

Stored size: 1.65 KB

Contents

# frozen_string_literal: true

require_relative "lib/waylon/wordle/version"

Gem::Specification.new do |spec|
  spec.name          = "waylon-wordle"
  spec.version       = Waylon::Wordle::VERSION
  spec.authors       = ["Jonathan Gnagy"]
  spec.email         = ["jonathan.gnagy@gmail.com"]

  spec.summary       = "A Waylon Skill to allow your bot to play Wordle with you"
  spec.homepage      = "https://github.com/jgnagy/waylon-wordle"
  spec.license       = "MIT"
  spec.required_ruby_version = "~> 3.1"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/jgnagy/waylon-wordle"
  spec.metadata["changelog_uri"] = "https://github.com/jgnagy/waylon-wordle/blob/main/CHANGELOG.md"

  # 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{\A(?:test|spec|features)/}) }
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "waylon-core", "~> 0.1"

  spec.add_development_dependency "bundler", "~> 2.3"
  spec.add_development_dependency "rake", "~> 13.0"
  spec.add_development_dependency "rspec", "~> 3.10"
  spec.add_development_dependency "rubocop", "~> 1.23"
  spec.add_development_dependency "rubocop-rake", "~> 0.6"
  spec.add_development_dependency "rubocop-rspec", "~> 2.6"
  spec.add_development_dependency "simplecov", "~> 0.21"
  spec.add_development_dependency "yard", "~> 0.9", ">= 0.9.27"
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
waylon-wordle-0.3.1 waylon-wordle.gemspec
waylon-wordle-0.3.0 waylon-wordle.gemspec
waylon-wordle-0.2.0 waylon-wordle.gemspec
waylon-wordle-0.1.2 waylon-wordle.gemspec
waylon-wordle-0.1.1 waylon-wordle.gemspec
waylon-wordle-0.1.0 waylon-wordle.gemspec