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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0b254610274799a827a952fbfc9be6a31a461d59b15a1a98f8cec41a49675243
|
|
4
|
+
data.tar.gz: cc78341c5acee27c59209cf2b40ac016e4580d2603b9bd6d7429cff1f3ecc95f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a113a4bf6b445fa1dd48621b0b6840308611f33ac77937721ed7d6799bf37e326a1d74a9f037eb6ed94418d117901fdeed2597ee88a8c217076f86335c3445a1
|
|
7
|
+
data.tar.gz: ee54f8e1059e2c10e84bc4076f995826d820e53a67bc41083b7c36b836d617ec4510c3b57b2fe671747f8643d636f2afa46bb12e3ba4a5bdb86f168e373c8c3a
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
# Jekyll Google Search Console Verification File Generator Plugin - UNRELEASED
|
|
2
|
+
[](https://badge.fury.io/rb/jekyll-google_search_console_verification_file)
|
|
2
3
|
[](https://travis-ci.com/erikw/jekyll-google_search_console_verification_file)
|
|
3
4
|
[](https://codeclimate.com/github/erikw/jekyll-google_search_console_verification_file/maintainability)
|
|
4
5
|
[](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
|
|
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/
|
|
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/
|
|
19
|
-
spec.metadata["changelog_uri"] = "https://github.com/erikw/jekyll-google_search_console_verification_file/blob/
|
|
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.
|
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.
|
|
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/
|
|
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/
|
|
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/
|
|
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:
|