awestruct 0.6.0.alpha4 → 0.6.0

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
- SHA256:
3
- metadata.gz: 97ee0ed6d12ac06dd0923ec0751410471a196a9065a34b00ccf695b2b0ba82ba
4
- data.tar.gz: 3d8b285e690df0c42a7a8a482d8dfd5b6ac06cf4de61009b0a4c80fa222cfd76
2
+ SHA1:
3
+ metadata.gz: 7a08d19ea467620afb84c0396162767bb2df5c1d
4
+ data.tar.gz: 0e7d000b9298c47c01d2c07c228736a68de3f8bf
5
5
  SHA512:
6
- metadata.gz: 17445a1e2ab8d55bcf59d0dc9bc46662dea51b2638145da02037f3a9f4756ad6936a0ec47a124a842bf0836f1f058286daca6457fcbd047bdfe9656f191dcaa2
7
- data.tar.gz: 6fdcf0805eb97f3f2ad1d25e53e589b80415c3952a6d6e4dc844863048259573379139117cfe20bcded71a5900f47e97b66b5ee03563c955140110ff50437851
6
+ metadata.gz: ebcae9f08b9ad9687eacfff2dad6589a0af5bbc3861f2336e3021c4bd82db7e890301169fad6dd3f0f3e24a7c0bffa2c9d50213e806d48ed9081541631259487
7
+ data.tar.gz: e05a713a980aabc1bc895bef7c6a25baa5a6af3f0bdd7135b535532823256b03b11965481a025a3139875f658aaba1bc74c10ac288ea8914b7dbd23d2a7831a0
data/README.md CHANGED
@@ -1,10 +1,21 @@
1
- [![Build Status](https://secure.travis-ci.org/awestruct/awestruct.png)](http://travis-ci.org/awestruct/awestruct)
1
+ # Awestruct
2
+ [![Gem](https://img.shields.io/gem/v/awestruct)](https://rubygems.org/gems/awestruct)
3
+ [![Gem](https://img.shields.io/gem/dt/awestruct?color=blue)](https://rubygems.org/gems/awestruct)
4
+ [![Build Status](https://secure.travis-ci.org/awestruct/awestruct.png)](https://travis-ci.org/awestruct/awestruct)
2
5
 
3
- # For more information
6
+ ## Requirements
7
+
8
+ Ruby 2.4 or later
9
+
10
+ ## Getting started
11
+
12
+ Install Awestruct using `gem install awestruct`. Then you can initialize an Awestruct projet by running `awestruct --init`. To generate the static site use `awestruct generate`.
13
+
14
+ ## For more information
4
15
 
5
16
  Please see the complete site at <http://awestruct.org/>.
6
17
 
7
- # License
18
+ ## License
8
19
 
9
20
  Copyright (c) 2010-2014 Bob McWhirter and contributors (see git log)
10
21
 
@@ -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 = '2020-01-12'
7
+ s.date = '2020-02-20'
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']
@@ -42,8 +42,7 @@ asciidoctor:
42
42
  textile:
43
43
  :no_span_caps: true
44
44
 
45
- generation:
46
- :in_threads: <%= Parallel.processor_count * 10 %>
45
+ generation: {}
47
46
 
48
47
  profiles:
49
48
  development:
@@ -21,11 +21,11 @@ module Awestruct
21
21
  end
22
22
 
23
23
  def simple_name
24
- File.basename( relative_source_path, '.js' )
24
+ File.basename( relative_source_path || path, '.js' )
25
25
  end
26
26
 
27
27
  def output_filename
28
- File.basename( relative_source_path )
28
+ File.basename( relative_source_path || path)
29
29
  end
30
30
 
31
31
  def output_extension
@@ -21,7 +21,7 @@ module Awestruct
21
21
  end
22
22
 
23
23
  def simple_name
24
- File.basename( relative_source_path, '.redirect' )
24
+ File.basename( relative_source_path || path, '.redirect' )
25
25
  end
26
26
 
27
27
  def output_filename
@@ -1,3 +1,3 @@
1
1
  module Awestruct
2
- VERSION = '0.6.0.alpha4'
2
+ VERSION = '0.6.0'
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.alpha4
4
+ version: 0.6.0
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: 2020-01-12 00:00:00.000000000 Z
16
+ date: 2020-02-20 00:00:00.000000000 Z
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
19
19
  name: haml
@@ -619,15 +619,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
619
619
  version: 2.4.0
620
620
  required_rubygems_version: !ruby/object:Gem::Requirement
621
621
  requirements:
622
- - - ">"
622
+ - - ">="
623
623
  - !ruby/object:Gem::Version
624
- version: 1.3.1
624
+ version: '0'
625
625
  requirements:
626
626
  - |
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
- rubygems_version: 3.0.1
630
+ rubyforge_project: awestruct
631
+ rubygems_version: 2.6.1
631
632
  signing_key:
632
633
  specification_version: 4
633
634
  summary: Static site baking and publishing tool