|
1 | | -lib = File.expand_path "lib", __dir__ |
| 1 | +lib = File.expand_path 'lib', __dir__ |
2 | 2 | $LOAD_PATH.unshift lib unless $LOAD_PATH.include? lib |
3 | | -require "bashly/version" |
| 3 | +require 'bashly/version' |
4 | 4 |
|
5 | 5 | Gem::Specification.new do |s| |
6 | | - s.name = "bashly" |
| 6 | + s.name = 'bashly' |
7 | 7 | s.version = Bashly::VERSION |
8 | | - s.summary = "Bash Command Line Tool Generator" |
9 | | - s.description = "Generate bash command line tools using YAML configuration" |
10 | | - s.authors = ["Danny Ben Shitrit"] |
11 | | - s.email = "db@dannyben.com" |
12 | | - s.files = Dir["README.md", "lib/**/*"] |
13 | | - s.executables = ["bashly"] |
14 | | - s.homepage = "https://github.com/dannyben/bashly" |
15 | | - s.license = "MIT" |
16 | | - s.required_ruby_version = ">= 2.7.0" |
| 8 | + s.summary = 'Bash Command Line Tool Generator' |
| 9 | + s.description = 'Generate bash command line tools using YAML configuration' |
| 10 | + s.authors = ['Danny Ben Shitrit'] |
| 11 | + s.email = 'db@dannyben.com' |
| 12 | + s.files = Dir['README.md', 'lib/**/*'] |
| 13 | + s.executables = ['bashly'] |
| 14 | + s.homepage = 'https://github.com/dannyben/bashly' |
| 15 | + s.license = 'MIT' |
| 16 | + s.required_ruby_version = '>= 2.7.0' |
17 | 17 |
|
18 | 18 | # Sensitive dependencies, stricter version requirements |
19 | | - s.add_runtime_dependency "completely", "~> 0.5.0" |
20 | | - s.add_runtime_dependency "gtx", "~> 0.1.0" |
| 19 | + s.add_runtime_dependency 'completely', '~> 0.5.0' |
| 20 | + s.add_runtime_dependency 'gtx', '~> 0.1.0' |
21 | 21 |
|
22 | | - s.add_runtime_dependency "colsole", "~> 0.7" |
23 | | - s.add_runtime_dependency "filewatcher", "~> 2.0" |
24 | | - s.add_runtime_dependency "lp", "~> 0.2" |
25 | | - s.add_runtime_dependency "mister_bin", "~> 0.7" |
26 | | - s.add_runtime_dependency "requires", "~> 0.2" |
| 22 | + s.add_runtime_dependency 'colsole', '~> 0.7' |
| 23 | + s.add_runtime_dependency 'filewatcher', '~> 2.0' |
| 24 | + s.add_runtime_dependency 'lp', '~> 0.2' |
| 25 | + s.add_runtime_dependency 'mister_bin', '~> 0.7' |
| 26 | + s.add_runtime_dependency 'requires', '~> 0.2' |
27 | 27 |
|
28 | 28 | s.metadata = { |
29 | | - "bug_tracker_uri" => "https://github.com/DannyBen/bashly/issues", |
30 | | - "changelog_uri" => "https://github.com/DannyBen/bashly/blob/master/CHANGELOG.md", |
31 | | - "homepage_uri" => "https://bashly.dannyb.co/", |
32 | | - "source_code_uri" => "https://github.com/DannyBen/bashly" |
| 29 | + 'bug_tracker_uri' => 'https://github.com/DannyBen/bashly/issues', |
| 30 | + 'changelog_uri' => 'https://github.com/DannyBen/bashly/blob/master/CHANGELOG.md', |
| 31 | + 'homepage_uri' => 'https://bashly.dannyb.co/', |
| 32 | + 'source_code_uri' => 'https://github.com/DannyBen/bashly', |
| 33 | + 'rubygems_mfa_required' => 'true', |
33 | 34 | } |
34 | 35 | end |
0 commit comments