ure 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/ure/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6aee97285756be61b5d50c642d983b6fcc513b47
4
- data.tar.gz: fd53cee9caf6a3afa0d824d89bcc2b5c6bd436af
3
+ metadata.gz: 620259e61624fa445a4b967fd99b159929c57d4e
4
+ data.tar.gz: 8b29a4a3afc5f2e820271594194bf3eeb02ab48a
5
5
  SHA512:
6
- metadata.gz: 1637dd78f9d42d2aab243a61bf287e8f4ae1eb9e0387de4af3b745b612e60197198af9e4e1c789119cc78cfc4d3ac1f2a2e87112034479a9944a133ae690c348
7
- data.tar.gz: 87a9c366245af1dc09e236615825ae0495acd331d8e377805c682614152d9d70f25f51b8c3c888d6ba5a58f600a4da1b766fef9d8630ed51e9398ec0859d0af4
6
+ metadata.gz: bee981eb0139843dd3a7a697d02916ae6476079228c91261d36731bece8721b3725708a53544783d1c0556ec36279d7c485e06e110ff41c2118cfbf83210a89f
7
+ data.tar.gz: 62b78837053a4db29687215702ca45d17bff8bc3a9c0f392a0d1fa588bf62f17dbc481e39bf804fd2fcffd2329357b0bb566a37a7cff56939b5b2163ccca7c7e
data/README.md CHANGED
@@ -70,7 +70,7 @@ Or install it yourself as:
70
70
 
71
71
  To use Ure, just require it in whatever file is implementing it and treat it like a Struct.
72
72
 
73
- Ure will try to implement as public methods whatever keys you pass in as a hash. For speed purposes, this means that if you pass in an existing method that Ure recognizes, it'll override it. Ure inherits directly from `BasicObject`, so it has very few methods other than its public facing instance methods. Still, this is something to watch out for. If you're passing in ':instance_eval` or a lone `!` as keys, you'll have problems.
73
+ Ure will try to implement as public methods whatever keys you pass in as a hash. For speed purposes, this means that if you pass in an existing method that Ure recognizes, it'll override it. Ure inherits directly from `BasicObject`, so it has very few methods other than its public facing instance methods. Still, this is something to watch out for. If you're passing in `:instance_eval` or a lone `!` as keys, you'll have problems.
74
74
 
75
75
  Any methods on `Struct` that require indexing or care about the position of arguments have been depricated or changed to only care about the name of the argument passed.
76
76
 
data/lib/ure/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Ure < BasicObject
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ure
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Clayton Flesher