nanoc-toolbox 0.0.1 → 0.0.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/.gitignore +6 -0
- data/.yardopts +5 -0
- data/CHANGELOG.md +13 -0
- data/Gemfile.lock +22 -0
- data/LICENSE.md +24 -0
- data/README.md +54 -0
- data/doc/Nanoc/Toolbox/Helpers/Navigation.html +999 -0
- data/doc/Nanoc/Toolbox/Helpers.html +93 -0
- data/doc/Nanoc/Toolbox.html +105 -0
- data/doc/Nanoc.html +93 -0
- data/doc/_index.html +137 -0
- data/doc/class_list.html +36 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +53 -0
- data/doc/css/style.css +310 -0
- data/doc/file.CHANGELOG.html +70 -0
- data/doc/file.LICENSE.html +77 -0
- data/doc/file.README.html +73 -0
- data/doc/file_list.html +44 -0
- data/doc/frames.html +13 -0
- data/doc/index.html +73 -0
- data/doc/js/app.js +203 -0
- data/doc/js/full_list.js +149 -0
- data/doc/js/jquery.js +154 -0
- data/doc/method_list.html +67 -0
- data/doc/top-level-namespace.html +88 -0
- data/lib/nanoc/toolbox/helpers/navigation.rb +37 -29
- data/lib/nanoc/toolbox/version.rb +1 -1
- data/nanoc-toolbox.gemspec +3 -4
- metadata +34 -8
data/nanoc-toolbox.gemspec
CHANGED
@@ -7,13 +7,12 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.platform = Gem::Platform::RUBY
|
8
8
|
s.authors = ["Anouar ADLANI"]
|
9
9
|
s.email = ["anouar@adlani.com"]
|
10
|
-
s.homepage = "http://
|
10
|
+
s.homepage = "http://aadlani.github.com/nanoc-toolbox/"
|
11
11
|
s.summary = "A collection of helper and filters for nanoc"
|
12
|
-
s.description = ""
|
13
|
-
|
12
|
+
s.description = "The nanoc-toolbox is a collection of filters and helpers for the static site generator tool nanoc"
|
13
|
+
s.rdoc_options = ["--main", "README.rdoc"]
|
14
14
|
|
15
15
|
s.required_rubygems_version = ">= 1.3.6"
|
16
|
-
s.rubyforge_project = "nanoc-toolbox"
|
17
16
|
|
18
17
|
s.add_dependency "nanoc", ">= 3.1.6"
|
19
18
|
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 2
|
9
|
+
version: 0.0.2
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Anouar ADLANI
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2011-01-
|
17
|
+
date: 2011-01-07 00:00:00 +01:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -47,7 +47,7 @@ dependencies:
|
|
47
47
|
version: 1.0.0
|
48
48
|
type: :development
|
49
49
|
version_requirements: *id002
|
50
|
-
description:
|
50
|
+
description: The nanoc-toolbox is a collection of filters and helpers for the static site generator tool nanoc
|
51
51
|
email:
|
52
52
|
- anouar@adlani.com
|
53
53
|
executables: []
|
@@ -58,20 +58,46 @@ extra_rdoc_files: []
|
|
58
58
|
|
59
59
|
files:
|
60
60
|
- .gitignore
|
61
|
+
- .yardopts
|
62
|
+
- CHANGELOG.md
|
61
63
|
- Gemfile
|
64
|
+
- Gemfile.lock
|
65
|
+
- LICENSE.md
|
66
|
+
- README.md
|
62
67
|
- Rakefile
|
68
|
+
- doc/Nanoc.html
|
69
|
+
- doc/Nanoc/Toolbox.html
|
70
|
+
- doc/Nanoc/Toolbox/Helpers.html
|
71
|
+
- doc/Nanoc/Toolbox/Helpers/Navigation.html
|
72
|
+
- doc/_index.html
|
73
|
+
- doc/class_list.html
|
74
|
+
- doc/css/common.css
|
75
|
+
- doc/css/full_list.css
|
76
|
+
- doc/css/style.css
|
77
|
+
- doc/file.CHANGELOG.html
|
78
|
+
- doc/file.LICENSE.html
|
79
|
+
- doc/file.README.html
|
80
|
+
- doc/file_list.html
|
81
|
+
- doc/frames.html
|
82
|
+
- doc/index.html
|
83
|
+
- doc/js/app.js
|
84
|
+
- doc/js/full_list.js
|
85
|
+
- doc/js/jquery.js
|
86
|
+
- doc/method_list.html
|
87
|
+
- doc/top-level-namespace.html
|
63
88
|
- lib/nanoc/toolbox.rb
|
64
89
|
- lib/nanoc/toolbox/helpers.rb
|
65
90
|
- lib/nanoc/toolbox/helpers/navigation.rb
|
66
91
|
- lib/nanoc/toolbox/version.rb
|
67
92
|
- nanoc-toolbox.gemspec
|
68
93
|
has_rdoc: true
|
69
|
-
homepage: http://
|
94
|
+
homepage: http://aadlani.github.com/nanoc-toolbox/
|
70
95
|
licenses: []
|
71
96
|
|
72
97
|
post_install_message:
|
73
|
-
rdoc_options:
|
74
|
-
|
98
|
+
rdoc_options:
|
99
|
+
- --main
|
100
|
+
- README.rdoc
|
75
101
|
require_paths:
|
76
102
|
- lib
|
77
103
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -94,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
120
|
version: 1.3.6
|
95
121
|
requirements: []
|
96
122
|
|
97
|
-
rubyforge_project:
|
123
|
+
rubyforge_project:
|
98
124
|
rubygems_version: 1.3.7
|
99
125
|
signing_key:
|
100
126
|
specification_version: 3
|