contentful_middleman 1.0.0 → 1.0.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e5976bd4bf0b3954a33f737d13b8d9e2b928a9f8
4
- data.tar.gz: 27378bfcc1245e25474fa1ccb26ccdbee82ba203
3
+ metadata.gz: 474928d9d05d7cb2360bb01801965789dd2f3289
4
+ data.tar.gz: 5867e872db0d1f20381236e0c71615d8727ff8c8
5
5
  SHA512:
6
- metadata.gz: 687bf3399611ae1cabf559862d375914afc69fdb93df7bcad0258875b5b42c46cb6f8a3e7540639f464ec71d892df862ea6d9f0dd246c41cab0a46f79d65d04c
7
- data.tar.gz: 007f63c5d2fb64088ef48590e17eb5f1539afcb6ff1eeaf85d6f7fcb758a0ab470216ba61211046943cac18aa24ad25c22c6f992c4281a94a6467782fa568d94
6
+ metadata.gz: 94ef942455d8d979a8c3e7e7e5fe676e5182f79136fd73b6c6043b645a9cb2966d8019864554a8ea2ac8ccae737cc30a60bbcbceba6fc6d5638a2cb905d2883d
7
+ data.tar.gz: c1781533e777f2bd4ba7799d9ac64b7672c3ffb2ccc8f2da34e817b033a8aba81d89b788656c350003bdfd8c9ad02ad8cea3561ea98c8c97404556c08f5557fe
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # Change Log
2
2
 
3
- ## 1.0.
3
+ ## 1.0.1
4
+ ### Fixed
5
+ * Set local data file extension to *.yaml*
6
+
7
+ ## 1.0.0
4
8
  ### Other
5
9
  This release brings breaking changes that are not compatible with extension configurations in
6
10
  previous versions. For more information about the supported configuration please read the
data/README.md CHANGED
@@ -6,8 +6,11 @@ Contentful Middleman is a [Middleman](http://middlemanapp.com/) extension to use
6
6
 
7
7
  Experience the power of Middleman while staying sane as a developer by letting end-users edit content in a web-based interface.
8
8
 
9
+
9
10
  ## Installation
10
11
 
12
+ Note - [Middleman Blog](https://github.com/middleman/middleman-blog) is a dependency of Contenful Middleman
13
+
11
14
  Add the following line to the Gemfile of your Middleman project:
12
15
 
13
16
  ```
@@ -22,7 +22,7 @@ module ContentfulMiddleman
22
22
 
23
23
  def local_data_file_path
24
24
  base_path = LocalData::Store.base_path
25
- ::File.join(base_path, @path)
25
+ ::File.join(base_path, @path + ".yaml")
26
26
  end
27
27
  end
28
28
  end
@@ -1,3 +1,3 @@
1
1
  module ContentfulMiddleman
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: contentful_middleman
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sascha Konietzke
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-01-26 00:00:00.000000000 Z
12
+ date: 2015-02-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: middleman-core