middleman-breadcrumbs 0.3.2 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 50bee5453a5b8a4ea5c8305c9db1015e12c796e0
4
- data.tar.gz: e7f3109e7fa252767f147ad714ed22ea8768a592
3
+ metadata.gz: f28f33311aeea9d77f7ec173c0bdc852d06b968b
4
+ data.tar.gz: 2bffa6753dc31d7b112d9a2f300a9660215017b3
5
5
  SHA512:
6
- metadata.gz: 34db6c318c4232254d3962e837b3583971ae7ccffa66cb1a16774c0943970c53de8aef8a38f71eb79efa6409c8d49a407b168902144bf95f8743293130aa63b1
7
- data.tar.gz: cb03a14df8e5151401e477a41a1ee7a1a244231aca231bbf829ebaf4086e1679946d85543f8fb826e2eb6d1ff1bb0ff2e39b37b2e066cb45b62cf5f2d5d74d82
6
+ metadata.gz: 20bc774d51ba1982b1132b2e7c4342d2145e28895b97fc99bb6e38fe128575088e0bd1756ca54c7f0b4b85ca410776416e03ea5c280c92c054d86f84492913e9
7
+ data.tar.gz: f3dbfdfdf09cb4a734bcad7aa714cb117f0a43c24fc393b1b10770a3f371acf9b8caabea33d13b79976bfbfa63578d937446e66bdff8ab3ef14e32a62ad99723
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.3.3 / 2015-12-09
6
+
7
+ * Fix loading bug. [#6]
8
+ * Configure Hound CI.
9
+
5
10
  ## 0.3.2 / 2015-10-28
6
11
 
7
12
  * Configure Travis.
data/README.md CHANGED
@@ -4,11 +4,15 @@
4
4
 
5
5
  Breadcrumbs helper for Middleman
6
6
 
7
- ## Usage
7
+ ## Installation
8
+
9
+ Install the gem as usual: put `gem 'middleman-breadcrumbs'` in Gemfile, then run `bundle install`.
8
10
 
9
- In config.rb: `activate :breadcrumbs`.
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
 
@@ -1,4 +1,5 @@
1
1
  require 'middleman'
2
+ require File.join(File.dirname(__FILE__), 'version')
2
3
 
3
4
  class Breadcrumbs < Middleman::Extension
4
5
  include BreadcrumbsVersion
@@ -1,3 +1,3 @@
1
1
  module BreadcrumbsVersion
2
- VERSION = '0.3.2'
2
+ VERSION = '0.3.3'
3
3
  end
@@ -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.2
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-28 00:00:00.000000000 Z
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
data/.travis.yml DELETED
@@ -1,7 +0,0 @@
1
- sudo: false
2
- language: ruby
3
- rvm:
4
- - 2.0.0-p647
5
- - 2.1.7
6
- - 2.2.3
7
- script: bundle exec rake test