hierarchical_menu 0.1.1 → 0.1.2
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.
- data/Changelog +4 -0
- data/lib/hmenu/constants.rb +1 -1
- data/lib/hmenu/node.rb +1 -1
- metadata +24 -10
data/Changelog
CHANGED
data/lib/hmenu/constants.rb
CHANGED
data/lib/hmenu/node.rb
CHANGED
@@ -21,7 +21,7 @@ module HMenu
|
|
21
21
|
# You can add any custom keys and use them later for any customization.
|
22
22
|
#
|
23
23
|
def add_path(path, content_hash) # just for docs
|
24
|
-
super(
|
24
|
+
super(path, content_hash)
|
25
25
|
end
|
26
26
|
|
27
27
|
# Retuns the HTML code for the menu as an unnumbered list.
|
metadata
CHANGED
@@ -1,7 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hierarchical_menu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 1
|
8
|
+
- 2
|
9
|
+
version: 0.1.2
|
5
10
|
platform: ruby
|
6
11
|
authors:
|
7
12
|
- Guido De Rosa
|
@@ -9,19 +14,22 @@ autorequire:
|
|
9
14
|
bindir: bin
|
10
15
|
cert_chain: []
|
11
16
|
|
12
|
-
date: 2010-09-28 00:00:00 +
|
17
|
+
date: 2010-09-28 00:00:00 +02:00
|
13
18
|
default_executable:
|
14
19
|
dependencies:
|
15
20
|
- !ruby/object:Gem::Dependency
|
16
21
|
name: rubytree
|
17
|
-
|
18
|
-
|
19
|
-
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
20
25
|
requirements:
|
21
26
|
- - ">="
|
22
27
|
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 0
|
23
30
|
version: "0"
|
24
|
-
|
31
|
+
type: :runtime
|
32
|
+
version_requirements: *id001
|
25
33
|
description: Ruby Tree based hierarchical menus with HTML output and JavaScript show/hide
|
26
34
|
email: guido.derosa@vemarsas.it
|
27
35
|
executables: []
|
@@ -45,6 +53,8 @@ files:
|
|
45
53
|
- lib/hmenu/node.rb
|
46
54
|
has_rdoc: true
|
47
55
|
homepage: http://github.com/gderosa/hierarchical_menu
|
56
|
+
licenses: []
|
57
|
+
|
48
58
|
post_install_message:
|
49
59
|
rdoc_options:
|
50
60
|
- --main
|
@@ -52,23 +62,27 @@ rdoc_options:
|
|
52
62
|
require_paths:
|
53
63
|
- lib
|
54
64
|
required_ruby_version: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
55
66
|
requirements:
|
56
67
|
- - ">="
|
57
68
|
- !ruby/object:Gem::Version
|
69
|
+
segments:
|
70
|
+
- 0
|
58
71
|
version: "0"
|
59
|
-
version:
|
60
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
61
74
|
requirements:
|
62
75
|
- - ">="
|
63
76
|
- !ruby/object:Gem::Version
|
77
|
+
segments:
|
78
|
+
- 0
|
64
79
|
version: "0"
|
65
|
-
version:
|
66
80
|
requirements: []
|
67
81
|
|
68
82
|
rubyforge_project:
|
69
|
-
rubygems_version: 1.3.
|
83
|
+
rubygems_version: 1.3.7
|
70
84
|
signing_key:
|
71
|
-
specification_version:
|
85
|
+
specification_version: 3
|
72
86
|
summary: Hierarchical menus with html output
|
73
87
|
test_files: []
|
74
88
|
|