konstructor 0.4.2 → 0.4.3

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: b268a5dc2f6be4998f6e18b900afc84d53ca9362
4
- data.tar.gz: 102b9d190a66c3b93aa33dd76010f8a568294d26
3
+ metadata.gz: be318569bd5eb191168f2c1c3ee4a1f78a8bf5a0
4
+ data.tar.gz: 7bbe980bfdd9d4c9dd11c9796a29e1713670044b
5
5
  SHA512:
6
- metadata.gz: 21c464c814b1a1f17964a615b3f443040fffe97fe2406c7f9b2dc7fb2b7b9d509b92ba722305d81bbeae99666a6fed6bb4e59992ce9cb9c68b15efb36ed2ce72
7
- data.tar.gz: b4dcf94cc6ff9ee49f1144aa2f89683480bd98a7beeb268ebf395932ef1c441153d9e40004fdc9ecd2cf0d004c2404ed1ceacbd3c4c2e93cdde50b7f340f3b2f
6
+ metadata.gz: 2e0c499b547b7ff4e5f9005a5a161482e339dc9fab91757057bdc14fda2429ce2e375dc83f4911a31ca3aea1f95b912f49e450cb722cb9599b1357e30f3ec673
7
+ data.tar.gz: cab3f355ccc9237407da8d6da00620a070d1e9de9fae088398f7c873ba477ae46b7c38bc7b3243915ace7df9b293d82ea22e7d5718499d53e70dd521360d5ccd
@@ -1,5 +1,4 @@
1
- # :nodoc:
2
- class Class
1
+ class Class #:nodoc:
3
2
 
4
3
  include Konstructor::KonstructorMethod
5
4
 
@@ -1,6 +1,5 @@
1
1
  module Konstructor
2
- # :nodoc:
3
- class Factory
2
+ class Factory #:nodoc:
4
3
 
5
4
  def initialize(klass)
6
5
  @klass = klass
@@ -1,6 +1,5 @@
1
1
  module Konstructor
2
- # :nodoc:
3
- module KonstructorMethodHook
2
+ module KonstructorMethodHook #:nodoc:
4
3
 
5
4
  # Experimental and currently not used <code>method_added</code>
6
5
  # hook approach protecting against method_added
@@ -8,7 +8,6 @@ module Konstructor
8
8
  module KonstructorMethod
9
9
  private
10
10
 
11
- # :doc:
12
11
  # konstructor -> nil
13
12
  # konstructor(symbol, ...) -> nil
14
13
  # konstructor(string, ...) -> nil
@@ -57,7 +56,7 @@ module Konstructor
57
56
  # ReservedNameError
58
57
  # DeclaringInheritedError
59
58
  # IncludingInModuleError
60
- def konstructor(*several_variants)
59
+ def konstructor(*several_variants) #:doc:
61
60
  Konstructor.declare(self, several_variants)
62
61
  nil
63
62
  end
@@ -1,6 +1,5 @@
1
1
  module Konstructor
2
- # :nodoc:
3
- module SimpleMethodHook
2
+ module SimpleMethodHook #:nodoc:
4
3
 
5
4
  private
6
5
 
@@ -1,3 +1,3 @@
1
1
  module Konstructor
2
- VERSION = '0.4.2'
2
+ VERSION = '0.4.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: konstructor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dima Lashkov