-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathmy_help.gemspec
More file actions
31 lines (28 loc) · 1.18 KB
/
my_help.gemspec
File metadata and controls
31 lines (28 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# 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.homepage = 'https://github.com/daddygongon/my_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"
# spec.add_development_dependency "yard"
# spec.add_development_dependency "rubocop"
# For more information and examples about making a new gem, checkout our
# guide at: https://bundler.io/guides/creating_gem.html
end