attribute_struct 0.2.6 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4b26e0d9ceb950c12c4cc445bb3a64b34ab571ad
4
- data.tar.gz: bd94f03ac86dec14a60ec5e7b16f77cb592c0853
3
+ metadata.gz: ce43bf5414fc669856d07c0cfb12d5f49794c598
4
+ data.tar.gz: 60d3f21d07df5d5493db11d258f5912799e51d50
5
5
  SHA512:
6
- metadata.gz: de3283d55f5e015ea981d797f2f22eb7b4d33ddfa717119d69c4ebbe45d2ce0a2f26dc15815784d9b9be2784c5e8b26d71e45d34ffc80d87490521bb6ebe9e9c
7
- data.tar.gz: d109ff08acbaca3b6908f193f76b9600cede5442972d5e8e7f221d035069f8e8cbd5450604b11cec6990feeaf3bfe123c878dd65d0dd366dfab8fac99b0565dc
6
+ metadata.gz: 59b0637283bbba0d8fc6b4519b299a1645d91441a45dabfc0a23e51c0789acd08a57e4ef3667bfdd297d35c1ec4d46867d3cdfa2175a2842389f9a16e3538a70
7
+ data.tar.gz: edbb7022af9cd5650a6770ceba589dfb8bcac78a6de906b07f0c2d198b8f18690496cfca5b77ae01ff535b3905e8ce3303d8cb74591e4b6240394eae23d47764
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## v0.2.8
2
+ * Fix class mismatch issue
3
+
1
4
  ## v0.2.6
2
5
  * Vendor `Mash` and expand to provide required deep_merge functionality
3
6
  * Remove external dependencies
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- attribute_struct (0.2.5)
4
+ attribute_struct (0.2.7)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
Binary file
Binary file
@@ -1,4 +1,4 @@
1
- require 'attribute_struct'
1
+ require 'attribute_struct/attribute_struct'
2
2
 
3
3
  class AttributeStruct
4
4
 
@@ -1,4 +1,3 @@
1
- require 'attribute_struct'
2
1
  require 'attribute_struct/irb_compat'
3
2
 
4
3
  class AttributeStruct < BasicObject
@@ -467,3 +466,4 @@ class AttributeStruct < BasicObject
467
466
  end
468
467
 
469
468
  require 'attribute_struct/attribute_hash'
469
+ require 'attribute_struct/version'
@@ -1,6 +1,6 @@
1
- require 'attribute_struct'
1
+ require 'attribute_struct/attribute_struct'
2
2
 
3
3
  class AttributeStruct
4
4
  # Current library version
5
- VERSION = ::Gem::Version.new('0.2.6')
5
+ VERSION = ::Gem::Version.new('0.2.8')
6
6
  end
@@ -1,2 +1 @@
1
- require 'attribute_struct/version'
2
1
  require 'attribute_struct/attribute_struct'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: attribute_struct
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Roberts
@@ -22,6 +22,8 @@ files:
22
22
  - Gemfile.lock
23
23
  - LICENSE
24
24
  - README.md
25
+ - attribute_struct-0.2.6.gem
26
+ - attribute_struct-0.2.7.gem
25
27
  - attribute_struct.gemspec
26
28
  - lib/attribute_struct.rb
27
29
  - lib/attribute_struct/attribute_hash.rb