nextver 0.1.0 → 0.1.1

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: fa333b84952919e31e0f15823a5828df46d8559518279f1357ff9213f431dd32
4
- data.tar.gz: 0752c983002b4fbd7c670fa620b832f2b9b4c0cb9d6ee212d7c105ebabcc3be1
3
+ metadata.gz: c362a06dd22de7a07aa0828ce466ef992056a3d2805f3c55e64ef284f2a35262
4
+ data.tar.gz: 18b753dbf747914d374a9ee031654d00a231f734289067899a9457dbddf543c9
5
5
  SHA512:
6
- metadata.gz: 0bc20baaef047cfaadfcab64296e628d8a887cfe392d478617c219f0781267691fa60cf2d4073d69cbc969586ce5b4d79bdbcd352448cd1884f07db79f69d1cb
7
- data.tar.gz: dfabc6924f7c54152800603416d3bf13e5f50814abb9f18291ab01a554791d688f89add5a367161c7f57c962916bca0c2f2cd43bea299f7473378e962cd4c4a2
6
+ metadata.gz: dacce37fd2e50624ae8cdadc34d86a3f20a3129746c58c4fae30c991f1846c789295384df591797664440d52bf817d6a1ddd1ad1f3a8043e6520d59dc5fcd6b5
7
+ data.tar.gz: 3ce8545521596259f898c595c3d416df5be8c8b61d68fc34a9754cfbbaf9bebfe3450f703110d4731415acbb78511b32d7c60af79d1dc714e5b9372c51713303
data/README.md CHANGED
@@ -11,10 +11,18 @@ gem "nextver", require: false, group: :development
11
11
 
12
12
  or `gem install nextver`.
13
13
 
14
+ To get `bin/nextver` created on every `bundle install`, set this once in your app and commit `.bundle/config`:
15
+
16
+ ```
17
+ bundle config set --local bin bin
18
+ ```
19
+
20
+ Or run `bundle binstubs nextver` once and commit `bin/nextver`.
21
+
14
22
  ## Usage
15
23
 
16
24
  ```
17
- bundle exec nextver [options...] [dir]
25
+ bin/nextver [options...] [dir]
18
26
 
19
27
  -d Debug mode, print considering steps.
20
28
  -e Suppress trailing new line. Print only version out.
@@ -33,7 +41,7 @@ Nextver::Repo.new(".").next_version # => "v1.1.0"
33
41
  ## Test
34
42
 
35
43
  ```
36
- ruby -Ilib test/nextver_test.rb
44
+ rake test
37
45
  ```
38
46
 
39
47
  ## License
@@ -1,3 +1,3 @@
1
1
  module Nextver
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,16 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nextver
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
  - Chonlasith Jucksriporn
8
- autorequire:
9
- bindir: exe
8
+ bindir: bin
10
9
  cert_chain: []
11
- date: 2026-09-24 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
- description:
14
12
  email:
15
13
  - chonlasith@gmail.com
16
14
  executables:
@@ -20,14 +18,13 @@ extra_rdoc_files: []
20
18
  files:
21
19
  - LICENSE.txt
22
20
  - README.md
23
- - exe/nextver
21
+ - bin/nextver
24
22
  - lib/nextver.rb
25
23
  - lib/nextver/version.rb
26
24
  homepage: https://github.com/chonla/nextver-gem
27
25
  licenses:
28
26
  - MIT
29
27
  metadata: {}
30
- post_install_message:
31
28
  rdoc_options: []
32
29
  require_paths:
33
30
  - lib
@@ -42,8 +39,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
42
39
  - !ruby/object:Gem::Version
43
40
  version: '0'
44
41
  requirements: []
45
- rubygems_version: 3.0.3.1
46
- signing_key:
42
+ rubygems_version: 4.0.16
47
43
  specification_version: 4
48
44
  summary: Evaluate next SemVer version from conventional commit messages.
49
45
  test_files: []
File without changes