brandish 0.1.2 → 0.1.3

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: 624d58ffc2df91d83cf8d67062bce92f49c58ce7
4
- data.tar.gz: ba4f99409ef3c9c183cd4c07db15e672e3f42782
3
+ metadata.gz: f55362649b4fb428e46783b01a04bf807620f62a
4
+ data.tar.gz: 8205c7c149af5f6343fe6cda9be6b49f72374cd8
5
5
  SHA512:
6
- metadata.gz: '06548ff9c253b35c4e8b97a3fe91f9bfe45e2de08b7fb4398a2912809ca655409c695a67e46a25d5f41d6c3b0e9b7d6aff751e3feb5d34bc61958d85faff90ae'
7
- data.tar.gz: 01632b7c6a40f8765b851aa5a0e9565f6562f429365d7fbf7f84a57ba1cc48f3ee2729d0c4f676ac54ae86e99b76b8dee2075880bc3c368bf8e26a00cd027fe2
6
+ metadata.gz: 053a77f4f7bea5ca0e0d2cf3902351dc4a379e90990f07810f2de2e956ad1bae514e2bad7fc1c64005cd951681fe82fee84d500646487d571d840b181511d58b
7
+ data.tar.gz: c475b775a381a3c55b4d27a7a3a6303937bcf8b130e80ae3ea0c5c7345260217513fa0fcb4ce1c928ff30f894854bddeb8e5a36682b94dc91745efd4c8e2eb08
@@ -4,6 +4,7 @@
4
4
  require "brandish/processor/base"
5
5
  require "brandish/processor/context"
6
6
  require "brandish/processor/name_filter"
7
+ require "brandish/processor/pair_filter"
7
8
  require "brandish/processor/block"
8
9
  require "brandish/processor/command"
9
10
  require "brandish/processor/descend"
@@ -14,7 +14,7 @@ module Brandish
14
14
  # @return [void]
15
15
  def self.included(base)
16
16
  base.include Processor::NameFilter
17
- base.include Processor::Pairfilter
17
+ base.include Processor::PairFilter
18
18
  end
19
19
 
20
20
  # Processes the block. If the node's name doesn't match the name for
@@ -42,9 +42,7 @@ module Brandish
42
42
  allowed_names.merge(Array(names).flatten.map(&:to_s))
43
43
  end
44
44
 
45
- alias_method :name, :names
46
45
  alias_method :names=, :names
47
- alias_method :name=, :names
48
46
  end
49
47
 
50
48
  # The instance methods on the including class.
@@ -1,11 +1,11 @@
1
1
  # encoding: utf-8
2
2
  # frozen_string_literal: true
3
3
 
4
+ require "brandish/processors/common/asset"
4
5
  require "brandish/processors/common/group"
5
6
  require "brandish/processors/common/header"
6
7
  require "brandish/processors/common/markup"
7
8
  require "brandish/processors/common/output"
8
- require "brandish/processors/common/style"
9
9
 
10
10
  module Brandish
11
11
  module Processors
@@ -1,7 +1,7 @@
1
1
  # encoding: utf-8
2
2
  # frozen_string_literal: true
3
3
 
4
- require "mustache"
4
+ require "liquid"
5
5
  require "brandish/processors/html/output/document"
6
6
 
7
7
  module Brandish
@@ -5,5 +5,5 @@ module Brandish
5
5
  # The running version of Brandish.
6
6
  #
7
7
  # @return [::String]
8
- VERSION = "0.1.2"
8
+ VERSION = "0.1.3"
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brandish
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Rodi