kramdown-asciidoc 1.0.0 → 1.0.1

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
  SHA256:
3
- metadata.gz: b9e3b18f4837c8739d81fce5fb674ced60b8c3708a5e5ddfa9895c90d2318fe3
4
- data.tar.gz: d86f257533132bc3a4f2b973e5fd503a9934d83308db75672c8d6947948c902e
3
+ metadata.gz: '09c0b0e16b5172881df4562790955bbf9190896c06799771984c8321c354d0c5'
4
+ data.tar.gz: 743892819a4038df506dee680b7db7f4281e16d6d372f48687114d1db3b03c97
5
5
  SHA512:
6
- metadata.gz: b00c3a853eaaacbc611905d7e3cacda53864a074017176b3a3eebe5ee41c59b7ee898298f62e18721c54e0930e71c7e037404c2b681c712b65065f429c5483f1
7
- data.tar.gz: 2fb34cf6bf03a7578a3ee31fe293ae5dd7e911753cf30998132ee9f2872f96c673213ae621a68c5cde1afc15591b3db3feaf34b24938b07b972f1ed549d1a0d7
6
+ metadata.gz: 563fa683d2ca20b038abe5ae8b22986c21ce073240dedefb955b8a7f4c0ab5343914f2cf8529deeefcffc11455c0bc97c7f1b9306519411101c19caac47daf55
7
+ data.tar.gz: 90569c98b2ff2390c161bee4d3efa678528b3e6b7f7598834923ee369d4f3a2c3829c36bf4b1491be574bb0d4b4a884b113a04df0206ba5693e11012ad422ee9
@@ -5,6 +5,16 @@
5
5
  This document provides a high-level view of the changes to {project-name} by release.
6
6
  For a detailed view of what has changed, refer to the {uri-repo}/commits/master[commit history] on GitHub.
7
7
 
8
+ == 1.0.1 (2018-11-28) - @mojavelinux
9
+
10
+ === Fixed
11
+
12
+ * Fixed bin script on Ruby 2.3 (#70)
13
+
14
+ === Details
15
+
16
+ {uri-repo}/releases/tag/v1.0.1[git tag] | {uri-repo}/compare/v1.0.0\...v1.0.1[full diff]
17
+
8
18
  == 1.0.0 (2018-11-07) - @mojavelinux
9
19
 
10
20
  === Changed
@@ -1,6 +1,6 @@
1
1
  = {project-name} (Markdown to AsciiDoc)
2
2
  Dan Allen <https://github.com/mojavelinux>
3
- v1.0.0, 2018-11-07
3
+ v1.0.1, 2018-11-28
4
4
  // Aliases:
5
5
  :project-name: Kramdown AsciiDoc
6
6
  :project-handle: kramdown-asciidoc
@@ -45,7 +45,7 @@ Notably, the converter generates modern AsciiDoc syntax suitable for use with {u
45
45
  == Prerequisites
46
46
 
47
47
  To install and run {project-name}, you need Ruby 2.3 or better installed and a few RubyGems (aka gems).
48
- We'll explain how to install the gems in the next section.
48
+ The instructions for installing the gems is covered in the next section.
49
49
 
50
50
  To check whether you have Ruby installed, and which version, run the following command:
51
51
 
@@ -56,11 +56,11 @@ We generally recommend using RVM because it allows you to install gems without r
56
56
 
57
57
  == Installation
58
58
 
59
- {project-name} is published to RubyGems.org as a pre-release gem named *{project-handle}*.
59
+ {project-name} is published to RubyGems.org as a gem named *{project-handle}*.
60
60
 
61
- You can install the pre-release version using the following command:
61
+ You can install the latest version of the gem using the following command:
62
62
 
63
- $ gem install kramdown-asciidoc --pre
63
+ $ gem install kramdown-asciidoc
64
64
 
65
65
  Installing this gem makes the `kramdoc` command available on your $PATH.
66
66
 
@@ -1,6 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- if File.exist? (kramdown_asciidoc = File.absolute_path '../lib/kramdown-asciidoc', __dir__)
3
+ kramdown_asciidoc = File.absolute_path '../lib/kramdown-asciidoc', __dir__
4
+ if File.exist? kramdown_asciidoc
4
5
  require kramdown_asciidoc
5
6
  else
6
7
  require 'kramdown-asciidoc'
@@ -1,3 +1,3 @@
1
1
  module Kramdown; module AsciiDoc
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end; end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kramdown-asciidoc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Allen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-11-07 00:00:00.000000000 Z
11
+ date: 2018-11-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: kramdown