Sha256: c05794b7c8d29562e8c2c1f3232500aa05c76275a2ab3c3b22339da5199c568d

Contents?: true

Size: 1.4 KB

Versions: 2

Compression:

Stored size: 1.4 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'my_help/version'

Gem::Specification.new do |spec|
  spec.name          = "my_help"
  spec.version       = MyHelp::VERSION
  spec.authors       = ["Shigeto R. Nishitani"]
  spec.email         = ["shigeto_nishitani@me.com"]

  spec.summary       = %q{display emacs key bindings in Japanese.}
  spec.description   = %q{Emulating CUI(CLI) help, an user makes and displays his own helps.}
  spec.homepage      = "https://github.com/daddygongon/my_help"
  spec.license       = "MIT"
  spec.metadata["yard.run"] = "yri" # use "yard" to build full HTML docs.
  # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
  # delete this section to allow pushing this gem to any host.
#  if spec.respond_to?(:metadata)
#    spec.metadata['allowed_push_host'] = 'http://rubygems.org'
#  else
#    raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
#  end

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.11"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_dependency "systemu"
  spec.add_dependency "colorize"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
my_help-0.6.2 my_help.gemspec
my_help-0.6.1 my_help.gemspec