hamdown_core 0.5.0 → 0.5.1

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: e05ef2445d2b8875491017044b7aa87709acdcb21b0619bbe910a295f8aaab60
4
- data.tar.gz: f8566ec12c1528f18954edb1c79543f2ab14612dff03b8900d7028b28b5aed30
3
+ metadata.gz: 1e09fb9def3ca4225b54b91fdf00fd78deb1c89c0b066e3a70c97e31e99a0c91
4
+ data.tar.gz: 902d448c467dc0978c588a6d847a2a4ff8644f6dd8ec66e0a9950c2bdd22dcaf
5
5
  SHA512:
6
- metadata.gz: 35e443dbd8f08998e93a8f841f7cffe5018e870a2119a2deb331aaf852ad810fabcf00495f0c9136f505a8469c55bf0bd529b8d78e6e230918fa7052f7e1f117
7
- data.tar.gz: 431270f106290e9510ec2aae0ce31193d3a05a63309be4e8378211edfa5e24e7c28485534d4fa39a5d725c6083e4809de8231ae309e5700ed34753a7452e493a
6
+ metadata.gz: ce384aa4492c9ccffddbaae57dedc083557a8e33511ac548211d6187e832966d41ac3e67c3c077b37d98cd2e412c4d7d2798dfdaccc3f1415048f5c6e93b1cf4
7
+ data.tar.gz: 87877b212812dfa8b235de83bf7dec76613fe65a7e26db7c02b7b67b93cdc22a3b30a7d44b91f04f71936b14fccfaf00cb24ae97489f967cdfb7dabef8ac7746
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- hamdown_core (0.5.0)
4
+ hamdown_core (0.5.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -8,7 +8,7 @@ module HamdownCore
8
8
  def self.call(content)
9
9
  ast = HamdownCore::Parser.new.call(content)
10
10
  transformed_ast = HamdownCore::Transformer.call(ast)
11
- puts HamdownCore::Compiler.call(transformed_ast)
11
+ HamdownCore::Compiler.call(transformed_ast)
12
12
  end
13
13
  end
14
14
  end
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module HamdownCore
3
- VERSION = '0.5.0'
3
+ VERSION = '0.5.1'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hamdown_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kohei Suzuki
@@ -215,7 +215,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
215
215
  version: '0'
216
216
  requirements: []
217
217
  rubyforge_project:
218
- rubygems_version: 2.7.6
218
+ rubygems_version: 2.7.3
219
219
  signing_key:
220
220
  specification_version: 2
221
221
  summary: Parser of Hamlit template language