checkoff 0.206.0 → 0.207.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 +4 -4
- data/Gemfile.lock +2 -2
- data/Makefile +6 -0
- data/lib/checkoff/version.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: c4713373a7b26b525f483da5a69475a54e581d88e9a2d62c248704253f1a7b9e
|
|
4
|
+
data.tar.gz: 7f3df307162f35d5ae06a744caac036aa758e2bdfa6b70c031c1cf9d873a0a24
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 340121e39c1a3189a732e0e12f2eeb2e0dde07ec6bf2455b12fe2e9ccb71ded6684895c301771567127bf0fb231a2e91908dba90371f70864bdc9458e19d79ee
|
|
7
|
+
data.tar.gz: cabcae1b4f49b00a039fc98c727df77d9fb5988198fd44086a3ddf4231808de9ec38e486e2d98de23b402684449b1d32cfb3ed66181a572c69e4e41416e8e5ab
|
data/Gemfile.lock
CHANGED
|
@@ -34,7 +34,7 @@ GIT
|
|
|
34
34
|
PATH
|
|
35
35
|
remote: .
|
|
36
36
|
specs:
|
|
37
|
-
checkoff (0.
|
|
37
|
+
checkoff (0.207.0)
|
|
38
38
|
activesupport
|
|
39
39
|
asana (> 0.10.0)
|
|
40
40
|
cache_method
|
|
@@ -221,7 +221,7 @@ GEM
|
|
|
221
221
|
ruby-progressbar (1.13.0)
|
|
222
222
|
ruby2_keywords (0.0.5)
|
|
223
223
|
rugged (1.6.3)
|
|
224
|
-
securerandom (0.
|
|
224
|
+
securerandom (0.4.0)
|
|
225
225
|
simplecov (0.22.0)
|
|
226
226
|
docile (~> 1.1)
|
|
227
227
|
simplecov-html (~> 0.11)
|
data/Makefile
CHANGED
|
@@ -87,8 +87,14 @@ cicoverage: coverage ## check code coverage
|
|
|
87
87
|
|
|
88
88
|
update_from_cookiecutter: ## Bring in changes from template project used to create this repo
|
|
89
89
|
bundle exec overcommit --uninstall
|
|
90
|
+
# cookiecutter_project_upgrader does its work in
|
|
91
|
+
# .git/cookiecutter/checkoff, but RuboCop wants to inherit
|
|
92
|
+
# config from all directories above it - avoid config
|
|
93
|
+
# mismatches by moving this out of the way
|
|
94
|
+
mv .rubocop.yml .rubocop-renamed.yml || true
|
|
90
95
|
cookiecutter_project_upgrader --help >/dev/null
|
|
91
96
|
IN_COOKIECUTTER_PROJECT_UPGRADER=1 cookiecutter_project_upgrader || true
|
|
97
|
+
mv .rubocop-renamed.yml .rubocop.yml
|
|
92
98
|
git checkout cookiecutter-template && git push --no-verify
|
|
93
99
|
git checkout main; overcommit --sign && overcommit --sign pre-commit && git checkout main && git pull && git checkout -b update-from-cookiecutter-$$(date +%Y-%m-%d-%H%M)
|
|
94
100
|
git merge cookiecutter-template || true
|
data/lib/checkoff/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: checkoff
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.207.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vince Broz
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-12-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|