vector_number 0.2.4 → 0.2.5
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/CHANGELOG.md +5 -0
- data/README.md +8 -5
- data/lib/vector_number/version.rb +1 -1
- metadata +2 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b8fc99d66449b0cbc1ac4f2871e540ff921dee5d291b487221193edaefca1b2f
|
4
|
+
data.tar.gz: 38f15f406bff5348debb50b5468bf416e2fd3bca4be69257e3b59b99fbebd6ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 23f819566a189655bcefaa7d22005e7de4e7349ad99718497e13faf97a748d6c9c63788146379473d28caed9bc7063a13787074f0c87241a1a36859a30a126a7
|
7
|
+
data.tar.gz: 33c4ce966c7ce9d3d1a486acd6119af50d9458c8048e2a6f07348625bb50bcb11d1db50c8dbee75ba81be996afe53bcb25af2b356ab9be0e1a6689a67d3a14dd
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
8
|
## [Next]
|
9
|
+
## [v0.2.5] — 2025-02-26
|
10
|
+
|
11
|
+
Technical update after release to rubygems.org.
|
12
|
+
README was updated to reflect this change.
|
13
|
+
|
9
14
|
## [v0.2.4] — 2025-02-26
|
10
15
|
|
11
16
|
**Added**
|
data/README.md
CHANGED
@@ -16,12 +16,15 @@ Similar projects:
|
|
16
16
|
|
17
17
|
## Installation
|
18
18
|
|
19
|
-
|
20
|
-
```
|
21
|
-
gem
|
19
|
+
Install with `gem`:
|
20
|
+
```sh
|
21
|
+
gem install vector_number
|
22
22
|
```
|
23
23
|
|
24
|
-
|
24
|
+
If using `bundler`, add gem to your Gemfile:
|
25
|
+
```ruby
|
26
|
+
gem "vector_number"
|
27
|
+
```
|
25
28
|
|
26
29
|
## Usage
|
27
30
|
|
@@ -63,7 +66,7 @@ VectorNumber is developed on MRI (CRuby) but should work on other engines too.
|
|
63
66
|
|
64
67
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests, `rake rubocop` to check code, `rake steep` to check typing or just `rake` to do everything. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
65
68
|
|
66
|
-
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`, change Next version in `CHANGELOG.md`, commit changes and tag the commit. Alternatively, an appropriate `rake bump
|
69
|
+
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`, change Next version in `CHANGELOG.md`, commit changes and tag the commit. Alternatively, an appropriate `rake bump:{major|minor|patch}` command can be used.
|
67
70
|
|
68
71
|
## Contributing
|
69
72
|
|
metadata
CHANGED
@@ -1,17 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vector_number
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexandr Bulancov
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
10
|
date: 2025-02-25 00:00:00.000000000 Z
|
12
11
|
dependencies: []
|
13
|
-
description:
|
14
|
-
email:
|
15
12
|
executables: []
|
16
13
|
extensions: []
|
17
14
|
extra_rdoc_files:
|
@@ -40,7 +37,6 @@ metadata:
|
|
40
37
|
source_code_uri: https://github.com/trinistr/vector_number
|
41
38
|
changelog_uri: https://github.com/trinistr/vector_number/CHANGELOG.md
|
42
39
|
rubygems_mfa_required: 'true'
|
43
|
-
post_install_message:
|
44
40
|
rdoc_options:
|
45
41
|
- "--main"
|
46
42
|
- README.md
|
@@ -57,8 +53,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
57
53
|
- !ruby/object:Gem::Version
|
58
54
|
version: '0'
|
59
55
|
requirements: []
|
60
|
-
rubygems_version: 3.5
|
61
|
-
signing_key:
|
56
|
+
rubygems_version: 3.6.5
|
62
57
|
specification_version: 4
|
63
58
|
summary: A library to add together anything.
|
64
59
|
test_files: []
|