ivar 0.4.6 → 0.4.7

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +2 -0
  3. data/lib/ivar/version.rb +1 -1
  4. metadata +4 -14
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3116543b0e32b5de687f2d5cdc4503add2a87334a03ffc20445ad3aaeeff65f1
4
- data.tar.gz: 5944d6a180892a4bc6ce19903ec8185a847e2b464aa1fa23b7eda03c7e6d9baa
3
+ metadata.gz: 126ad66ef41d7f999705ba40e7f89577f4fa1f5c1f0912f03b5ac48a188de2e7
4
+ data.tar.gz: fabf7625f5394e23c86a3bf9a4d3bd6696365eacb15b1d6de0588044ba8915e0
5
5
  SHA512:
6
- metadata.gz: f90e50b2767f6f5932ff36c19beb464392beb82789eef3db02ddc52d057746892a6e1a52ebb2a72692e61958082715deaa490ea636fc4e1cd8d06284e25e2bbc
7
- data.tar.gz: 9b53396cb198b0313d2f900162a8fb3f10821509bfc90434b9e78223ac3fc6105c5d4c3da59de7a56e90c6e0d9642d35ac1d82bff0b0f768133c4279ffdf7451
6
+ metadata.gz: 46777d41f87b61c907552703b7e134e39dea6f58197c6d786c9a5660ab8ed826fdc3ca887b02e48045889813f07faf798156b60c2ad0b18d07443e752d5fddf2
7
+ data.tar.gz: 3f67259310a65e9760a25d8e9e5995d3f6a35afa23339a9f475097894f3b36a9561eb904c7ad37ddbdeacd13beab2320328bc7eb50f3be93c3c131274e9b5bd8
data/CHANGELOG.md CHANGED
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.4.7] - 2025-05-07
11
+
10
12
  ## [0.4.6] - 2025-05-07
11
13
 
12
14
  ## [0.4.5] - 2025-05-07
data/lib/ivar/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Ivar
4
- VERSION = "0.4.6"
4
+ VERSION = "0.4.7"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ivar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.6
4
+ version: 0.4.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Avdi Grimm
@@ -24,19 +24,9 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.2'
27
- description: |
28
- Ruby instance variables are so convenient - you don't even need to declare them!
29
- But... they are also dangerous, because a mispelled variable name results in `nil`
30
- instead of an error.
27
+ description: 'Ivar is a Ruby gem that automatically checks for typos in instance variables.
31
28
 
32
- Why not have the best of both worlds? Ivar lets you use plain-old instance variables,
33
- and automatically checks for typos.
34
-
35
- Ivar waits until an instance is created to do the checking, then uses Prism to look
36
- for variables that don't match what was set in initialization. So it's a little bit
37
- dynamic, a little bit static. It doesn't encumber your instance variable reads and
38
- writes with any extra checking. And with the `:warn_once` policy, it won't overwhelm
39
- you with output.
29
+ '
40
30
  email:
41
31
  - avdi@avdi.codes
42
32
  executables: []
@@ -132,5 +122,5 @@ requirements: []
132
122
  rubygems_version: 3.5.3
133
123
  signing_key:
134
124
  specification_version: 4
135
- summary: Automatically check instance variables for typos.
125
+ summary: A Ruby gem that automatically checks for typos in instance variables.
136
126
  test_files: []