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 +4 -4
- data/README.md +10 -2
- data/lib/nextver/version.rb +1 -1
- metadata +5 -9
- /data/{exe → bin}/nextver +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c362a06dd22de7a07aa0828ce466ef992056a3d2805f3c55e64ef284f2a35262
|
|
4
|
+
data.tar.gz: 18b753dbf747914d374a9ee031654d00a231f734289067899a9457dbddf543c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
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
|
-
|
|
44
|
+
rake test
|
|
37
45
|
```
|
|
38
46
|
|
|
39
47
|
## License
|
data/lib/nextver/version.rb
CHANGED
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.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chonlasith Jucksriporn
|
|
8
|
-
|
|
9
|
-
bindir: exe
|
|
8
|
+
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
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
|
-
-
|
|
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:
|
|
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: []
|
/data/{exe → bin}/nextver
RENAMED
|
File without changes
|