indieweb-authorship 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 63cb33a091b6abc55b83f52e2edc1126e1f2d3a5112f4b919b1e2a3d4a771be4
4
- data.tar.gz: 1571b823385080df97df29678cfeedee8bc3a65df54685c81c9b167484aa68a7
3
+ metadata.gz: 92e1bc3393745a747d1c1442c893686d6e876b3e5bbd566dc5ecede99858f8e2
4
+ data.tar.gz: 12aafff51ebbcc98bfcebb55243642fb43318a32a1756f379d90dbc964ee56ef
5
5
  SHA512:
6
- metadata.gz: f584254cb3553cc7d3e70661ba366c9da2ebf6c61b2e665290367689dc768bc2aa2bcaa4a96e271413cb70960604c9683d3fc9068e91bd8793dfb9275beef66c
7
- data.tar.gz: 46a77a6e1b85b300164d88b9936d98846a62d546e8e271ac96b830bfce436778e625eae82e55afa49c0d5f3beed3e5e63cfca7574a6a14b59a3da26c65aab0f8
6
+ metadata.gz: 51abf57beca664f1e6fb1aea13172d642560de127c6e823da197a0f729e831515d992c1f75df2f59bdab5634175b73d582a37937d9ea443db48cd4b00ea437de
7
+ data.tar.gz: 104ddef3f29db68c54c5207f374021b54873b9edd27b97368f38b071701f6ecc527d6910039ff076560b502e3d0b84deb0b5ab06fa6e8f59b29dbc9d48ccff9b
@@ -6,6 +6,15 @@ 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-02
10
+
11
+ ### Changed
12
+ - Update gemspec links to point to https://code.deeden.co.uk/
13
+
14
+ ### Security
15
+
16
+ - Update rake from 12.3 to 13.0.1.
17
+
9
18
  ## [0.2.0] - 2020-05-11
10
19
 
11
20
  ### Added
@@ -1,21 +1,21 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- indieweb-authorship (0.2.0)
4
+ indieweb-authorship (0.2.1)
5
5
  microformats (~> 4.0, >= 4.1.0)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
10
  diff-lcs (1.3)
11
- json (2.3.0)
11
+ json (2.3.1)
12
12
  microformats (4.2.0)
13
13
  json (~> 2.2)
14
14
  nokogiri (~> 1.10)
15
15
  mini_portile2 (2.4.0)
16
- nokogiri (1.10.9)
16
+ nokogiri (1.10.10)
17
17
  mini_portile2 (~> 2.4.0)
18
- rake (12.3.1)
18
+ rake (13.0.1)
19
19
  rspec (3.7.0)
20
20
  rspec-core (~> 3.7.0)
21
21
  rspec-expectations (~> 3.7.0)
@@ -36,7 +36,7 @@ PLATFORMS
36
36
  DEPENDENCIES
37
37
  bundler (~> 1.16)
38
38
  indieweb-authorship!
39
- rake (~> 12.3)
39
+ rake (~> 13.0)
40
40
  rspec (~> 3.0)
41
41
 
42
42
  BUNDLED WITH
data/README.md CHANGED
@@ -42,7 +42,7 @@ If an author is identified then the output will be a hash containing the fields
42
42
 
43
43
  ## Contributing
44
44
 
45
- Bug reports and pull requests are welcome on GitHub at https://github.com/srushe/indieweb-authorship.
45
+ Bug reports and patches are welcome at https://code.deeden.co.uk/indieweb-authorship.
46
46
 
47
47
  ## License
48
48
 
@@ -50,7 +50,7 @@ The gem is available as open source under the terms of the [MIT License](https:/
50
50
 
51
51
  ## Code of Conduct
52
52
 
53
- Everyone interacting in the Indieweb::Authorship project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/srushe/indieweb-authorship/blob/master/CODE_OF_CONDUCT.md).
53
+ Everyone interacting in the Indieweb::Authorship project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](CODE_OF_CONDUCT.md).
54
54
 
55
55
  ## Credits
56
56
 
@@ -10,13 +10,13 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = 'Identify the author of an IndieWeb post'
12
12
  spec.description = 'Identify the author of an IndieWeb post using the Authorship algorithm'
13
- spec.homepage = "https://github.com/srushe/indieweb-authorship"
13
+ spec.homepage = "https://code.deeden.co.uk/indieweb-authorship"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.metadata = {
17
- 'bug_tracker_uri' => 'https://github.com/srushe/indieweb-authorship/issues',
18
- 'changelog_uri' => 'https://github.com/srushe/indieweb-authorship/blob/master/CHANGELOG.md',
19
- 'homepage_uri' => 'https://github.com/srushe/indieweb-authorship/'
17
+ 'bug_tracker_uri' => 'https://code.deeden.co.uk/indieweb-authorship/issues',
18
+ 'changelog_uri' => 'https://code.deeden.co.uk/indieweb-authorship/changelog',
19
+ 'homepage_uri' => 'https://code.deeden.co.uk/indieweb-authorship/'
20
20
  }
21
21
 
22
22
  # Specify which files should be added to the gem when it is released.
@@ -31,6 +31,6 @@ Gem::Specification.new do |spec|
31
31
  spec.add_runtime_dependency "microformats", "~> 4.0", ">= 4.1.0"
32
32
 
33
33
  spec.add_development_dependency "bundler", "~> 1.16"
34
- spec.add_development_dependency "rake", "~> 12.3"
34
+ spec.add_development_dependency "rake", "~> 13.0"
35
35
  spec.add_development_dependency "rspec", "~> 3.0"
36
36
  end
@@ -1,5 +1,5 @@
1
1
  module Indieweb
2
2
  module Authorship
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: indieweb-authorship
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-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: microformats
@@ -50,14 +50,14 @@ dependencies:
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '12.3'
53
+ version: '13.0'
54
54
  type: :development
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '12.3'
60
+ version: '13.0'
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: rspec
63
63
  requirement: !ruby/object:Gem::Requirement
@@ -93,14 +93,14 @@ files:
93
93
  - indieweb-authorship.gemspec
94
94
  - lib/indieweb/authorship.rb
95
95
  - lib/indieweb/authorship/version.rb
96
- homepage: https://github.com/srushe/indieweb-authorship
96
+ homepage: https://code.deeden.co.uk/indieweb-authorship
97
97
  licenses:
98
98
  - MIT
99
99
  metadata:
100
- bug_tracker_uri: https://github.com/srushe/indieweb-authorship/issues
101
- changelog_uri: https://github.com/srushe/indieweb-authorship/blob/master/CHANGELOG.md
102
- homepage_uri: https://github.com/srushe/indieweb-authorship/
103
- post_install_message:
100
+ bug_tracker_uri: https://code.deeden.co.uk/indieweb-authorship/issues
101
+ changelog_uri: https://code.deeden.co.uk/indieweb-authorship/changelog
102
+ homepage_uri: https://code.deeden.co.uk/indieweb-authorship/
103
+ post_install_message:
104
104
  rdoc_options: []
105
105
  require_paths:
106
106
  - lib
@@ -115,9 +115,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
115
115
  - !ruby/object:Gem::Version
116
116
  version: '0'
117
117
  requirements: []
118
- rubyforge_project:
119
- rubygems_version: 2.7.6
120
- signing_key:
118
+ rubygems_version: 3.0.3
119
+ signing_key:
121
120
  specification_version: 4
122
121
  summary: Identify the author of an IndieWeb post
123
122
  test_files: []