dopstick 0.0.1 → 0.0.2
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 +4 -4
- data/.github/FUNDING.yml +1 -1
- data/CHANGELOG.md +5 -0
- data/dopstick.gemspec +1 -1
- data/lib/dopstick/templates/funding.erb +1 -1
- data/lib/dopstick/templates/gemspec.erb +1 -1
- data/lib/dopstick/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ee695ef256b47ceb23cc0326cb011333aa8af9e3e543cd904b5c3a84cae666c
|
|
4
|
+
data.tar.gz: cfabd34e6a575a676a45da2e9d5b481c09aeff321b1667d75bc16e3f5f2ffc70
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 775d30923ea9add775c96c2e1d54fcc34b3879c43208a848f2a24ba2c9532a3bc3f1d93f7f8b5e35ad341c18f4bd9f2b8b1c415e6e0aa1e80b2d24fc6ee55529
|
|
7
|
+
data.tar.gz: e1edd178b62e2f9d213db00b4aae289319376457045bf746defdb7b5733df15b7beb95e332fc58b3ee23b4badd1e6944639338b9478d4602b61d751b77526f6b
|
data/.github/FUNDING.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,11 @@ Prefix your message with one of the following:
|
|
|
11
11
|
- [Security] in case of vulnerabilities.
|
|
12
12
|
-->
|
|
13
13
|
|
|
14
|
+
## v0.0.2 - 2020-11-02
|
|
15
|
+
|
|
16
|
+
- [Fixed] Link added to gemspec's meta info now open the correct code browser.
|
|
17
|
+
- [Fixed] Use correct key name for custom funding urls.
|
|
18
|
+
|
|
14
19
|
## v0.0.1 - 2020-11-02
|
|
15
20
|
|
|
16
21
|
- Initial release.
|
data/dopstick.gemspec
CHANGED
|
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
|
|
15
15
|
|
|
16
16
|
github_url = "https://github.com/fnando/dopstick"
|
|
17
|
-
github_tree_url = "#{github_url}/
|
|
17
|
+
github_tree_url = "#{github_url}/tree/v#{spec.version}"
|
|
18
18
|
|
|
19
19
|
spec.homepage = github_url
|
|
20
20
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
spec.required_ruby_version = Gem::Requirement.new(">= <%= oldest_ruby_version %>")
|
|
15
15
|
|
|
16
16
|
github_url = <%= github_url.inspect %>
|
|
17
|
-
github_tree_url = "#{github_url}/
|
|
17
|
+
github_tree_url = "#{github_url}/tree/v#{spec.version}"
|
|
18
18
|
|
|
19
19
|
spec.homepage = github_url
|
|
20
20
|
spec.metadata["homepage_uri"] = spec.homepage
|
data/lib/dopstick/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dopstick
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nando Vieira
|
|
@@ -188,10 +188,10 @@ licenses:
|
|
|
188
188
|
metadata:
|
|
189
189
|
homepage_uri: https://github.com/fnando/dopstick
|
|
190
190
|
bug_tracker_uri: https://github.com/fnando/dopstick/issues
|
|
191
|
-
source_code_uri: https://github.com/fnando/dopstick/
|
|
192
|
-
changelog_uri: https://github.com/fnando/dopstick/
|
|
193
|
-
documentation_uri: https://github.com/fnando/dopstick/
|
|
194
|
-
license_uri: https://github.com/fnando/dopstick/
|
|
191
|
+
source_code_uri: https://github.com/fnando/dopstick/tree/v0.0.2
|
|
192
|
+
changelog_uri: https://github.com/fnando/dopstick/tree/v0.0.2/CHANGELOG.md
|
|
193
|
+
documentation_uri: https://github.com/fnando/dopstick/tree/v0.0.2/README.md
|
|
194
|
+
license_uri: https://github.com/fnando/dopstick/tree/v0.0.2/LICENSE.md
|
|
195
195
|
post_install_message:
|
|
196
196
|
rdoc_options: []
|
|
197
197
|
require_paths:
|