yaml_b_sides 0.1.0 → 0.1.1

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
  SHA1:
3
- metadata.gz: 22e0005ea289885cd7f2f7a4ed355a257d027e0b
4
- data.tar.gz: 8235ba4b11335051485824e75cf4d33fcf3daf3e
3
+ metadata.gz: a5a502720bd703b213f04baa39f353e311a89397
4
+ data.tar.gz: 01d42c6aaf3b83838c8e006be6c54bb89735fc94
5
5
  SHA512:
6
- metadata.gz: eaf6a11608185aaea2b2bc5717fd29794d3d29fffa22e7a9228b0d902ea06dc026b70553bab6dcd6a427335a2090bd5237b20adfc048a5b6474495d77a6f6de4
7
- data.tar.gz: 3a845f5760d6c1aea2a1c2d7eca0b9c157b4a8da01553c5d52dbc888707009a0296d0596d6094a7b0894d8f38a212dd00968f13b78438dfa995635752d8e99f4
6
+ metadata.gz: 483e6ae0158c253a20a41e63cb2a73ebb6fd968bc6ce2dff22bb682096d663a0c22499e5997cd72b4ba047bd0cc98481db63d45939bb0c040deaa80deca4a671
7
+ data.tar.gz: 3662f169f9716f83d44be1cd3cb9dbd3ca3cc7fbe38e8851bdbdfb3b46fc4f88f4a13137fa9a1b0f732fba9c40ec8d5c1922b8548a5efc7646b5ffac4feaaf79
data/lib/yaml_b_sides.rb CHANGED
@@ -9,6 +9,7 @@ require 'yaml'
9
9
 
10
10
  module YamlBSides
11
11
  autoload :Base, 'yaml_b_sides/base'
12
+ autoload :Cacheable, 'yaml_b_sides/cacheable'
12
13
  autoload :Instanceable, 'yaml_b_sides/instanceable'
13
14
  autoload :Propertiable, 'yaml_b_sides/propertiable'
14
15
  autoload :Queriable, 'yaml_b_sides/queriable'
@@ -1,6 +1,7 @@
1
1
  module YamlBSides
2
2
  class Base
3
3
  include ActiveModel::Model
4
+ include Cacheable
4
5
  include Propertiable
5
6
  include Instanceable
6
7
  include Queriable
@@ -1,3 +1,3 @@
1
1
  module YamlBSides
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yaml_b_sides
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Greg Orlov