yard-ruby-hooks 1.0.0 → 1.0.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 +4 -4
- data/lib/yard-ruby-hooks.rb +1 -1
- data/lib/yard-ruby-hooks/define_hook_handler.rb +1 -2
- data/lib/yard-ruby-hooks/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a7687dc015c7582f1b72dad38ae1c9005cb38d9b
|
|
4
|
+
data.tar.gz: e29851e2ca8e467df2733885a1c198da3a211b16
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd5196b7c8b7456d4441004943e6ec455f777946fc9a6cb633fa8f4cb5c37f3bd043f46fe1b3a26ae6929692ffc9722177159d83434ac91e4dbb6c1e789f7d0d
|
|
7
|
+
data.tar.gz: 591bcf6c1cfe87c545371c35741498e95fd4a244b3da500c95f040e4dbdd72ff15811b1d31463872ceda9b3362749e53bc4a74c05a358fcfafc989c02bc6d37e
|
data/lib/yard-ruby-hooks.rb
CHANGED
|
@@ -4,4 +4,4 @@ Copyright 2014 Michal Papis <mpapis@gmail.com>
|
|
|
4
4
|
See the file LICENSE for copying permission.
|
|
5
5
|
=end
|
|
6
6
|
|
|
7
|
-
require File.join(File.dirname(__FILE__),
|
|
7
|
+
require File.join(File.dirname(__FILE__), "yard-ruby-hooks", "define_hook_handler")
|
|
@@ -4,10 +4,9 @@ Copyright 2014 Michal Papis <mpapis@gmail.com>
|
|
|
4
4
|
See the file LICENSE for copying permission.
|
|
5
5
|
=end
|
|
6
6
|
|
|
7
|
-
YARD::Tags::Library.define_tag "Hook#
|
|
7
|
+
YARD::Tags::Library.define_tag "Hook#notify_observers block params", :notify_param, :with_types_and_name
|
|
8
8
|
YARD::Tags::Library.visible_tags << :notify_param
|
|
9
9
|
|
|
10
|
-
|
|
11
10
|
class DefineHookHandler < YARD::Handlers::Ruby::Base
|
|
12
11
|
|
|
13
12
|
handles method_call(:define_hook)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yard-ruby-hooks
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michal Papis
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-10-
|
|
11
|
+
date: 2014-10-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description:
|
|
14
14
|
email:
|
|
@@ -30,17 +30,17 @@ require_paths:
|
|
|
30
30
|
- lib
|
|
31
31
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
32
32
|
requirements:
|
|
33
|
-
- -
|
|
33
|
+
- - ">="
|
|
34
34
|
- !ruby/object:Gem::Version
|
|
35
35
|
version: '0'
|
|
36
36
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- -
|
|
38
|
+
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
41
|
requirements: []
|
|
42
42
|
rubyforge_project:
|
|
43
|
-
rubygems_version: 2.
|
|
43
|
+
rubygems_version: 2.4.2
|
|
44
44
|
signing_key:
|
|
45
45
|
specification_version: 4
|
|
46
46
|
summary: Documentation helper for define_hook from ruby-hooks
|