awestruct 0.6.0.alpha3 → 0.6.0.alpha4

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
  SHA256:
3
- metadata.gz: f4d8fb9e5ada0854f2b36987d7d5c7e7f65aefb977efb17ce6d94a964d3449b9
4
- data.tar.gz: 818e50d79bad2d65fb9927c54dfb86c27fb1d0ddd2eaafc233c7b758ea48076a
3
+ metadata.gz: 97ee0ed6d12ac06dd0923ec0751410471a196a9065a34b00ccf695b2b0ba82ba
4
+ data.tar.gz: 3d8b285e690df0c42a7a8a482d8dfd5b6ac06cf4de61009b0a4c80fa222cfd76
5
5
  SHA512:
6
- metadata.gz: 7eac386ac58acc6316f0e037393a818f9e8b186d0720539931ead71c8d95ed7a972d7b9c166604b7b8d0484c2f46dc11e0cf20ec64e009ab9372e626a514d46f
7
- data.tar.gz: 14fb03bd96ef61cb1cdecc3e7450fc4a3bebaac21d2cea92190607e7e00bf44edefd55fe08163d26e5bac36eac81bc9081abfc7058fca29d6e34faf29a519348
6
+ metadata.gz: 17445a1e2ab8d55bcf59d0dc9bc46662dea51b2638145da02037f3a9f4756ad6936a0ec47a124a842bf0836f1f058286daca6457fcbd047bdfe9656f191dcaa2
7
+ data.tar.gz: 6fdcf0805eb97f3f2ad1d25e53e589b80415c3952a6d6e4dc844863048259573379139117cfe20bcded71a5900f47e97b66b5ee03563c955140110ff50437851
data/Gemfile CHANGED
@@ -1,5 +1,5 @@
1
1
  source 'https://rubygems.org'
2
- ruby '~> 2.4.0'
2
+ ruby '>= 2.4.0'
3
3
 
4
4
  group :development do
5
5
  gem 'hashery', '~> 2.1.1'
@@ -1,18 +1,21 @@
1
- Copyright (c) 2010-2014 Bob McWhirter and contributors (see git log)
1
+ MIT License
2
+
3
+ Copyright (c) 2010-2019 Bob McWhirter and contributors (see git log)
2
4
 
3
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
- of this software and associated documentation files (the "Software"), to
5
- deal in the Software without restriction, including without limitation the
6
- rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
7
- sell copies of the Software, and to permit persons to whom the Software is
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
8
10
  furnished to do so, subject to the following conditions:
9
11
 
10
- The above copyright notice and this permission notice shall be included in
11
- all copies or substantial portions of the Software.
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
12
14
 
13
15
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
16
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
16
- THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
18
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,7 +1,5 @@
1
1
  [![Build Status](https://secure.travis-ci.org/awestruct/awestruct.png)](http://travis-ci.org/awestruct/awestruct)
2
2
 
3
- [![Build Status](https://buildhive.cloudbees.com/job/awestruct/job/awestruct/badge/icon)](https://buildhive.cloudbees.com/job/awestruct/job/awestruct/)
4
-
5
3
  # For more information
6
4
 
7
5
  Please see the complete site at <http://awestruct.org/>.
@@ -4,7 +4,7 @@ require 'awestruct/version'
4
4
  spec = Gem::Specification.new do |s|
5
5
  s.name = 'awestruct'
6
6
  s.version = Awestruct::VERSION
7
- s.date = '2019-08-19'
7
+ s.date = '2020-01-12'
8
8
 
9
9
  s.authors = ['Bob McWhirter', 'Jason Porter', 'Lance Ball', 'Dan Allen', 'Torsten Curdt', 'other contributors']
10
10
  s.email = ['bob@mcwhirter.org', 'lightguard.jp@gmail.com', 'lball@redhat.com', 'dan.j.allen@gmail.com', 'tcurdt@vafer.org']
@@ -39,10 +39,10 @@ module Awestruct
39
39
  day = sprintf( "%02d", date.day )
40
40
  page.date = date
41
41
  slug = $1
42
- if ( page.relative_source_path =~ /^#{@path_prefix}\/(20[01][0-9])-([01][0-9])-([0123][0-9])-([^.]+)\..*$/ )
42
+ if ( page.relative_source_path =~ /^#{@path_prefix}\/(2[0-9]{3})-([01][0-9])-([0123][0-9])-([^.]+)\..*$/ )
43
43
  slug = $4
44
44
  end
45
- elsif ( page.relative_source_path =~ /^#{@path_prefix}\/(20[01][0-9])-([01][0-9])-([0123][0-9])-([^.]+)\..*$/ )
45
+ elsif ( page.relative_source_path =~ /^#{@path_prefix}\/(2[0-9]{3})-([01][0-9])-([0123][0-9])-([^.]+)\..*$/ )
46
46
  year = $1
47
47
  month = $2
48
48
  day = $3
@@ -1,3 +1,3 @@
1
1
  module Awestruct
2
- VERSION = '0.6.0.alpha3'
2
+ VERSION = '0.6.0.alpha4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: awestruct
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0.alpha3
4
+ version: 0.6.0.alpha4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bob McWhirter
@@ -13,7 +13,7 @@ authors:
13
13
  autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
- date: 2019-08-19 00:00:00.000000000 Z
16
+ date: 2020-01-12 00:00:00.000000000 Z
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
19
19
  name: haml
@@ -627,8 +627,7 @@ requirements:
627
627
  Any markup languages you are using and its dependencies.
628
628
  Haml and Markdown filters are touchy things. Redcarpet or Rdiscount work well if you're running on MRI. JRuby should be using haml 4.0.0+ with Kramdown.
629
629
  Compass and sass are no longer hard dependencies. You'll need too add them on your own should you want them. We also should be able to work with sassc.
630
- rubyforge_project: awestruct
631
- rubygems_version: 2.7.9
630
+ rubygems_version: 3.0.1
632
631
  signing_key:
633
632
  specification_version: 4
634
633
  summary: Static site baking and publishing tool