flutterby 0.6.1 → 0.6.2

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: 61b0c4ca2efadccd773934db550b83c9a4762fc7
4
- data.tar.gz: ca66952bc4efc4b24a9e3c3ca3f2c0adf6cfa30a
3
+ metadata.gz: 50c9cbe31111ebbd7904ab13a9e307489746acfb
4
+ data.tar.gz: 3f053744a896e2dc60f09a64fc67db8054d6a71a
5
5
  SHA512:
6
- metadata.gz: 16248a165efdbc52640ec2c60bc7d829c63160925c19c453347f112ad5f335fc5cf854b25d153914160986cf238247f6beae3cd2181b5f275b6884eb889d8d76
7
- data.tar.gz: 211b3e00e83d442c0562f90fa0f606c2a3a241cc1ccad6e5076c60584395d346cb9d623be7b5d08c760e3ddc05c260ef382555d2b349841a9c7adf6504c0afb2
6
+ metadata.gz: 06305b75a789c011fb6187f584a8c6998ceeb33193c50175956127da651c849d60bd5e411b58c8bfefb1092dea8849a77bf95b5040dfee4f40a9ca3c1cbc5b2c
7
+ data.tar.gz: 8b5633bd2212edcf9dda11dca23601ce2c92e45ae690a35973bfd02406d399fe6fd71e72ed72c7a4512bae7c894107d099cfceed973f5d1ffb76e7ee148e66b6
data/CHANGES.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Version History
2
2
 
3
+ ### 0.6.2 (2017-01-29)
4
+
5
+ - **FIXED:** Images and other binaries would crash Flutterby when trying to extract frontmatter from them. Woops! ([#29](https://github.com/hmans/flutterby/issues/29))
6
+
7
+
3
8
  ### 0.6.1 (2017-01-29)
4
9
 
5
10
  - **FIXED:** Front matter is now extracted using a non-greedy regular expression, fixing the problem with `---` horizontal rules in Markdown bodies.
@@ -9,11 +9,13 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Hendrik Mans"]
10
10
  spec.email = ["hendrik@mans.de"]
11
11
 
12
- spec.summary = %q{There are many static site generators. This is mine.}
13
- spec.description = %q{There are many static site generators. This is mine.}
12
+ spec.summary = %q{A flexible, Ruby-powered website creation framework.}
13
+ spec.description = %q{Flutterby is a flexible, Ruby-powered, routing graph-based web application framework that will serve your website dynamically or export it as a static site.}
14
14
  spec.homepage = "https://github.com/hmans/flutterby"
15
15
  spec.license = "MIT"
16
16
 
17
+ spec.post_install_message = %q{Please note that Flutterby is still under heavy development. If you use it to build a website, please expect breakage in future versions! Please keep an eye (or two) on the official website at <http://flutterby.run>.}
18
+
17
19
  spec.required_ruby_version = '~> 2.2'
18
20
 
19
21
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
@@ -241,6 +241,7 @@ module Flutterby
241
241
  @data.merge! TOML.parse($1)
242
242
  end
243
243
  end
244
+ rescue ArgumentError => e
244
245
  end
245
246
 
246
247
  def read_json!
@@ -1,3 +1,3 @@
1
1
  module Flutterby
2
- VERSION = "0.6.1"
2
+ VERSION = "0.6.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flutterby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hendrik Mans
@@ -360,7 +360,8 @@ dependencies:
360
360
  - - "~>"
361
361
  - !ruby/object:Gem::Version
362
362
  version: '2.0'
363
- description: There are many static site generators. This is mine.
363
+ description: Flutterby is a flexible, Ruby-powered, routing graph-based web application
364
+ framework that will serve your website dynamically or export it as a static site.
364
365
  email:
365
366
  - hendrik@mans.de
366
367
  executables:
@@ -421,7 +422,9 @@ homepage: https://github.com/hmans/flutterby
421
422
  licenses:
422
423
  - MIT
423
424
  metadata: {}
424
- post_install_message:
425
+ post_install_message: Please note that Flutterby is still under heavy development.
426
+ If you use it to build a website, please expect breakage in future versions! Please
427
+ keep an eye (or two) on the official website at <http://flutterby.run>.
425
428
  rdoc_options: []
426
429
  require_paths:
427
430
  - lib
@@ -440,5 +443,5 @@ rubyforge_project:
440
443
  rubygems_version: 2.5.2
441
444
  signing_key:
442
445
  specification_version: 4
443
- summary: There are many static site generators. This is mine.
446
+ summary: A flexible, Ruby-powered website creation framework.
444
447
  test_files: []