happy-nav 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.
- data/VERSION +1 -1
- data/happy-nav.gemspec +57 -0
- data/init.rb +2 -0
- data/rails/init.rb +2 -0
- metadata +5 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/happy-nav.gemspec
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{happy-nav}
|
|
8
|
+
s.version = "0.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Andy Pearson"]
|
|
12
|
+
s.date = %q{2010-12-26}
|
|
13
|
+
s.description = %q{Happy Nav is the easy (and cheerful) way to create structured HTML for your site navigation.}
|
|
14
|
+
s.email = %q{andy@andy-pearson.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".gitignore",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.rdoc",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"happy-nav.gemspec",
|
|
27
|
+
"init.rb",
|
|
28
|
+
"lib/happy-nav.rb",
|
|
29
|
+
"lib/happy-nav/navigation_presenter.rb",
|
|
30
|
+
"lib/happy-nav/railtie.rb",
|
|
31
|
+
"rails/init.rb",
|
|
32
|
+
"spec/navigation_helper_spec.rb",
|
|
33
|
+
"spec/navigation_presenter_spec.rb",
|
|
34
|
+
"spec/spec_helper.rb"
|
|
35
|
+
]
|
|
36
|
+
s.homepage = %q{http://github.com/andypearson/happy-nav}
|
|
37
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
38
|
+
s.require_paths = ["lib"]
|
|
39
|
+
s.rubygems_version = %q{1.3.6}
|
|
40
|
+
s.summary = %q{Happy Nav is the easy (and cheerful) way to create structured HTML for your site navigation.}
|
|
41
|
+
s.test_files = [
|
|
42
|
+
"spec/navigation_helper_spec.rb",
|
|
43
|
+
"spec/navigation_presenter_spec.rb",
|
|
44
|
+
"spec/spec_helper.rb"
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
if s.respond_to? :specification_version then
|
|
48
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
49
|
+
s.specification_version = 3
|
|
50
|
+
|
|
51
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
52
|
+
else
|
|
53
|
+
end
|
|
54
|
+
else
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
data/init.rb
ADDED
data/rails/init.rb
ADDED
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.1.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Andy Pearson
|
|
@@ -34,9 +34,12 @@ files:
|
|
|
34
34
|
- README.rdoc
|
|
35
35
|
- Rakefile
|
|
36
36
|
- VERSION
|
|
37
|
+
- happy-nav.gemspec
|
|
38
|
+
- init.rb
|
|
37
39
|
- lib/happy-nav.rb
|
|
38
40
|
- lib/happy-nav/navigation_presenter.rb
|
|
39
41
|
- lib/happy-nav/railtie.rb
|
|
42
|
+
- rails/init.rb
|
|
40
43
|
- spec/navigation_helper_spec.rb
|
|
41
44
|
- spec/navigation_presenter_spec.rb
|
|
42
45
|
- spec/spec_helper.rb
|