middleman-sitemap-ping 1.0.0 → 1.0.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
- SHA1:
3
- metadata.gz: e620a5d0d622a84dc197e19e165639864817ce48
4
- data.tar.gz: 5496411bc7ca8353c18097dfe4e56239f13eba87
2
+ SHA256:
3
+ metadata.gz: f4f23eea5854352d81cd5134f898fe4b75aaeb901db083db18183529725d745b
4
+ data.tar.gz: 13bd0fb8f9111fc291410a4fa3f29df3a9e15f345a16932d8d6926772fed47fb
5
5
  SHA512:
6
- metadata.gz: 5c234070b8509c950ff094a77f25c7894a967cdef6e788d78bf336061297769b15d48962b13de201968c72ce2ba6979c53bed88c7d5aa29e4a77da4bf7ba20d0
7
- data.tar.gz: 68abbc7f6b1f09f4490e410b592ee678b0aaab9c413bb22a2e125f1a930714571527f4b208c10a3faf29d1c94343268f3847eb87ddb0b2dc6335b519f77f413e
6
+ metadata.gz: 7a4ea5dd44ced8d5124931a32d211fc29906c77811d3b171a52ec81aa5e55c833627b1cf0deeeb48b9ad67a48da3efa52fc4df5fc91acb2107b749442eb43d68
7
+ data.tar.gz: 786ba6b3c5248c9507cdd792f6ee4df1d6a7a43bbc64238098bb4cb67512fba34b0810fa6b66f5fb7a68df97702891292347b20b1a108d8ebe1a42b4522e0139
data/CHANGELOG.md CHANGED
@@ -1,15 +1,37 @@
1
- ## 0.2.0
1
+ # Change Log
2
+ All notable changes to this project will be documented in this file.
2
3
 
