crumble 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/README.md +6 -0
- data/VERSION +1 -1
- data/rails/init.rb +1 -1
- data/spec/breadcrumbs_helper_spec.rb +1 -0
- metadata +2 -2
data/README.md
CHANGED
|
@@ -109,6 +109,12 @@ Then, in your views, just insert the following:
|
|
|
109
109
|
|
|
110
110
|
<%= crumbs %>
|
|
111
111
|
|
|
112
|
+
Don't forget to include the helper in the affected controllers:
|
|
113
|
+
|
|
114
|
+
class ApplicationController < ActionController::Base
|
|
115
|
+
helper :breadcrumbs
|
|
116
|
+
end
|
|
117
|
+
|
|
112
118
|
If your trails reference non-existing crumbs, the plugin will raise an error telling you where in your configuration the illegal reference was made.
|
|
113
119
|
|
|
114
120
|
Future
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/rails/init.rb
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
require File.
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + "/../lib/breadcrumb")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: crumble
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mathias Meyer
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-11-
|
|
12
|
+
date: 2009-11-19 00:00:00 +01:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|