webmention-cli 3.0.1 → 3.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 83da64f93ee05a5d647d84a93c014f6e7bf4300c1db06fa7cf322dd0bcf87fe9
4
- data.tar.gz: 597da96d89e4fb38a856d07fc6690fcb681c905fe32768ce0be8dfddc968c263
3
+ metadata.gz: fe11b4e14dfbc318b88b2373067b220b81e63a63c35ab7198eaa201a93aae4a1
4
+ data.tar.gz: c5c7937460a5a1da4e606ec98baf333f12513372ac3b5fb5e7e55337f93a4b0a
5
5
  SHA512:
6
- metadata.gz: 3efe45c726bce67dffbac9c0d9dad64790d7b32ebc6d42cd818c5e90c8c9ade33504ebfacdf0ae7a3f07d486d58de8eccbc4c0b16e36042a26c07a2a513122e4
7
- data.tar.gz: 88be3d7ae0cd17797fc13415b973ad587ced90de4e3a9fff46240a12239aa5e4fa30eeac30914f945ceef69ac653017ffc27c83257f90542b01e02fe0f052a7c
6
+ metadata.gz: 7926fbc70ba7b59ff7618e172c7060d46fce9b1855199f223d17b269230ac5a5c9ae5c0fff8d1c620c58ef8bd03816c9afe0aec609b16496352b13f9b6c19ea6
7
+ data.tar.gz: c65bc85b5cc2e59d73c161e6eee9b3130ce9ec068a000f7d59dbdd2a755e443d6d19dd54aef098de8975a7b27dafe89b28cb21982940ea21e36e9e45efe1e24c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ > [!NOTE]
4
+ > From v3.0.2, changes are documented using [Codeberg Releases](https://codeberg.org/jgarber/webmention-cli/releases). For a given release, metadata on RubyGems.org will link to that version's Release page.
5
+
3
6
  ## 3.0.1 / 2023-12-30
4
7
 
5
8
  - Add `source_code_uri` to metadata (caf4022)
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2018–present Jason Garber
3
+ Copyright (c) 2018 Jason Garber
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,14 +1,18 @@
1
1
  # webmention-cli
2
2
 
3
- **A command-line interface for Webmention written in Ruby.**
3
+ A command-line interface for Webmention written in Ruby.
4
4
 
5
5
  [![Gem](https://img.shields.io/gem/v/webmention-cli.svg?logo=rubygems&style=for-the-badge)](https://rubygems.org/gems/webmention-cli)
6
6
  [![Downloads](https://img.shields.io/gem/dt/webmention-cli.svg?logo=rubygems&style=for-the-badge)](https://rubygems.org/gems/webmention-cli)
7
- [![Build](https://img.shields.io/github/actions/workflow/status/jgarber623/webmention-cli/ci.yml?branch=main&logo=github&style=for-the-badge)](https://github.com/jgarber623/webmention-cli/actions/workflows/ci.yml)
7
+ [![Source](https://img.shields.io/badge/get_it_on_codeberg-2185d0?labelColor=555&logo=codeberg&logoColor=fff&style=for-the-badge)](https://codeberg.org/jgarber/webmention-cli)
8
8
 
9
- ## Installation
9
+ ## Getting Started
10
+
11
+ Before installing and using webmention-cli, you'll want to have [Ruby](https://www.ruby-lang.org) 2.7 (or newer) installed. Using a Ruby version managment tool like [rbenv](https://github.com/rbenv/rbenv), [chruby](https://github.com/postmodern/chruby), or [rvm](https://github.com/rvm/rvm) is recommended.
10
12
 
11
- Before installing and using webmention-cli, you'll want to have [Ruby](https://www.ruby-lang.org) 2.7 (or newer) installed.
13
+ webmention-cli is developed using Ruby 3.4 and is tested against additional Ruby versions using [Forgejo Actions](https://codeberg.org/jgarber/webmention-cli/actions).
14
+
15
+ ## Installation
12
16
 
13
17
  ```sh
14
18
  $ gem install webmention-cli
@@ -77,4 +81,4 @@ webmention-cli is written and maintained by [Jason Garber](https://sixtwothree.o
77
81
 
78
82
  ## License
79
83
 
80
- webmention-cli is freely available under the [MIT License](https://opensource.org/licenses/MIT). Use it, learn from it, fork it, improve it, change it, tailor it to your needs.
84
+ This project is freely available under the [MIT License](https://opensource.org/licenses/MIT).
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Webmention
4
4
  module CLI
5
- VERSION = "3.0.1"
5
+ VERSION = "3.1.0"
6
6
  end
7
7
  end
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
 
13
13
  spec.summary = "A command-line interface for Webmention."
14
14
  spec.description = spec.summary
15
- spec.homepage = "https://github.com/jgarber623/webmention-cli"
15
+ spec.homepage = "https://codeberg.org/jgarber/webmention-cli"
16
16
  spec.license = "MIT"
17
17
 
18
18
  spec.files = Dir["lib/**/*"].reject { |f| File.directory?(f) }
@@ -25,11 +25,13 @@ Gem::Specification.new do |spec|
25
25
 
26
26
  spec.metadata = {
27
27
  "bug_tracker_uri" => "#{spec.homepage}/issues",
28
- "changelog_uri" => "#{spec.homepage}/blob/v#{spec.version}/CHANGELOG.md",
28
+ "changelog_uri" => "#{spec.homepage}/releases/tag/v#{spec.version}",
29
+ "documentation_uri" => "https://rubydoc.info/gems/#{spec.name}/#{spec.version}",
30
+ "homepage_uri" => spec.homepage,
29
31
  "rubygems_mfa_required" => "true",
30
- "source_code_uri" => "#{spec.homepage}/tree/v#{spec.version}"
32
+ "source_code_uri" => "#{spec.homepage}/src/tag/v#{spec.version}",
31
33
  }
32
34
 
33
- spec.add_runtime_dependency "thor", "~> 1.3"
34
- spec.add_runtime_dependency "webmention", "~> 7.0"
35
+ spec.add_dependency "thor", "~> 1.5"
36
+ spec.add_dependency "webmention", "~> 9.1"
35
37
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webmention-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Garber
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2023-12-30 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: thor
@@ -16,28 +15,28 @@ dependencies:
16
15
  requirements:
17
16
  - - "~>"
18
17
  - !ruby/object:Gem::Version
19
- version: '1.3'
18
+ version: '1.5'
20
19
  type: :runtime
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
23
  - - "~>"
25
24
  - !ruby/object:Gem::Version
26
- version: '1.3'
25
+ version: '1.5'
27
26
  - !ruby/object:Gem::Dependency
28
27
  name: webmention
29
28
  requirement: !ruby/object:Gem::Requirement
30
29
  requirements:
31
30
  - - "~>"
32
31
  - !ruby/object:Gem::Version
33
- version: '7.0'
32
+ version: '9.1'
34
33
  type: :runtime
35
34
  prerelease: false
36
35
  version_requirements: !ruby/object:Gem::Requirement
37
36
  requirements:
38
37
  - - "~>"
39
38
  - !ruby/object:Gem::Version
40
- version: '7.0'
39
+ version: '9.1'
41
40
  description: A command-line interface for Webmention.
42
41
  email:
43
42
  - jason@sixtwothree.org
@@ -54,15 +53,16 @@ files:
54
53
  - lib/webmention/cli/runner.rb
55
54
  - lib/webmention/cli/version.rb
56
55
  - webmention-cli.gemspec
57
- homepage: https://github.com/jgarber623/webmention-cli
56
+ homepage: https://codeberg.org/jgarber/webmention-cli
58
57
  licenses:
59
58
  - MIT
60
59
  metadata:
61
- bug_tracker_uri: https://github.com/jgarber623/webmention-cli/issues
62
- changelog_uri: https://github.com/jgarber623/webmention-cli/blob/v3.0.1/CHANGELOG.md
60
+ bug_tracker_uri: https://codeberg.org/jgarber/webmention-cli/issues
61
+ changelog_uri: https://codeberg.org/jgarber/webmention-cli/releases/tag/v3.1.0
62
+ documentation_uri: https://rubydoc.info/gems/webmention-cli/3.1.0
63
+ homepage_uri: https://codeberg.org/jgarber/webmention-cli
63
64
  rubygems_mfa_required: 'true'
64
- source_code_uri: https://github.com/jgarber623/webmention-cli/tree/v3.0.1
65
- post_install_message:
65
+ source_code_uri: https://codeberg.org/jgarber/webmention-cli/src/tag/v3.1.0
66
66
  rdoc_options: []
67
67
  require_paths:
68
68
  - lib
@@ -77,8 +77,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
77
77
  - !ruby/object:Gem::Version
78
78
  version: '0'
79
79
  requirements: []
80
- rubygems_version: 3.1.6
81
- signing_key:
80
+ rubygems_version: 3.6.9
82
81
  specification_version: 4
83
82
  summary: A command-line interface for Webmention.
84
83
  test_files: []