middleman-breadcrumbs 0.3.2 → 0.3.3
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +7 -3
- data/lib/middleman-breadcrumbs/breadcrumbs.rb +1 -0
- data/lib/middleman-breadcrumbs/version.rb +1 -1
- data/middleman-breadcrumbs.gemspec +1 -1
- metadata +2 -4
- data/.gitignore +0 -34
- data/.travis.yml +0 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f28f33311aeea9d77f7ec173c0bdc852d06b968b
|
|
4
|
+
data.tar.gz: 2bffa6753dc31d7b112d9a2f300a9660215017b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 20bc774d51ba1982b1132b2e7c4342d2145e28895b97fc99bb6e38fe128575088e0bd1756ca54c7f0b4b85ca410776416e03ea5c280c92c054d86f84492913e9
|
|
7
|
+
data.tar.gz: f3dbfdfdf09cb4a734bcad7aa714cb117f0a43c24fc393b1b10770a3f371acf9b8caabea33d13b79976bfbfa63578d937446e66bdff8ab3ef14e32a62ad99723
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -4,11 +4,15 @@
|
|
|
4
4
|
|
|
5
5
|
Breadcrumbs helper for Middleman
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Install the gem as usual: put `gem 'middleman-breadcrumbs'` in Gemfile, then run `bundle install`.
|
|
8
10
|
|
|
9
|
-
|
|
11
|
+
Put `activate :breadcrumbs` in config.rb (*not* in the `configure :build` block).
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
10
14
|
|
|
11
|
-
In your view files, just call `breadcrumbs(current_page)
|
|
15
|
+
In your view files, just call `breadcrumbs(current_page)` to display breadcrumbs.
|
|
12
16
|
|
|
13
17
|
### Options
|
|
14
18
|
|
|
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
|
|
|
23
23
|
'rake'
|
|
24
24
|
].each {|gem| s.add_development_dependency *gem }
|
|
25
25
|
|
|
26
|
-
s.files = `git ls-files`.split("\n")
|
|
26
|
+
s.files = `git ls-files`.split("\n") - %w(.gitignore .hound.yml .hound.ruby.yml .travis.yml)
|
|
27
27
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
28
28
|
s.executables = []
|
|
29
29
|
s.require_paths = ["lib"]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: middleman-breadcrumbs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marnen Laibow-Koser
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-10
|
|
11
|
+
date: 2015-12-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: middleman
|
|
@@ -101,8 +101,6 @@ executables: []
|
|
|
101
101
|
extensions: []
|
|
102
102
|
extra_rdoc_files: []
|
|
103
103
|
files:
|
|
104
|
-
- .gitignore
|
|
105
|
-
- .travis.yml
|
|
106
104
|
- CHANGELOG.md
|
|
107
105
|
- Gemfile
|
|
108
106
|
- Guardfile
|
data/.gitignore
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
*.gem
|
|
2
|
-
*.rbc
|
|
3
|
-
/.config
|
|
4
|
-
/coverage/
|
|
5
|
-
/InstalledFiles
|
|
6
|
-
/pkg/
|
|
7
|
-
/spec/reports/
|
|
8
|
-
/test/tmp/
|
|
9
|
-
/test/version_tmp/
|
|
10
|
-
/tmp/
|
|
11
|
-
|
|
12
|
-
## Specific to RubyMotion:
|
|
13
|
-
.dat*
|
|
14
|
-
.repl_history
|
|
15
|
-
build/
|
|
16
|
-
|
|
17
|
-
## Documentation cache and generated files:
|
|
18
|
-
/.yardoc/
|
|
19
|
-
/_yardoc/
|
|
20
|
-
/doc/
|
|
21
|
-
/rdoc/
|
|
22
|
-
|
|
23
|
-
## Environment normalisation:
|
|
24
|
-
/.bundle/
|
|
25
|
-
/lib/bundler/man/
|
|
26
|
-
|
|
27
|
-
# for a library or gem, you might want to ignore these files since the code is
|
|
28
|
-
# intended to run in multiple environments; otherwise, check them in:
|
|
29
|
-
Gemfile.lock
|
|
30
|
-
# .ruby-version
|
|
31
|
-
# .ruby-gemset
|
|
32
|
-
|
|
33
|
-
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
|
34
|
-
.rvmrc
|