crumble 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
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.0
1
+ 0.1.1
@@ -1 +1 @@
1
- require File.join(File.dirname(__FILE__), *%w[.. lib breadcrumb])
1
+ require File.expand_path(File.dirname(__FILE__) + "/../lib/breadcrumb")
@@ -1,6 +1,7 @@
1
1
  require File.dirname(__FILE__) + '/spec_helper'
2
2
 
3
3
  require 'active_support'
4
+ require 'action_view/helpers/javascript_helper'
4
5
  require 'action_view/helpers/url_helper'
5
6
 
6
7
  describe BreadcrumbsHelper do
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.0
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-18 00:00:00 +01:00
12
+ date: 2009-11-19 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies: []
15
15