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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d8a4ba56677fa1eab6fc6dba7e8a7cc9d4afd769d9d0a4186ee51b2f400f2bab
4
- data.tar.gz: 57f4d03d9495c2f6e98afb25008f659f63cf5cf0723664f1a3e7633568a8a179
3
+ metadata.gz: b8fc99d66449b0cbc1ac4f2871e540ff921dee5d291b487221193edaefca1b2f
4
+ data.tar.gz: 38f15f406bff5348debb50b5468bf416e2fd3bca4be69257e3b59b99fbebd6ed
5
5
  SHA512:
6
- metadata.gz: 020ae7c79a25d4d18b6c2798d1c903e5f3a9699f8a2822ad7617ef3ada0ed4e2ef158a324548dfdc68de1a2bd70789487929d8d68def9b47133e077a4654d277
7
- data.tar.gz: d34fb46be17a6cec0916257afcaccb842cdd24b7aa055377c1dbd343e6ffd90295df2a9725bf549709f6997276f88e1c1766f079c4848dc002b645180678e912
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
- Add gem to your Gemfile:
20
- ```ruby
21
- gem "vector_number", git: "https://github.com/trinistr/vector_number.git"
19
+ Install with `gem`:
20
+ ```sh
21
+ gem install vector_number
22
22
  ```
23
23
 
24
- Installation through `gem` is not currently supported.
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:` command can be used.
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
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  class VectorNumber # rubocop:disable Style/StaticClass
4
4
  # @return [String]
5
- VERSION = "0.2.4"
5
+ VERSION = "0.2.5"
6
6
  end
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
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.21
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: []