Sha256: 125956751e0d6c9c5237bda8018a853176f36e42d282452032c6d6992542b9cb
Contents?: true
Size: 1.73 KB
Versions: 5
Compression:
Stored size: 1.73 KB
Contents
# frozen_string_literal: true require_relative "lib/toy_robot_cli/version" Gem::Specification.new do |spec| spec.name = "toy_robot_cli" spec.version = ToyRobotCli::VERSION spec.authors = ["Paulo H Sacramento"] spec.email = ["contato@henriquesacramento.net"] spec.summary = "A CLI interface for the Toy Robot gem." spec.description = "A CLI interface using the thor gem for the Toy Robot gem." spec.homepage = "https://github.com/phsacramento/toy-robot-cli" spec.license = "MIT" spec.required_ruby_version = ">= 2.6.0" spec.metadata["allowed_push_host"] = "https://rubygems.org" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/phsacramento/toy-robot-cli" spec.metadata["changelog_uri"] = "https://github.com/phsacramento/toy-robot-cli" # 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(__dir__) do `git ls-files -z`.split("\x0").reject do |f| (File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile {lib,bin}/**/* lib/**/*]) end end spec.executables = ["toy_robot"] spec.bindir = "bin" spec.require_paths = ["lib"] # Uncomment to register a new dependency of your gem spec.add_development_dependency "aruba", "~> 2.1" spec.add_development_dependency "cucumber", "~> 8.0" spec.add_dependency "matrix", "~> 0.4.2" spec.add_dependency "rdoc", "~> 4.2", ">= 4.2.2" spec.add_dependency "thor", "~> 1.2", ">= 1.2.2" # For more information and examples about making a new gem, check out our # guide at: https://bundler.io/guides/creating_gem.html end
Version data entries
5 entries across 5 versions & 1 rubygems