middleman-build-reporter 0.0.2 → 0.0.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: 7582879cb653cc74131e0ef87e4f1598aada2ab9
4
- data.tar.gz: 10a658adb6abe171a25b7b5304476792d50156f9
3
+ metadata.gz: a1d0cb47f7eb75379745a61569987fb21d197e31
4
+ data.tar.gz: db005e812ee235648d5c61f749a85453387172cc
5
5
  SHA512:
6
- metadata.gz: 7effe01a14c4a2d786a9876a9152f17999bd18e3f08d695a792bc6cdec68158d69918b54ec43410058f008501d0579a5d2d13730dc7682b359912cd5ca20425e
7
- data.tar.gz: 2af823834b00d8b6b5955a4d3bb7b4001ec07b784f94cb48403dcbf0bbceca0691ed4b1050a9de14e3a13dac454fd026b787811dd5b1083bf6a7f313cd7ef5d7
6
+ metadata.gz: cc7fb3d5f8877b3a17d356268b5b6d7995c482f9982a9bb176013c5bd684d12195edd1f20780114214ac5709ea7306d91db5b3ae6fda8db952b2ca170bf3cfe8
7
+ data.tar.gz: eeeec727c5801ed6cddbafefbb8f8c9fbebdf5140671d9958d99560a10163d28652c1b6a66245322ad267f2b0605de57b78e0ec4ef178ef59a5c68bac8ae7906
data/README.md CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  # middleman-build-reporter
4
4
 
5
- middleman-build-reporter helps you understand what code has been deployed to an environment, and whether you're viewing cached or stale build artifacts.
5
+ middleman-build-reporter is a [Middleman](http://middlemanapp.com) to help you understand what code has been deployed to an environment, and whether you're viewing cached or stale build artifacts.
6
6
 
7
7
  Features:
8
8
 
9
- 1. Generate YAML and/or JSON files reporting build-time/version details for your [Middleman](http://middlemanapp.com) app.
9
+ 1. Generate YAML and/or JSON files reporting build-time/version details for your Middleman app.
10
10
  2. Fingerprint each Middleman HTML template with a `<!-- FINGERPRINT -->` comment surfacing build-time/version details.
11
11
 
12
12
  ## Output
@@ -90,7 +90,7 @@ activate :build_reporter do |build|
90
90
  end
91
91
  ```
92
92
 
93
- ## Fingerprinting you HTML templates
93
+ ## Fingerprinting your HTML templates
94
94
 
95
95
  Use the `build_reporter_fingerprint` to fingerprint your HTML templates with build/version details:
96
96
 
@@ -9,7 +9,6 @@ module Middleman
9
9
  super
10
10
 
11
11
  @app = app
12
- @app.set :repo_root, (options.repo_root ? options.repo_root : @app.root)
13
12
  @app.set :build_report, Middleman::BuildReporter::Reporter.new(@app, options)
14
13
  end
15
14
 
@@ -11,7 +11,7 @@ module Middleman
11
11
  @app = app_instance
12
12
 
13
13
  @options = opts
14
- @repo = Git.open(opts.repo_root)
14
+ @repo = Git.open(opts.repo_root ? opts.repo_root : @app.root)
15
15
  end
16
16
 
17
17
  def write
@@ -1,5 +1,5 @@
1
1
  module Middleman
2
2
  module BuildReporter
3
- VERSION = '0.0.2'
3
+ VERSION = '0.0.3'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman-build-reporter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Ball
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-21 00:00:00.000000000 Z
11
+ date: 2014-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: middleman-core