mm-simple_version 0.2.5 → 0.3.0
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/.pre-commit-config.yaml +10 -0
- data/.ruby-version +1 -1
- data/CHANGELOG.md +7 -0
- data/Gemfile +6 -3
- data/Gemfile.lock +38 -36
- data/README.md +1 -1
- data/lib/mm/simple_version/version.rb +1 -1
- metadata +5 -32
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 356f7d4e0e0966cfb17c2ec66d7370b46f37550ac8aa333356af4fa72c2992db
|
4
|
+
data.tar.gz: 68a226ce45b8af98b90e773d7ac35adc6186a3d344e7c27f914ea4b0ebe7570d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8e0464fae56b2e1db07ce0ce24017a2751feef119e63dcb6721b91063f9149bd4b539d8d5f5f6d154dab2116d4d00622e42d24d820f7facc01e562ec268eec0
|
7
|
+
data.tar.gz: ffa1516cf96142829d43099d2a221812348e724fc51fb4ca63dceb00a1631ba9158e2b40898e9ceee8408f84f1c4bdb814ba77f22eae59852ea20fde1d4a9811
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# See https://pre-commit.com for more information
|
2
|
+
# See https://pre-commit.com/hooks.html for more hooks
|
3
|
+
repos:
|
4
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
5
|
+
rev: v3.2.0
|
6
|
+
hooks:
|
7
|
+
- id: trailing-whitespace
|
8
|
+
- id: end-of-file-fixer
|
9
|
+
- id: check-yaml
|
10
|
+
- id: check-added-large-files
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.2.
|
1
|
+
3.2.2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [0.3.0](https://github.com/invalidusrname/mm-simple_version/compare/v0.2.5...v0.3.0) (2024-11-03)
|
4
|
+
|
5
|
+
|
6
|
+
### Features
|
7
|
+
|
8
|
+
* add auto-approve for dependabot patch updates ([149193b](https://github.com/invalidusrname/mm-simple_version/commit/149193beffbcc34960e697358ac9feb745fe479e))
|
9
|
+
|
3
10
|
## [0.2.5](https://github.com/invalidusrname/mm-simple_version/compare/v0.2.4...v0.2.5) (2022-12-26)
|
4
11
|
|
5
12
|
|
data/Gemfile
CHANGED
@@ -5,8 +5,11 @@ source "https://rubygems.org"
|
|
5
5
|
# Specify your gem's dependencies in mm-simple_version.gemspec
|
6
6
|
gemspec
|
7
7
|
|
8
|
-
gem "rake", "~> 13.
|
8
|
+
gem "rake", "~> 13.2"
|
9
9
|
|
10
|
-
gem "rspec", "~> 3.
|
10
|
+
gem "rspec", "~> 3.13"
|
11
11
|
|
12
|
-
gem "rubocop", "~> 1.
|
12
|
+
gem "rubocop", "~> 1.66"
|
13
|
+
|
14
|
+
gem "rubocop-rake", "~> 0.6.0"
|
15
|
+
gem "rubocop-rspec", "~> 3.0.5"
|
data/Gemfile.lock
CHANGED
@@ -1,63 +1,65 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
mm-simple_version (0.
|
4
|
+
mm-simple_version (0.3.0)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
9
|
ast (2.4.2)
|
10
|
-
diff-lcs (1.5.
|
11
|
-
json (2.
|
12
|
-
|
13
|
-
|
10
|
+
diff-lcs (1.5.1)
|
11
|
+
json (2.7.5)
|
12
|
+
language_server-protocol (3.17.0.3)
|
13
|
+
parallel (1.26.3)
|
14
|
+
parser (3.3.5.1)
|
14
15
|
ast (~> 2.4.1)
|
16
|
+
racc
|
17
|
+
racc (1.8.1)
|
15
18
|
rainbow (3.1.1)
|
16
|
-
rake (13.
|
17
|
-
regexp_parser (2.
|
18
|
-
|
19
|
-
|
20
|
-
rspec-
|
21
|
-
rspec-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
rspec-expectations (3.12.1)
|
19
|
+
rake (13.2.1)
|
20
|
+
regexp_parser (2.9.2)
|
21
|
+
rspec (3.13.0)
|
22
|
+
rspec-core (~> 3.13.0)
|
23
|
+
rspec-expectations (~> 3.13.0)
|
24
|
+
rspec-mocks (~> 3.13.0)
|
25
|
+
rspec-core (3.13.2)
|
26
|
+
rspec-support (~> 3.13.0)
|
27
|
+
rspec-expectations (3.13.3)
|
26
28
|
diff-lcs (>= 1.2.0, < 2.0)
|
27
|
-
rspec-support (~> 3.
|
28
|
-
rspec-mocks (3.
|
29
|
+
rspec-support (~> 3.13.0)
|
30
|
+
rspec-mocks (3.13.2)
|
29
31
|
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
-
rspec-support (~> 3.
|
31
|
-
rspec-support (3.
|
32
|
-
rubocop (1.
|
32
|
+
rspec-support (~> 3.13.0)
|
33
|
+
rspec-support (3.13.1)
|
34
|
+
rubocop (1.68.0)
|
33
35
|
json (~> 2.3)
|
36
|
+
language_server-protocol (>= 3.17.0)
|
34
37
|
parallel (~> 1.10)
|
35
|
-
parser (>= 3.
|
38
|
+
parser (>= 3.3.0.2)
|
36
39
|
rainbow (>= 2.2.2, < 4.0)
|
37
|
-
regexp_parser (>=
|
38
|
-
|
39
|
-
rubocop-ast (>= 1.23.0, < 2.0)
|
40
|
+
regexp_parser (>= 2.4, < 3.0)
|
41
|
+
rubocop-ast (>= 1.32.2, < 2.0)
|
40
42
|
ruby-progressbar (~> 1.7)
|
41
|
-
unicode-display_width (>=
|
42
|
-
rubocop-ast (1.
|
43
|
-
parser (>= 3.
|
43
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
44
|
+
rubocop-ast (1.33.1)
|
45
|
+
parser (>= 3.3.1.0)
|
44
46
|
rubocop-rake (0.6.0)
|
45
47
|
rubocop (~> 1.0)
|
46
|
-
rubocop-rspec (
|
47
|
-
rubocop (~> 1.
|
48
|
-
ruby-progressbar (1.
|
49
|
-
unicode-display_width (2.
|
48
|
+
rubocop-rspec (3.0.5)
|
49
|
+
rubocop (~> 1.61)
|
50
|
+
ruby-progressbar (1.13.0)
|
51
|
+
unicode-display_width (2.6.0)
|
50
52
|
|
51
53
|
PLATFORMS
|
52
54
|
x86_64-linux
|
53
55
|
|
54
56
|
DEPENDENCIES
|
55
57
|
mm-simple_version!
|
56
|
-
rake (~> 13.
|
57
|
-
rspec (~> 3.
|
58
|
-
rubocop (~> 1.
|
58
|
+
rake (~> 13.2)
|
59
|
+
rspec (~> 3.13)
|
60
|
+
rubocop (~> 1.66)
|
59
61
|
rubocop-rake (~> 0.6.0)
|
60
|
-
rubocop-rspec (~>
|
62
|
+
rubocop-rspec (~> 3.0.5)
|
61
63
|
|
62
64
|
BUNDLED WITH
|
63
|
-
2.4.
|
65
|
+
2.4.10
|
data/README.md
CHANGED
@@ -24,7 +24,7 @@ Releases are handled with Github Actions and using [Release Please](https://gith
|
|
24
24
|
|
25
25
|
## Contributing
|
26
26
|
|
27
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/invalidusrname/mm-simple_version. 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/invalidusrname/mm-simple_version/blob/master/CODE_OF_CONDUCT.md).
|
27
|
+
Bug reports and pull requests are welcome on GitHub at [mm-simpleversion](https://github.com/invalidusrname/mm-simple_version). 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/invalidusrname/mm-simple_version/blob/master/CODE_OF_CONDUCT.md).
|
28
28
|
|
29
29
|
## License
|
30
30
|
|
metadata
CHANGED
@@ -1,43 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mm-simple_version
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt McMahand
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
12
|
-
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: rubocop-rake
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 0.6.0
|
20
|
-
type: :development
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - "~>"
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: 0.6.0
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: rubocop-rspec
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - "~>"
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: 2.16.0
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - "~>"
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: 2.16.0
|
11
|
+
date: 2024-11-03 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
41
13
|
description: A gem to try out github actions and gem publishing
|
42
14
|
email:
|
43
15
|
- mmcmahand@gmail.com
|
@@ -46,6 +18,7 @@ executables:
|
|
46
18
|
extensions: []
|
47
19
|
extra_rdoc_files: []
|
48
20
|
files:
|
21
|
+
- ".pre-commit-config.yaml"
|
49
22
|
- ".rspec"
|
50
23
|
- ".rubocop.yml"
|
51
24
|
- ".ruby-version"
|
@@ -83,7 +56,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
56
|
- !ruby/object:Gem::Version
|
84
57
|
version: '0'
|
85
58
|
requirements: []
|
86
|
-
rubygems_version: 3.4.
|
59
|
+
rubygems_version: 3.4.10
|
87
60
|
signing_key:
|
88
61
|
specification_version: 4
|
89
62
|
summary: A playground gem. no real features here
|