neetob 0.4.7 → 0.4.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/Gemfile.lock +1 -1
- data/bookmarks.md +1 -2
- data/lib/neetob/cli/github/make_pr/script.rb +2 -2
- data/lib/neetob/version.rb +1 -1
- metadata +3 -3
- /data/.neetoci/{neetoci.yml → default.yml} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed41146b9e4ce0dd2ca67b66d77b9e2e1ee759a69bb779ab4e191ea62da0ce8d
|
4
|
+
data.tar.gz: '08820efc4daf2375365d6f107c90a88b91d364bfe6d61b88dfef00be9dd60f48'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 558267a6462668e02a63354ec359615deb2d92f09b9b9b91dd7375621c9f9ad2dae97945d9db78a7be1d4a4c013b25479b9ae5ecb5e2338d620a3f1566674bae
|
7
|
+
data.tar.gz: ee676a6f55d4621c783ff1b8ee9a65b64957b6066b40fba00f256efa3e69fbd97810784163accccc36aec760cf2f06d9074314d8172798dfc6c9f891d48140b6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
### [0.4.8](https://www.github.com/bigbinary/neetob/compare/v0.4.7...v0.4.8) (2023-07-06)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* Fixed make-pr script cmd for local repos ([#272](https://www.github.com/bigbinary/neetob/issues/272)) ([5d6d6a0](https://www.github.com/bigbinary/neetob/commit/5d6d6a03d0b9d0fe680d799ad2b0f15d34902b28))
|
9
|
+
|
3
10
|
### [0.4.7](https://www.github.com/bigbinary/neetob/compare/v0.4.6...v0.4.7) (2023-06-16)
|
4
11
|
|
5
12
|
|
data/Gemfile.lock
CHANGED
data/bookmarks.md
CHANGED
@@ -4,9 +4,8 @@
|
|
4
4
|
|
5
5
|
[Engineer needed](https://github.com/issues?q=is%3Aopen+is%3Aissue+org%3Abigbinary+label%3Aengineer-needed)
|
6
6
|
|
7
|
-
[Issues across repos in bigbinary
|
7
|
+
[Issues across repos in bigbinary excluding client repos](https://github.com/issues?q=is%3Aopen+is%3Aissue+org%3Abigbinary+archived%3Afalse+-repo%3Abigbinary%2Fjacky-winter-web+-repo%3Abigbinary%2Faceinvoice-web+-repo%3Abigbinary%2Ftrtle-rn+-repo%3Abigbinary%2Ftrtle-web+sort%3Acreated-asc+)
|
8
8
|
|
9
|
-
[Issues across repos in bigbinary account where the last update was done from 1st Jan 2023 till 1st May 2023 excluding repos jacky-winter-web, aceinvoice-web, trtle-rn, trtle-web](https://github.com/issues?q=+is%3Aopen+is%3Aissue+org%3Abigbinary+archived%3Afalse+updated%3A2023-01-01..2023-04-01+sort%3Aupdated-asc+-repo%3Abigbinary%2Fjacky-winter-web+-repo%3Abigbinary%2Faceinvoice-web+-repo%3Abigbinary%2Ftrtle-rn+-repo%3Abigbinary%2Ftrtle-web+)
|
10
9
|
|
11
10
|
## Products checlist
|
12
11
|
|
@@ -35,8 +35,8 @@ module Neetob
|
|
35
35
|
ui.info("\n Working on #{repo} \n")
|
36
36
|
begin
|
37
37
|
if local
|
38
|
-
unless Dir.exist?("./#{repo}")
|
39
|
-
ui.error("#{repo} don't exist in current dir")
|
38
|
+
unless Dir.exist?("./#{repo_name_without_org_suffix(repo)}")
|
39
|
+
ui.error("#{repo_name_without_org_suffix(repo)} don't exist in current dir")
|
40
40
|
next
|
41
41
|
end
|
42
42
|
stash_local_changes(repo, local)
|
data/lib/neetob/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: neetob
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Udai Gupta
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -133,7 +133,7 @@ extra_rdoc_files: []
|
|
133
133
|
files:
|
134
134
|
- ".editorconfig"
|
135
135
|
- ".env"
|
136
|
-
- ".neetoci/
|
136
|
+
- ".neetoci/default.yml"
|
137
137
|
- ".rubocop.yml"
|
138
138
|
- ".ruby-version"
|
139
139
|
- ".semaphore/semaphore.yml"
|
File without changes
|