3
- * Added CLI command
4
+ The format is based on [Keep a Changelog](http://keepachangelog.com/)
5
+ and this project adheres to [Semantic Versioning](http://semver.org/).
4
6
 
5
- ## 0.1.0
7
+ ## [1.0.0] - 2016-11-19
8
+ ### Changed
9
+ - Updated code to work with Middleman 4
6
10
 
7
- * Added the after_build option (defaults to true)
11
+ ### Added
12
+ - Added Travis CI badge to Readme
8
13
 
9
- ## 0.0.2
14
+ ### Removed
15
+ - Removed Rake as development dependency and empty Rakefile
10
16
 
11
- * Updated gemspec
17
+ ## [0.2.0] - 2015-09-05
18
+ ### Added
19
+ * Added CLI command
12
20
 
13
- ## 0.0.1
21
+ ## [0.1.0] - 2015-09-05
22
+ ### Added
23
+ * Added the after_build option (defaults to true)
24
+
25
+ ## [0.0.2] - 2015-07-26
26
+ ### Changed
27
+ * Updated gemspec
14
28
 
29
+ ## [0.0.1] - 2015-07-13
30
+ ### Added
15
31
  * Initial version
32
+
33
+ [Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.0...HEAD
34
+ [1.0.0]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.2.0...v1.0.0
35
+ [0.2.0]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.1.0...v0.2.0
36
+ [0.1.0]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.0.2...v0.1.0
37
+ [0.0.2]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.0.1...v0.0.2
data/README.md CHANGED
@@ -2,8 +2,6 @@
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/middleman-sitemap-ping.png)](http://badge.fury.io/rb/middleman-sitemap-ping)
4
4
  [![Build Status](https://secure.travis-ci.org/bootstrap-ruby/middleman-bootstrap-navbar.png)](https://travis-ci.org/krautcomputing/middleman-sitemap-ping)
5
- [![Dependency Status](https://gemnasium.com/krautcomputing/middleman-sitemap-ping.png)](https://gemnasium.com/krautcomputing/middleman-sitemap-ping)
6
- [![Code Climate](https://codeclimate.com/github/krautcomputing/middleman-sitemap-ping.png)](https://codeclimate.com/github/krautcomputing/middleman-sitemap-ping)
7
5
 
8
6
  [Middleman](https://middlemanapp.com/) extension to ping search engines (Google and Bing) with a sitemap URL
9
7
 
@@ -21,6 +19,10 @@ Or install it yourself as:
21
19
 
22
20
  $ gem install middleman-sitemap-ping
23
21
 
22
+ ## Versions
23
+
24
+ Use version 1.x of this gem for Middleman 4 or 0.x for Middleman 3.
25
+
24
26
  ## Usage
25
27
 
26
28
  Activate the extensions in `config.rb` in your Middleman app:
@@ -50,3 +52,7 @@ bundle exec middleman sitemap_ping
50
52
  3. Commit your changes (`git commit -am 'Add some feature'`)
51
53
  4. Push to the branch (`git push origin my-new-feature`)
52
54
  5. Create new Pull Request
55
+
56
+ ## Support
57
+
58
+ If you like this project, consider [buying me a coffee](https://www.buymeacoffee.com/279lcDtbF)! :)
@@ -4,8 +4,8 @@ module Middleman
4
4
  module SitemapPing
5
5
  class Extension < Middleman::Extension
6
6
  SERVICES = {
7
- google: 'http://www.google.com/webmasters/tools/ping?sitemap=%SITEMAP_URL%',
8
- bing: 'http://www.bing.com/ping?sitemap=%SITEMAP_URL%'
7
+ google: 'https://www.google.com/webmasters/tools/ping?sitemap=%SITEMAP_URL%',
8
+ bing: 'https://bing.com/webmaster/ping.aspx?sitemap=%SITEMAP_URL%'
9
9
  }
10
10
 
11
11
  SERVICES.each_key do |service|
@@ -1,5 +1,5 @@
1
1
  module Middleman
2
2
  module SitemapPing
3
- VERSION = '1.0.0'
3
+ VERSION = '1.0.1'
4
4
  end
5
5
  end
@@ -11,7 +11,7 @@ Gem::Specification.new do |gem|
11
11
  gem.email = 'manuel@krautcomputing.com'
12
12
  gem.summary = 'Middleman extension to ping search engines (Google and Bing) with a sitemap URL'
13
13
  gem.description = 'Middleman extension to ping search engines (Google and Bing) with a sitemap URL'
14
- gem.homepage = 'http://krautcomputing.github.io/middleman-sitemap-ping/'
14
+ gem.homepage = 'http://manuelmeurer.github.io/middleman-sitemap-ping/'
15
15
  gem.license = 'MIT'
16
16
 
17
17
  gem.files = `git ls-files`.split($/)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman-sitemap-ping
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Manuel Meurer
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-19 00:00:00.000000000 Z
11
+ date: 2021-12-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: middleman
@@ -41,11 +41,11 @@ files:
41
41
  - lib/middleman-sitemap-ping/extension.rb
42
42
  - lib/middleman-sitemap-ping/version.rb
43
43
  - middleman-sitemap-ping.gemspec
44
- homepage: http://krautcomputing.github.io/middleman-sitemap-ping/
44
+ homepage: http://manuelmeurer.github.io/middleman-sitemap-ping/
45
45
  licenses:
46
46
  - MIT
47
47
  metadata: {}
48
- post_install_message:
48
+ post_install_message:
49
49
  rdoc_options: []
50
50
  require_paths:
51
51
  - lib
@@ -60,11 +60,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
62
  requirements: []
63
- rubyforge_project:
64
- rubygems_version: 2.6.6
65
- signing_key:
63
+ rubygems_version: 3.2.30
64
+ signing_key:
66
65
  specification_version: 4
67
66
  summary: Middleman extension to ping search engines (Google and Bing) with a sitemap
68
67
  URL
69
68
  test_files: []
70
- has_rdoc: