tusc 0.6.1 → 0.6.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/CHANGELOG.md +2 -0
- data/Gemfile.lock +1 -1
- data/lib/tusc/version.rb +1 -1
- data/tusc.gemspec +2 -3
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5ba8b7088adb54289552fd607b86b6c01a011cc5523f83d9ff32eb260f38972
|
4
|
+
data.tar.gz: 6a7e64254cc531614d24db1ecfad4fd7670dd5ca6d3616ef141586d393a6c892
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd77e566e57e1bb347193e96b542c01d5a5055f265ba2d8db80aed14525b9f1dd052f197cc60dcc515d7289b0fd2997f85fccd4add821bfb035b93c62b51f951
|
7
|
+
data.tar.gz: '0848c321dc6bcf7247dbd2ac1a8af0ff577f579f943f76c859a33e87d6635b3fd6a2af5e22f79d6e58f4d47104a120db0035be17ea41d81c71e8c5cbb3836a87'
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a CHANGELOG](http://keepachangelog.com/)
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
6
6
|
|
7
|
+
2020-08-13 v0.6.2: Correct gemspec: allowed_push_host, changelog_uri
|
8
|
+
|
7
9
|
2020-08-12 v0.6.1: Prepare for deploy to RubyGems
|
8
10
|
- Updated docs, using yard.
|
9
11
|
|
data/Gemfile.lock
CHANGED
data/lib/tusc/version.rb
CHANGED
data/tusc.gemspec
CHANGED
@@ -16,11 +16,10 @@ Gem::Specification.new do |spec|
|
|
16
16
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
17
17
|
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
18
18
|
if spec.respond_to?(:metadata)
|
19
|
-
|
20
|
-
|
19
|
+
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
|
21
20
|
spec.metadata['homepage_uri'] = spec.homepage
|
22
21
|
spec.metadata['source_code_uri'] = 'https://github.com/mattscilipoti/tusc.rb'
|
23
|
-
|
22
|
+
spec.metadata["changelog_uri"] = 'https://github.com/mattscilipoti/tusc.rb/blob/master/CHANGELOG.md'
|
24
23
|
else
|
25
24
|
raise 'RubyGems 2.0 or newer is required to protect against ' \
|
26
25
|
'public gem pushes.'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tusc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Scilipoti
|
@@ -177,8 +177,10 @@ homepage: https://github.com/mattscilipoti/tusc.rb
|
|
177
177
|
licenses:
|
178
178
|
- MIT
|
179
179
|
metadata:
|
180
|
+
allowed_push_host: https://rubygems.org
|
180
181
|
homepage_uri: https://github.com/mattscilipoti/tusc.rb
|
181
182
|
source_code_uri: https://github.com/mattscilipoti/tusc.rb
|
183
|
+
changelog_uri: https://github.com/mattscilipoti/tusc.rb/blob/master/CHANGELOG.md
|
182
184
|
post_install_message:
|
183
185
|
rdoc_options: []
|
184
186
|
require_paths:
|