has_breadcrumbs 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/VERSION +1 -1
- data/has_breadcrumbs.gemspec +53 -0
- data/lib/has_breadcrumbs.rb +2 -0
- metadata +5 -3
data/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
pkg
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
@@ -0,0 +1,53 @@
|
|
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{has_breadcrumbs}
|
8
|
+
s.version = "0.2.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Gabriel Sobrinho", "Daniel Lopes", "Nando Vieira"]
|
12
|
+
s.date = %q{2010-06-14}
|
13
|
+
s.email = %q{gabriel.sobrinho@gmail.com}
|
14
|
+
s.extra_rdoc_files = [
|
15
|
+
"README.textile"
|
16
|
+
]
|
17
|
+
s.files = [
|
18
|
+
".gitignore",
|
19
|
+
"MIT-LICENSE",
|
20
|
+
"README.textile",
|
21
|
+
"Rakefile",
|
22
|
+
"VERSION",
|
23
|
+
"examples/images/crumbs.gif",
|
24
|
+
"examples/index.html",
|
25
|
+
"examples/styles.css",
|
26
|
+
"has_breadcrumbs.gemspec",
|
27
|
+
"init.rb",
|
28
|
+
"lib/breadcrumb.rb",
|
29
|
+
"lib/has_breadcrumbs.rb",
|
30
|
+
"spec/has_breadcrumbs_spec.rb",
|
31
|
+
"spec/spec_helper.rb"
|
32
|
+
]
|
33
|
+
s.homepage = %q{http://github.com/sobrinho/has_breadcrumbs}
|
34
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
35
|
+
s.require_paths = ["lib"]
|
36
|
+
s.rubygems_version = %q{1.3.7}
|
37
|
+
s.summary = %q{has_breadcrumbs is a simple plugin that adds a `breadcrumb` object into controllers and views.}
|
38
|
+
s.test_files = [
|
39
|
+
"spec/has_breadcrumbs_spec.rb",
|
40
|
+
"spec/spec_helper.rb"
|
41
|
+
]
|
42
|
+
|
43
|
+
if s.respond_to? :specification_version then
|
44
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
45
|
+
s.specification_version = 3
|
46
|
+
|
47
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
48
|
+
else
|
49
|
+
end
|
50
|
+
else
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
data/lib/has_breadcrumbs.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: has_breadcrumbs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 0.2.
|
9
|
+
- 1
|
10
|
+
version: 0.2.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Gabriel Sobrinho
|
@@ -30,6 +30,7 @@ extensions: []
|
|
30
30
|
extra_rdoc_files:
|
31
31
|
- README.textile
|
32
32
|
files:
|
33
|
+
- .gitignore
|
33
34
|
- MIT-LICENSE
|
34
35
|
- README.textile
|
35
36
|
- Rakefile
|
@@ -37,6 +38,7 @@ files:
|
|
37
38
|
- examples/images/crumbs.gif
|
38
39
|
- examples/index.html
|
39
40
|
- examples/styles.css
|
41
|
+
- has_breadcrumbs.gemspec
|
40
42
|
- init.rb
|
41
43
|
- lib/breadcrumb.rb
|
42
44
|
- lib/has_breadcrumbs.rb
|