Skip to content

Commit 994f8d9

Browse files
committed
Change the gemspec to improve formatting
1 parent 122e0dd commit 994f8d9

File tree

1 file changed

+24
-23
lines changed

1 file changed

+24
-23
lines changed

tty-prompt.gemspec

+24-23
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,33 @@
33
require_relative "lib/tty/prompt/version"
44

55
Gem::Specification.new do |spec|
6-
spec.name = "tty-prompt"
7-
spec.version = TTY::Prompt::VERSION
8-
spec.authors = ["Piotr Murach"]
9-
spec.email = ["[email protected]"]
10-
spec.summary = %q{A beautiful and powerful interactive command line prompt.}
11-
spec.description = %q{A beautiful and powerful interactive command line prompt with a robust API for getting and validating complex inputs.}
12-
spec.homepage = "https://ttytoolkit.org"
13-
spec.license = "MIT"
14-
if spec.respond_to?(:metadata=)
15-
spec.metadata = {
16-
"allowed_push_host" => "https://rubygems.org",
17-
"bug_tracker_uri" => "https://github.com/piotrmurach/tty-prompt/issues",
18-
"changelog_uri" => "https://github.com/piotrmurach/tty-prompt/blob/master/CHANGELOG.md",
19-
"documentation_uri" => "https://www.rubydoc.info/gems/tty-prompt",
20-
"funding_uri" => "https://github.com/sponsors/piotrmurach",
21-
"homepage_uri" => spec.homepage,
22-
"rubygems_mfa_required" => "true",
23-
"source_code_uri" => "https://github.com/piotrmurach/tty-prompt"
24-
}
25-
end
26-
spec.files = Dir["lib/**/*"]
27-
spec.extra_rdoc_files = Dir["README.md", "CHANGELOG.md", "LICENSE.txt"]
6+
spec.name = "tty-prompt"
7+
spec.version = TTY::Prompt::VERSION
8+
spec.authors = ["Piotr Murach"]
9+
spec.email = ["[email protected]"]
10+
spec.summary = "A beautiful and powerful interactive command line prompt."
11+
spec.description = "A beautiful and powerful interactive command line " \
12+
"prompt with a robust API for getting and validating " \
13+
"complex inputs."
14+
spec.homepage = "https://ttytoolkit.org"
15+
spec.license = "MIT"
16+
spec.metadata = {
17+
"allowed_push_host" => "https://rubygems.org",
18+
"bug_tracker_uri" => "https://github.com/piotrmurach/tty-prompt/issues",
19+
"changelog_uri" =>
20+
"https://github.com/piotrmurach/tty-prompt/blob/master/CHANGELOG.md",
21+
"documentation_uri" => "https://www.rubydoc.info/gems/tty-prompt",
22+
"funding_uri" => "https://github.com/sponsors/piotrmurach",
23+
"homepage_uri" => spec.homepage,
24+
"rubygems_mfa_required" => "true",
25+
"source_code_uri" => "https://github.com/piotrmurach/tty-prompt"
26+
}
27+
spec.files = Dir["lib/**/*"]
28+
spec.extra_rdoc_files = Dir["CHANGELOG.md", "LICENSE.txt", "README.md"]
2829
spec.require_paths = ["lib"]
2930
spec.required_ruby_version = ">= 2.0.0"
3031

31-
spec.add_dependency "pastel", "~> 0.8"
32+
spec.add_dependency "pastel", "~> 0.8"
3233
spec.add_dependency "tty-reader", "~> 0.8"
3334

3435
spec.add_development_dependency "rake"

0 commit comments

Comments
 (0)