Sha256: 2a4985f08381937fdc4b98aa41225c6c2b8666e34a4b0d523d0264c881be4f62
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true require_relative "lib/my_help/version" Gem::Specification.new do |spec| spec.name = "my_help" spec.version = MyHelp::VERSION spec.authors = ["Shigeto R. Nishiani"] spec.email = ["daddygongon@users.noreply.github.com"] spec.license = "MIT" spec.summary = %q{user building help} spec.description = %q{user building help} 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"] # Uncomment to register a new dependency of your gem spec.add_development_dependency "rspec" spec.add_runtime_dependency "thor" spec.add_runtime_dependency "command_line" spec.add_runtime_dependency "colorize" spec.add_development_dependency "aruba" # 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
my_help-1.1 | my_help.gemspec |