noko_cli 0.2.3 → 0.2.4

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: 49308c9786a0e4593013930d85b2d575253c07ec5c506de3a2d0c6bbac0af4dc
4
- data.tar.gz: 05ec17693f2235caf0361ba23e785e85859d0938f5e9f770f5ab7976dbaa9dfd
3
+ metadata.gz: 5189ecfe192f4e90324ed498dd4fc693a4c74c4ae2c18af645a3e26f14a4c465
4
+ data.tar.gz: e2f6a29f3902d17da69b8dcfb97785aed0b5bec687a751e283f83642f05a5957
5
5
  SHA512:
6
- metadata.gz: 5401ac27b60e5acec87091df0eef72bbca1fed4fdeaf79ec44087f7f201c72a1d6991f494290d1bc1fda43ce7357c82fff3bdb1b0c3da04cea554facf2159ffe
7
- data.tar.gz: e164d666d8230edfbe8fb6e9dda881ce345a50f8b1d57d4cfe6ca6d8d784bdf5d2567cc0035d767f12bedf80cf43045938ae103607888294737e5b6c530daee8
6
+ metadata.gz: b0b356d387c3259fc05bf1acae5d8b8a93f2a27e468e21266d729fd213be9777ec6d8fb6f960d4403b30fda61cd21a52f4e75efa6b85922e292915b96fd8b6cf
7
+ data.tar.gz: bef58c78cff9373755fcee97d7fda35f399173751f6add21b6cb2211ec1f851d0f269f239fc3e6bd68001c11cd8c193f6a191a511c144e39bbe9447c8b831bf4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.4](https://github.com/JuanVqz/noko_cli/compare/v0.2.3...v0.2.4) (2024-09-01)
4
+
5
+
6
+ ### Miscellaneous
7
+
8
+ * **deps:** Bump rubocop from 1.43.0 to 1.50.2 ([#79](https://github.com/JuanVqz/noko_cli/issues/79)) ([3691aa5](https://github.com/JuanVqz/noko_cli/commit/3691aa5707ba5ce970cdd7226e27c3e3362ec247))
9
+ * **deps:** Bump rubocop-performance from 1.15.2 to 1.17.1 ([#84](https://github.com/JuanVqz/noko_cli/issues/84)) ([f4c5e12](https://github.com/JuanVqz/noko_cli/commit/f4c5e12f0ff24d73756158e3bdee604255869996))
10
+ * **deps:** Bump rubocop-rspec from 2.18.1 to 2.20.0 ([#82](https://github.com/JuanVqz/noko_cli/issues/82)) ([896d49c](https://github.com/JuanVqz/noko_cli/commit/896d49c9b363126056e636a52db501664cbbfe02))
11
+ * **deps:** Bump zeitwerk from 2.6.6 to 2.6.17 ([#81](https://github.com/JuanVqz/noko_cli/issues/81)) ([2a25581](https://github.com/JuanVqz/noko_cli/commit/2a25581cec90dc752a978eacd1f5eab8f51d2cc2))
12
+ * **deps:** Update faraday requirement from &gt;= 2.3, &lt; 2.8 to >= 2.3, < 2.12 ([#83](https://github.com/JuanVqz/noko_cli/issues/83)) ([fb5f616](https://github.com/JuanVqz/noko_cli/commit/fb5f616d31ca18973cf57655e3e58df8e53b50e6))
13
+ * **readme:** Add disclaimer section ([#64](https://github.com/JuanVqz/noko_cli/issues/64)) ([90339cc](https://github.com/JuanVqz/noko_cli/commit/90339cc5814eaf7f078fb298e866b666269348e6))
14
+
3
15
  ## [0.2.3](https://github.com/JuanVqz/noko_cli/compare/v0.2.1...v0.2.3) (2023-01-21)
4
16
 
5
17
 
data/Gemfile CHANGED
@@ -7,7 +7,7 @@ gemspec
7
7
 
8
8
  gem "rake", "~> 13.0"
9
9
  gem "rspec", "~> 3.12"
10
- gem "rubocop", "~> 1.43.0", require: false
11
- gem "rubocop-performance", "~> 1.15.2", require: false
10
+ gem "rubocop", "~> 1.50.2", require: false
11
+ gem "rubocop-performance", "~> 1.17.1", require: false
12
12
  gem "rubocop-rake", "~> 0.6.0", require: false
13
- gem "rubocop-rspec", "~> 2.18.1", require: false
13
+ gem "rubocop-rspec", "~> 2.20.0", require: false
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- noko_cli (0.2.3)
5
- faraday (>= 2.3, < 2.8)
4
+ noko_cli (0.2.4)
5
+ faraday (>= 2.3, < 2.12)
6
6
  tty-table (~> 0.12.0)
7
7
  zeitwerk (~> 2.6)
8
8
 
@@ -10,26 +10,31 @@ GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
12
  ast (2.4.2)
13
+ base64 (0.2.0)
13
14
  coderay (1.1.3)
14
15
  diff-lcs (1.5.0)
15
- faraday (2.7.3)
16
+ faraday (2.8.1)
17
+ base64
16
18
  faraday-net_http (>= 2.0, < 3.1)
17
19
  ruby2_keywords (>= 0.0.4)
18
20
  faraday-net_http (3.0.2)
19
- json (2.6.3)
21
+ json (2.7.2)
20
22
  method_source (1.0.0)
21
- parallel (1.22.1)
22
- parser (3.2.0.0)
23
+ parallel (1.24.0)
24
+ parser (3.3.4.2)
23
25
  ast (~> 2.4.1)
26
+ racc
24
27
  pastel (0.8.0)
25
28
  tty-color (~> 0.5)
26
29
  pry (0.14.2)
27
30
  coderay (~> 1.1)
28
31
  method_source (~> 1.0)
32
+ racc (1.8.1)
29
33
  rainbow (3.1.1)
30
34
  rake (13.0.6)
31
- regexp_parser (2.6.2)
32
- rexml (3.2.5)
35
+ regexp_parser (2.9.2)
36
+ rexml (3.3.6)
37
+ strscan
33
38
  rspec (3.12.0)
34
39
  rspec-core (~> 3.12.0)
35
40
  rspec-expectations (~> 3.12.0)
@@ -43,44 +48,45 @@ GEM
43
48
  diff-lcs (>= 1.2.0, < 2.0)
44
49
  rspec-support (~> 3.12.0)
45
50
  rspec-support (3.12.0)
46
- rubocop (1.43.0)
51
+ rubocop (1.50.2)
47
52
  json (~> 2.3)
48
53
  parallel (~> 1.10)
49
54
  parser (>= 3.2.0.0)
50
55
  rainbow (>= 2.2.2, < 4.0)
51
56
  regexp_parser (>= 1.8, < 3.0)
52
57
  rexml (>= 3.2.5, < 4.0)
53
- rubocop-ast (>= 1.24.1, < 2.0)
58
+ rubocop-ast (>= 1.28.0, < 2.0)
54
59
  ruby-progressbar (~> 1.7)
55
60
  unicode-display_width (>= 2.4.0, < 3.0)
56
- rubocop-ast (1.24.1)
57
- parser (>= 3.1.1.0)
58
- rubocop-capybara (2.17.0)
61
+ rubocop-ast (1.30.0)
62
+ parser (>= 3.2.1.0)
63
+ rubocop-capybara (2.18.0)
59
64
  rubocop (~> 1.41)
60
- rubocop-performance (1.15.2)
65
+ rubocop-performance (1.17.1)
61
66
  rubocop (>= 1.7.0, < 2.0)
62
67
  rubocop-ast (>= 0.4.0)
63
68
  rubocop-rake (0.6.0)
64
69
  rubocop (~> 1.0)
65
- rubocop-rspec (2.18.1)
70
+ rubocop-rspec (2.20.0)
66
71
  rubocop (~> 1.33)
67
72
  rubocop-capybara (~> 2.17)
68
- ruby-progressbar (1.11.0)
73
+ ruby-progressbar (1.13.0)
69
74
  ruby2_keywords (0.0.5)
70
75
  strings (0.2.1)
71
76
  strings-ansi (~> 0.2)
72
77
  unicode-display_width (>= 1.5, < 3.0)
73
78
  unicode_utils (~> 1.4)
74
79
  strings-ansi (0.2.0)
80
+ strscan (3.1.0)
75
81
  tty-color (0.6.0)
76
82
  tty-screen (0.8.1)
77
83
  tty-table (0.12.0)
78
84
  pastel (~> 0.8)
79
85
  strings (~> 0.2.0)
80
86
  tty-screen (~> 0.8)
81
- unicode-display_width (2.4.2)
87
+ unicode-display_width (2.5.0)
82
88
  unicode_utils (1.4.0)
83
- zeitwerk (2.6.6)
89
+ zeitwerk (2.6.17)
84
90
 
85
91
  PLATFORMS
86
92
  ruby
@@ -91,10 +97,10 @@ DEPENDENCIES
91
97
  pry (~> 0.14.1)
92
98
  rake (~> 13.0)
93
99
  rspec (~> 3.12)
94
- rubocop (~> 1.43.0)
95
- rubocop-performance (~> 1.15.2)
100
+ rubocop (~> 1.50.2)
101
+ rubocop-performance (~> 1.17.1)
96
102
  rubocop-rake (~> 0.6.0)
97
- rubocop-rspec (~> 2.18.1)
103
+ rubocop-rspec (~> 2.20.0)
98
104
 
99
105
  BUNDLED WITH
100
106
  2.3.26
data/README.md CHANGED
@@ -2,15 +2,28 @@
2
2
 
3
3
  ![build status](https://github.com/juanvqz/noko_cli/actions/workflows/main.yml/badge.svg)
4
4
 
5
+ ## Disclaimer
6
+
7
+ - This gem was made for learning purposes.
8
+ - This gem is WIP. Use it by your own risk, it should be safe though.
9
+
10
+ ## What NokoCli does?
11
+
12
+ NokoCli is an easy way to manage your data in [Noko Time Tracking](https://nokotime.com/) via terminal.
13
+ - Add entries
14
+ - List entries
5
15
 
6
16
  ## Development
7
17
 
8
- To setup this repository you need to run `./bin/setup`
18
+ To set up this repository you need to run
9
19
 
20
+ ```bash
21
+ ./bin/setup
22
+ ```
10
23
 
11
24
  ## Contributing
12
25
 
13
- Bug reports and pull requests are welcome on GitHub at https://github.com/juanvqz/noko_cli.
26
+ Bug reports and pull requests are welcome on GitHub at [noko_cli](https://github.com/juanvqz/noko_cli).
14
27
  This project is intended to be a safe, welcoming space for collaboration,
15
28
  and contributors are expected to adhere to the [code of conduct](https://github.com/juanvqz/noko_cli/blob/master/CODE_OF_CONDUCT.md).
16
29
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NokoCli
4
- VERSION = "0.2.3"
4
+ VERSION = "0.2.4"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: noko_cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Vasquez
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-21 00:00:00.000000000 Z
11
+ date: 2024-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '2.3'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '2.8'
22
+ version: '2.12'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '2.3'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '2.8'
32
+ version: '2.12'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: tty-table
35
35
  requirement: !ruby/object:Gem::Requirement