noko_cli 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: abe5e53bc2eb433366dc06a9c8dfff7536dec60d03b695f73cb6e00af6c0d717
4
- data.tar.gz: caabe1b9b771830f1b3d79c6166caafdcdfc89ae6878c8168741042e635bcf93
3
+ metadata.gz: 7d030484bc0fae6a61489ba1cd32fe07584aea6766434ef90b79415a1bbd4a82
4
+ data.tar.gz: da1184f80e3e9247c890d087647879068d70f7593c61aec232e0c8be41a0261e
5
5
  SHA512:
6
- metadata.gz: 63478e76b192460dc5e6bacadd75056b6d777ba165997072686f0d7341a320421b1d6f88f56299e55bbd5182252347675ef57f41b0df55c0823f6cdc448e7e27
7
- data.tar.gz: 66b1b46a4103369bc6d477d61ab83e48149c08b17464257c99ed5149dc7a4c034bb6938af3ce9ccc5857e558337f4fe5ce9b35fe3e64b412a11c511042d07496
6
+ metadata.gz: ad9f4582efc7e3d2da78694c6e4e7e49dfc4c8bb04b0bccb664bace3862aedaefabd1d8f0cfce42efc7e297758bae9b93b82d1702a1abd8cc244b8fc6335b1b4
7
+ data.tar.gz: 520bb72638d54c6286da67fe812e14968922077bc502b7cb0ada07b2601652b40092582c5e3a6975dac51283db0ba097c9d0741886367d8a75cad75c2a1d6102
data/.overcommit.yml ADDED
@@ -0,0 +1,34 @@
1
+ # Use this file to configure the Overcommit hooks you wish to use. This will
2
+ # extend the default configuration defined in:
3
+ # https://github.com/sds/overcommit/blob/master/config/default.yml
4
+ #
5
+ # At the topmost level of this YAML file is a key representing type of hook
6
+ # being run (e.g. pre-commit, commit-msg, etc.). Within each type you can
7
+ # customize each hook, such as whether to only run it on certain files (via
8
+ # `include`), whether to only display output if it fails (via `quiet`), etc.
9
+ #
10
+ # For a complete list of hooks, see:
11
+ # https://github.com/sds/overcommit/tree/master/lib/overcommit/hook
12
+ #
13
+ # For a complete list of options that you can use to customize hooks, see:
14
+ # https://github.com/sds/overcommit#configuration
15
+ #
16
+ # Uncomment the following lines to make the configuration take effect.
17
+
18
+ #PostCheckout:
19
+ # ALL: # Special hook name that customizes all hooks of this type
20
+ # quiet: true # Change all post-checkout hooks to only display output on failure
21
+ #
22
+ # IndexTags:
23
+ # enabled: true # Generate a tags file with `ctags` each time HEAD changes
24
+
25
+ PreCommit:
26
+ TrailingWhitespace:
27
+ enabled: true
28
+ RuboCop:
29
+ enabled: true
30
+ command: ["rake", "standard"]
31
+
32
+ PrePush:
33
+ RSpec:
34
+ enabled: true
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.0.2
1
+ 2.6.6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
- ## [Unreleased]
1
+ # Changelog
2
2
 
3
- ## [0.1.0] - 2022-06-11
3
+ ## 0.1.1 (2022-07-03)
4
4
 
