|
3 | 3 | require_relative "lib/tty/prompt/version"
|
4 | 4 |
|
5 | 5 | 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"] |
28 | 29 | spec.require_paths = ["lib"]
|
29 | 30 | spec.required_ruby_version = ">= 2.0.0"
|
30 | 31 |
|
31 |
| - spec.add_dependency "pastel", "~> 0.8" |
| 32 | + spec.add_dependency "pastel", "~> 0.8" |
32 | 33 | spec.add_dependency "tty-reader", "~> 0.8"
|
33 | 34 |
|
34 | 35 | spec.add_development_dependency "rake"
|
|
0 commit comments