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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -0
- data/lib/ivar/version.rb +1 -1
- metadata +4 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 126ad66ef41d7f999705ba40e7f89577f4fa1f5c1f0912f03b5ac48a188de2e7
|
4
|
+
data.tar.gz: fabf7625f5394e23c86a3bf9a4d3bd6696365eacb15b1d6de0588044ba8915e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46777d41f87b61c907552703b7e134e39dea6f58197c6d786c9a5660ab8ed826fdc3ca887b02e48045889813f07faf798156b60c2ad0b18d07443e752d5fddf2
|
7
|
+
data.tar.gz: 3f67259310a65e9760a25d8e9e5995d3f6a35afa23339a9f475097894f3b36a9561eb904c7ad37ddbdeacd13beab2320328bc7eb50f3be93c3c131274e9b5bd8
|
data/CHANGELOG.md
CHANGED
data/lib/ivar/version.rb
CHANGED
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.
|
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
|
-
|
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:
|
125
|
+
summary: A Ruby gem that automatically checks for typos in instance variables.
|
136
126
|
test_files: []
|