5
- - Initial release
5
+
6
+ ### Miscellaneous
7
+
8
+ * Add release-please config ([6d26c03](https://github.com/JuanVqz/noko_cli/commit/6d26c0368e3529b850f350e0ea42ac1e5beca4d9))
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- noko_cli (0.1.0)
4
+ noko_cli (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -46,10 +46,10 @@ GEM
46
46
  standard (1.12.1)
47
47
  rubocop (= 1.29.1)
48
48
  rubocop-performance (= 1.13.3)
49
- unicode-display_width (2.1.0)
49
+ unicode-display_width (2.2.0)
50
50
 
51
51
  PLATFORMS
52
- x86_64-linux
52
+ ruby
53
53
 
54
54
  DEPENDENCIES
55
55
  noko_cli!
@@ -58,4 +58,4 @@ DEPENDENCIES
58
58
  standard (~> 1.3)
59
59
 
60
60
  BUNDLED WITH
61
- 2.3.15
61
+ 2.1.4
data/README.md CHANGED
@@ -1,34 +1,18 @@
1
1
  # NokoCli
2
2
 
3
- ![Test Suite](https://github.com/juanvqz/noko_cli/actions/workflows/main/badge.svg)
3
+ [![Build Status](https://github.com/juanvqz/noko_cli/workflows/main/badge.svg?branch=main)](https://github.com/juanvqz/noko_cli/actions)
4
4
 
5
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/noko_cli`. To experiment with that code, run `bin/console` for an interactive prompt.
6
-
7
- TODO: Delete this and the text above, and describe your gem
8
-
9
- ## Installation
10
-
11
- Install the gem and add to the application's Gemfile by executing:
12
-
13
- $ bundle add noko_cli
14
-
15
- If bundler is not being used to manage dependencies, install the gem by executing:
16
-
17
- $ gem install noko_cli
18
-
19
- ## Usage
20
-
21
- TODO: Write usage instructions here
22
5
 
23
6
  ## Development
24
7
 
25
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
8
+ To setup this repository you need to run `./bin/setup`
26
9
 
27
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
28
10
 
29
11
  ## Contributing
30
12
 
31
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/noko_cli. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/noko_cli/blob/master/CODE_OF_CONDUCT.md).
13
+ Bug reports and pull requests are welcome on GitHub at https://github.com/juanvqz/noko_cli.
14
+ This project is intended to be a safe, welcoming space for collaboration,
15
+ and contributors are expected to adhere to the [code of conduct](https://github.com/juanvqz/noko_cli/blob/master/CODE_OF_CONDUCT.md).
32
16
 
33
17
  ## License
34
18
 
@@ -36,4 +20,6 @@ The gem is available as open source under the terms of the [MIT License](https:/
36
20
 
37
21
  ## Code of Conduct
38
22
 
39
- Everyone interacting in the NokoCli project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/noko_cli/blob/master/CODE_OF_CONDUCT.md).
23
+ Everyone interacting in the NokoCli project's codebases, issue trackers,
24
+ chat rooms and mailing lists is expected to follow the
25
+ [code of conduct](https://github.com/juanvqz/noko_cli/blob/master/CODE_OF_CONDUCT.md).
data/exe/noko_cli ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "noko_cli"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NokoCli
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
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.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Vasquez
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-06-27 00:00:00.000000000 Z
11
+ date: 2022-07-03 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: 'Noko CLI is the easiest way to add, remove, and view all your entries
14
14
  from your terminal.
@@ -16,10 +16,12 @@ description: 'Noko CLI is the easiest way to add, remove, and view all your entr
16
16
  '
17
17
  email:
18
18
  - me@juanvasquez.dev
19
- executables: []
19
+ executables:
20
+ - noko_cli
20
21
  extensions: []
21
22
  extra_rdoc_files: []
22
23
  files:
24
+ - ".overcommit.yml"
23
25
  - ".rspec"
24
26
  - ".ruby-version"
25
27
  - ".standard.yml"
@@ -30,6 +32,7 @@ files:
30
32
  - LICENSE.txt
31
33
  - README.md
32
34
  - Rakefile
35
+ - exe/noko_cli
33
36
  - lib/noko_cli.rb
34
37
  - lib/noko_cli/version.rb
35
38
  - sig/noko_cli.rbs
@@ -53,7 +56,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
53
56
  - !ruby/object:Gem::Version
54
57
  version: '0'
55
58
  requirements: []
56
- rubygems_version: 3.2.22
59
+ rubygems_version: 3.0.3
57
60
  signing_key:
58
61
  specification_version: 4
59
62
  summary: Register Noko entries from the comfort of your terminal