invisible_standards 0.1.1 → 0.1.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/ihv-rubocop.yml +1 -0
- data/lib/invisible_standards/engine.rb +9 -7
- data/lib/invisible_standards/project_meta.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 597ef30cc1ca4cd0a757bb55548ce8bd12ee1ce2f1ad588f25a3479eed254ad4
|
|
4
|
+
data.tar.gz: c42274530178c09a0dda28d128c3ed1038b97f87baba05dbb62f13565b98710f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5f4f3c0b9c250a168b4cbbf81d7e4621d24228501554ad0d2220adc94042465c6b8cfb145706716becf3889ff68d995824903490e02adb54fe1eefd5280730fa
|
|
7
|
+
data.tar.gz: 14565a0b1aa0c5170e34237eabe05bcb2d71980abc7aac8b4956f31068badbc4a4e5a99cf3a02c6f16c774e383e4d443f0882a25dca95f00b0915ba6596c1f74
|
data/ihv-rubocop.yml
CHANGED
|
@@ -7,14 +7,16 @@ class InvisibleStandards::Engine < ::Rails::Engine
|
|
|
7
7
|
# These will be moved into a different repo soon
|
|
8
8
|
namespace :invisible_toolkit do
|
|
9
9
|
namespace :changelog do
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
if ENV['CHANGELOG_REPO'].present?
|
|
11
|
+
desc 'Create a new changelog based on the current version'
|
|
12
|
+
GitHubChangelogGenerator::RakeTask.new :generate do |config|
|
|
13
|
+
user, project = ENV['CHANGELOG_REPO'].split('/')
|
|
13
14
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
config.user = user
|
|
16
|
+
config.project = project
|
|
17
|
+
config.future_release = ENV['CHANGELOG_VERSION']
|
|
18
|
+
config.token = ENV['CHANGELOG_TOKEN'] || ENV['GITHUB_TOKEN']
|
|
19
|
+
end
|
|
18
20
|
end
|
|
19
21
|
end
|
|
20
22
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: invisible_standards
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Myk Klemme
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-11-
|
|
11
|
+
date: 2019-11-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|