neetob 0.4.10 → 0.4.12

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ce1b302e4f9bdf8f62fca55537f0171a48963a224c961c3638dcf340dd2afd1
4
- data.tar.gz: 1c9bd7a3c53cd44b87b66c819352f014cb0a52b0b73d3e5fdcfb43148d6b9902
3
+ metadata.gz: 65932f642508b382e1af4a59d535391eba40eb7c47ebbd1b97d8d397428e5397
4
+ data.tar.gz: 2d39d1f4f86fd527d0a4cd1f88522eb0b4e855cbc6c6f97d169603b7f5804568
5
5
  SHA512:
6
- metadata.gz: 16a45922adaae6452d113425007fc34369445ee2f3a729865ab68c519bdf1c649049b508a54f3c55e10e9c069cff734e76560b3ca9271548c98e9b6d854b712d
7
- data.tar.gz: 7f68cbd5bece764cd868f513e86e7b2776049de5da362515f30922b302607cffa11015f9c6e6e0730953205eda9f299ecca29d098ca717f2d5b83fe16f0c9711
6
+ metadata.gz: 9c90caa829d5d3b2939130cab85de44d3ae27310c7a024ec3ccca9049558a4a5e8ae9966eebe3d5b1b163b5df172c3ae48359db13575812f5c4586e02a17f5a1
7
+ data.tar.gz: 797594db098b780ae5df4e5631033f454538bbcb8da74f803856189f0fb25d2356811b3151020bd32462b2a4f14c91e1fa70d16aadcb930096836df8774ad86e
@@ -0,0 +1,19 @@
1
+ version: v1.0
2
+ triggers:
3
+ - event: branch
4
+ branch_name: main
5
+ plan: standard-2
6
+ name: neetob
7
+ global_job_config:
8
+ setup:
9
+ - checkout
10
+ - neetoci-version ruby 3.2.2
11
+ - bundle config path 'vendor/bundle'
12
+ - cache restore
13
+ - bundle install --jobs 1
14
+ - cache store
15
+ jobs:
16
+ - name: CiChecks
17
+ commands:
18
+ - bundle exec rubocop
19
+ - bundle exec rake test
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ### [0.4.12](https://www.github.com/bigbinary/neetob/compare/v0.4.11...v0.4.12) (2023-08-23)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * Update README.md ([#292](https://www.github.com/bigbinary/neetob/issues/292)) ([41d3cc9](https://www.github.com/bigbinary/neetob/commit/41d3cc9c708d1efaf229ab6d41ad058b79cbe121))
9
+
10
+ ### [0.4.11](https://www.github.com/bigbinary/neetob/compare/v0.4.10...v0.4.11) (2023-08-23)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * Fixed engines option ([#290](https://www.github.com/bigbinary/neetob/issues/290)) ([49a5dff](https://www.github.com/bigbinary/neetob/commit/49a5dff474a3bff7cf3bac1031239787caa240c8))
16
+
3
17
  ### [0.4.10](https://www.github.com/bigbinary/neetob/compare/v0.4.9...v0.4.10) (2023-08-23)
4
18
 
5
19
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- neetob (0.4.10)
4
+ neetob (0.4.12)
5
5
  brakeman (~> 5.0)
6
6
  chronic
7
7
  dotenv (~> 2.8.1)
@@ -9,7 +9,7 @@ PATH
9
9
  neetodeploy
10
10
  octokit (~> 4.0)
11
11
  terminal-table (~> 3.0.2)
12
- thor (~> 1.2.1)
12
+ thor (~> 1.2.2)
13
13
 
14
14
  GEM
15
15
  remote: https://O6Ts9-SVDaUZpHMRs2CpJp22RwbETDE@gems.neeto.com/
@@ -240,7 +240,7 @@ GEM
240
240
  simplecov_json_formatter (0.1.4)
241
241
  terminal-table (3.0.2)
242
242
  unicode-display_width (>= 1.1.1, < 3)
243
- thor (1.2.1)
243
+ thor (1.2.2)
244
244
  timeout (0.3.1)
245
245
  tzinfo (2.0.5)
246
246
  concurrent-ruby (~> 1.0)
data/README.md CHANGED
@@ -56,7 +56,7 @@ Commands:
56
56
  neetob make-repos-uptodate # Update all neeto repos
57
57
 
58
58
  Options:
59
- [--sandbox] # All the commands in sandbox mode will run only on the "neeto-dummy" app.
59
+ [--sandbox] # All the commands in sandbox mode will run only on the "neeto-dummy" app
60
60
  ```
61
61
 
62
62
  #### Useful command-line options
@@ -49,7 +49,7 @@ module Neetob
49
49
  def all_engine_repos(sandbox_mode)
50
50
  sandbox_mode ?
51
51
  testing_apps(:github) :
52
- NeetoCompliance::NeetoRepos.nanos_backend
52
+ NeetoCompliance::NeetoRepos.nanos_backend.map { |repo| "bigbinary/#{repo}" }
53
53
  end
54
54
 
55
55
  def match_apps(required_apps, available_apps)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Neetob
4
- VERSION = "0.4.10"
4
+ VERSION = "0.4.12"
5
5
  end
data/neetob.gemspec CHANGED
@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
30
30
  spec.require_paths = ["lib"]
31
31
 
32
32
  # Must have deps
33
- spec.add_dependency "thor", "~> 1.2.1" # for cli
33
+ spec.add_dependency "thor", "~> 1.2.2" # for cli
34
34
  spec.add_dependency "octokit", "~> 4.0" # for github client
35
35
  spec.add_dependency "terminal-table", "~> 3.0.2" # for building cli table
36
36
  spec.add_dependency "launchy", "~> 2.5.0" # for opening in browser
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.10
4
+ version: 0.4.12
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-08-23 00:00:00.000000000 Z
11
+ date: 2023-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.2.1
19
+ version: 1.2.2
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 1.2.1
26
+ version: 1.2.2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: octokit
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -133,6 +133,7 @@ extra_rdoc_files: []
133
133
  files:
134
134
  - ".editorconfig"
135
135
  - ".env"
136
+ - ".neetoci/branch.yml"
136
137
  - ".neetoci/default.yml"
137
138
  - ".rubocop.yml"
138
139
  - ".ruby-version"