jekyll-google_search_console_verification_file 0.1.0 → 0.2.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: 2a6ca17ec0bd69f37d9d9e92f524f679724d6a67ded417aafab55508b3a9fe1f
4
- data.tar.gz: 7df68efc8d1976dd260bca2ad95afd42d673cafacb541dbbe8ea62b8b854389b
3
+ metadata.gz: 0b254610274799a827a952fbfc9be6a31a461d59b15a1a98f8cec41a49675243
4
+ data.tar.gz: cc78341c5acee27c59209cf2b40ac016e4580d2603b9bd6d7429cff1f3ecc95f
5
5
  SHA512:
6
- metadata.gz: 23c8646764aa5a745488b879bde235ecaae2294d6d074e06d1a7ee140e1a507455e7b371ad4d7808fc506657b34c91c3eaac261f9aeb324aadc156f3b472ec95
7
- data.tar.gz: 647cc1e5df74cda1e2b3ba90e6bdff7d93d437875c947ea676c8e7cc31cb8afe6c5692016ae6d8e205041466dc5c44013049d9d492b476e695e94920e35c7892
6
+ metadata.gz: a113a4bf6b445fa1dd48621b0b6840308611f33ac77937721ed7d6799bf37e326a1d74a9f037eb6ed94418d117901fdeed2597ee88a8c217076f86335c3445a1
7
+ data.tar.gz: ee54f8e1059e2c10e84bc4076f995826d820e53a67bc41083b7c36b836d617ec4510c3b57b2fe671747f8643d636f2afa46bb12e3ba4a5bdb86f168e373c8c3a
data/Gemfile CHANGED
@@ -15,6 +15,7 @@ group :development, :test do
15
15
  gem "rake", "~> 13.0", require: false
16
16
  gem "travis", "~> 1.0", require: false
17
17
  gem "appraisal", "~> 2.4", require: false
18
+ gem "gem-release", "~> 2.0", require: false
18
19
  end
19
20
 
20
21
  group :test do
data/README.md CHANGED
@@ -1,4 +1,5 @@
1
1
  # Jekyll Google Search Console Verification File Generator Plugin - UNRELEASED
2
+ [![Gem Version](https://badge.fury.io/rb/jekyll-google_search_console_verification_file.svg)](https://badge.fury.io/rb/jekyll-google_search_console_verification_file)
2
3
  [![Travis Build Status](https://img.shields.io/travis/erikw/jekyll-google_search_console_verification_file/main?logo=travis)](https://travis-ci.com/erikw/jekyll-google_search_console_verification_file)
3
4
  [![Code Climate Maintainability](https://api.codeclimate.com/v1/badges/59050f3f66ed1f1ee32e/maintainability)](https://codeclimate.com/github/erikw/jekyll-google_search_console_verification_file/maintainability)
4
5
  [![Code Climate Test Coverage](https://api.codeclimate.com/v1/badges/59050f3f66ed1f1ee32e/test_coverage)](https://codeclimate.com/github/erikw/jekyll-google_search_console_verification_file/test_coverage)
@@ -84,7 +85,8 @@ Following the setup at [how-to-specify-local-ruby-gems-in-your-gemfile](https://
84
85
  - Optionally restore the original gem include in `Gemfile` or keep building from a branch in the github repo.
85
86
 
86
87
  ## Releasing
87
- ## Using gem bundler/gem_tasks
88
+ ## Using bundler/gem_tasks rake tasks
89
+ Following instructions from [bundler.io](https://bundler.io/guides/creating_gem.html#releasing-the-gem):
88
90
  ```console
89
91
  $ vi -p lib/jekyll-google_search_console_verification_file/version.rb CHANGELOG.md
90
92
  $ bundle exec rake build
@@ -96,6 +98,12 @@ $ gem install pkg/jekyll-google_search_console_verification_file-$ver.gem
96
98
  $ bundle exec rake release
97
99
  ```
98
100
 
101
+ ## Using gem-release gem extension
102
+ Using [gem-release](https://github.com/svenfuchs/gem-release):
103
+ ```console
104
+ $ gem bump --push --sign --version minor
105
+ ```
106
+
99
107
  ## Multi-versions
100
108
  * For ruby, just use RVM to switch between supported ruby version specified in `.gemspec`.
101
109
  * To run with different jekyll versions, [Appraisal](https://github.com/thoughtbot/appraisal) is used with [`Appraisals`](Appraisals) to generate different [`gemfiles/`](gemfiles/)
@@ -10,13 +10,13 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = "Generate a Google Search Console verification file from your _config.yml e.g. google47733b3288357e4.html to the root of your Jekyll site."
12
12
  spec.description = "This is a very simple plugin that will generate a Google Search Console (GSC from here) verification file to your _site/ directory in a Jekyll project. This file is used by GSC to verify that you own the site and looks for example like https://erikw.me/googlef47733b3288357e4.html."
13
- spec.homepage = "https://github.com/erikw/jekyll-google_search_console_verification_file/tree/dev"
13
+ spec.homepage = "https://github.com/erikw/jekyll-google_search_console_verification_file/"
14
14
  spec.license = "MIT"
15
15
  spec.required_ruby_version = ">= 2.7", "< 4"
16
16
 
17
17
  spec.metadata["homepage_uri"] = spec.homepage
18
- spec.metadata["source_code_uri"] = "https://github.com/erikw/jekyll-google_search_console_verification_file/tree/dev"
19
- spec.metadata["changelog_uri"] = "https://github.com/erikw/jekyll-google_search_console_verification_file/blob/dev/CHANGELOG.md"
18
+ spec.metadata["source_code_uri"] = "https://github.com/erikw/jekyll-google_search_console_verification_file/"
19
+ spec.metadata["changelog_uri"] = "https://github.com/erikw/jekyll-google_search_console_verification_file/blob/main/CHANGELOG.md"
20
20
 
21
21
  # Specify which files should be added to the gem when it is released.
22
22
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jekyll
4
4
  module GoogleSearchConsoleVerificationFile
5
- VERSION = "0.1.0"
5
+ VERSION = "0.2.0"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-google_search_console_verification_file
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erik Westrup
@@ -71,13 +71,13 @@ files:
71
71
  - script/lint
72
72
  - script/setup
73
73
  - script/test
74
- homepage: https://github.com/erikw/jekyll-google_search_console_verification_file/tree/dev
74
+ homepage: https://github.com/erikw/jekyll-google_search_console_verification_file/
75
75
  licenses:
76
76
  - MIT
77
77
  metadata:
78
- homepage_uri: https://github.com/erikw/jekyll-google_search_console_verification_file/tree/dev
79
- source_code_uri: https://github.com/erikw/jekyll-google_search_console_verification_file/tree/dev
80
- changelog_uri: https://github.com/erikw/jekyll-google_search_console_verification_file/blob/dev/CHANGELOG.md
78
+ homepage_uri: https://github.com/erikw/jekyll-google_search_console_verification_file/
79
+ source_code_uri: https://github.com/erikw/jekyll-google_search_console_verification_file/
80
+ changelog_uri: https://github.com/erikw/jekyll-google_search_console_verification_file/blob/main/CHANGELOG.md
81
81
  post_install_message:
82
82
  rdoc_options: []
83
83
  require_paths: