flutterby 0.6.1 → 0.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +5 -0
- data/flutterby.gemspec +4 -2
- data/lib/flutterby/node.rb +1 -0
- data/lib/flutterby/version.rb +1 -1
- metadata +7 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 50c9cbe31111ebbd7904ab13a9e307489746acfb
|
4
|
+
data.tar.gz: 3f053744a896e2dc60f09a64fc67db8054d6a71a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
data/flutterby.gemspec
CHANGED
@@ -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{
|
13
|
-
spec.description = %q{
|
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|
|
data/lib/flutterby/node.rb
CHANGED
data/lib/flutterby/version.rb
CHANGED
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.
|
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:
|
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:
|
446
|
+
summary: A flexible, Ruby-powered website creation framework.
|
444
447
|
test_files: []
|