indieweb-post_types-identifier-scrobble 0.2.0 → 0.2.1

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: '058d330aa5c1271eda78d01493309e77a2b1e17881a9ddd962b6f10a03fb6eca'
4
- data.tar.gz: 37c8e899a2fcc53fe44879053fc188ad8fb6d4874a3fe5aef1627c086a5f040c
3
+ metadata.gz: 8119adfbb3e363edf58c11c0905647ca6a9c6a26e15640ad19257f2f4171e958
4
+ data.tar.gz: 258cf38bfca73fcabc65699e12aa6f4a8a3dba8873b3b1fa899bfdaee8db88e2
5
5
  SHA512:
6
- metadata.gz: 82d48fc1fa2d44105d17786896cc52c272e2eabe30bd558e197a24821179a65c8eb068d90c63b8a8b9c55b94df7c13c51211f842b616225e80ece1a43d428807
7
- data.tar.gz: 40829f0151134ed98154d1e3dcf7b8385c8d5a1aab1bfec17e72d376f8b731a0b1699c2f02ffbd3c7f62d47bf5df94e5d26cee5ca97da4a74368f60e2b8172be
6
+ metadata.gz: 2cf2a431881d957fa68ec4bbb5b2e842902730061642b0ccb276c9294d2018d54255de68fe97400932af9c3f54805449912183cf7e737885b0dc330806d21a75
7
+ data.tar.gz: c0de61c3fa38bdec7e4d07cc22933c9acf081a5d68a247b25130c72f2a8e5dfbc96f9030e4e05198cbb11d02bda164a69f0ba6a9e363ea6cf3c5685effcfc5a5
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.2.1] - 2020-08-03
10
+
11
+ ### Changed
12
+ - Update gemspec links to point to https://code.deeden.co.uk/
13
+
9
14
  ## [0.2.0] - 2020-05-11
10
15
 
11
16
  ### Security
data/README.md CHANGED
@@ -37,7 +37,7 @@ If a standard emerges in the future for posting scrobbles I will update this gem
37
37
  Add this line to your application's Gemfile:
38
38
 
39
39
  ```ruby
40
- gem 'indieweb-post_types-identifier-scrobble', github: 'srushe/indieweb-post_types-identifier-scrobble'
40
+ gem 'indieweb-post_types-identifier-scrobble'
41
41
  ```
42
42
 
43
43
  And then execute:
@@ -69,7 +69,7 @@ To install this gem onto your local machine, run `bundle exec rake install`.
69
69
 
70
70
  ## Contributing
71
71
 
72
- Bug reports and pull requests are welcome on GitHub at https://github.com/srushe/indieweb-post_types-identifier-scrobble. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
72
+ Bug reports can be added at [https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble/issues](https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble/issues), while patches are welcome at [https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble/patches](https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble/patches).
73
73
 
74
74
  ## License
75
75
 
@@ -77,4 +77,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
77
77
 
78
78
  ## Code of Conduct
79
79
 
80
- Everyone interacting in the Indieweb::PostTypes::Scrobble project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/srushe/indieweb-post_types-identifier-scrobble/blob/master/CODE_OF_CONDUCT.md).
80
+ This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
@@ -11,13 +11,13 @@ Gem::Specification.new do |spec|
11
11
 
12
12
  spec.summary = %q{Identify IndieWeb Microformats 2 posts as scrobbles.}
13
13
  spec.description = %q{IndieWeb Scrobble Post Type Discovery for Microformats 2 JSON.}
14
- spec.homepage = "https://github.com/srushe/indieweb-post_types-identifier-scrobble"
14
+ spec.homepage = "https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble"
15
15
  spec.license = "MIT"
16
16
 
17
17
  spec.metadata = {
18
- 'bug_tracker_uri' => 'https://github.com/srushe/indieweb-post_types-identifier-scrobble/issues',
19
- 'changelog_uri' => 'https://github.com/srushe/indieweb-post_types-identifier-scrobble/blob/master/CHANGELOG.md',
20
- 'homepage_uri' => 'https://github.com/srushe/indieweb-post_types-identifier-scrobble/'
18
+ 'bug_tracker_uri' => 'https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble/issues',
19
+ 'changelog_uri' => 'https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble/changelog',
20
+ 'homepage_uri' => 'https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble/'
21
21
  }
22
22
 
23
23
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
@@ -2,7 +2,7 @@ module Indieweb
2
2
  module PostTypes
3
3
  module Identifier
4
4
  module Scrobble
5
- VERSION = "0.2.0"
5
+ VERSION = "0.2.1"
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: indieweb-post_types-identifier-scrobble
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Rushe
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-05-11 00:00:00.000000000 Z
11
+ date: 2020-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -73,14 +73,14 @@ files:
73
73
  - indieweb-post_types-identifier-scrobble.gemspec
74
74
  - lib/indieweb/post_types/identifier/scrobble.rb
75
75
  - lib/indieweb/post_types/identifier/scrobble/version.rb
76
- homepage: https://github.com/srushe/indieweb-post_types-identifier-scrobble
76
+ homepage: https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble
77
77
  licenses:
78
78
  - MIT
79
79
  metadata:
80
- bug_tracker_uri: https://github.com/srushe/indieweb-post_types-identifier-scrobble/issues
81
- changelog_uri: https://github.com/srushe/indieweb-post_types-identifier-scrobble/blob/master/CHANGELOG.md
82
- homepage_uri: https://github.com/srushe/indieweb-post_types-identifier-scrobble/
83
- post_install_message:
80
+ bug_tracker_uri: https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble/issues
81
+ changelog_uri: https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble/changelog
82
+ homepage_uri: https://code.deeden.co.uk/indieweb-post_types-identifier-scrobble/
83
+ post_install_message:
84
84
  rdoc_options: []
85
85
  require_paths:
86
86
  - lib
@@ -96,7 +96,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
96
96
  version: '0'
97
97
  requirements: []
98
98
  rubygems_version: 3.0.3
99
- signing_key:
99
+ signing_key:
100
100
  specification_version: 4
101
101
  summary: Identify IndieWeb Microformats 2 posts as scrobbles.
102
102
  test_files: []