Sha256: 7ac8e33d9f9be27a9e06c21d5be160083651b608587e59970fe41abe157862ca
Contents?: true
Size: 1.59 KB
Versions: 5
Compression:
Stored size: 1.59 KB
Contents
# frozen_string_literal: true require_relative "lib/teihitsu_training_cli/version" Gem::Specification.new do |spec| spec.name = "teihitsu_training_cli" spec.version = TeihitsuTrainingCli::VERSION spec.authors = ["Yuzuki Arai"] spec.email = ["yudukikun5120@gmail.com"] spec.summary = "teihitsu training for CLI" spec.description = "A simple quiz application based on CLI." spec.homepage = "https://rubygems.org/gems/teihitsu_training_cli" spec.license = "MIT" spec.required_ruby_version = ">= 3.0.2" # spec.metadata["allowed_push_host"] = "https://rubygems.org/gems/teihitsu_training_cli" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/yudukikun5120/teihitsu_training_cli" spec.metadata["changelog_uri"] = "https://github.com/yudukikun5120/teihitsu_training_cli/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.executables << "trng" spec.require_paths = ["lib"] # Uncomment to register a new dependency of your gem spec.add_dependency "thor", "~> 1.2", ">= 1.2.1" # For more information and examples about making a new gem, checkout our # guide at: https://bundler.io/guides/creating_gem.html end
Version data entries
5 entries across 5 versions & 1 rubygems