md2conf 0.2.0 → 0.2.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 +4 -4
- data/CHANGELOG.md +4 -1
- data/lib/md2conf.rb +1 -1
- data/lib/md2conf/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0f4ef4875e0ebf0de39c272cddeefbcb941934dc
|
|
4
|
+
data.tar.gz: 9874b36255db0b75bbde30df9f0575dca177d91a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: afea23bd30ff26b3810191a8838f96753140bd71fbda52aa212288589c0529e32453b96c9f89c7470226cb24952c0d083cfb7c31251322deaf446a0b510cd0b1
|
|
7
|
+
data.tar.gz: ba5fe303ece6ce18b0d6f6013c1ed974d277134297f6da7f486f8542c72705c9485a7439e8fc226728b08c30b6e89730aa81a6f9d29257cc99c5e19ac80a5005
|
data/CHANGELOG.md
CHANGED
|
@@ -4,12 +4,15 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.2.1] - 2017-08-30
|
|
8
|
+
### Fixed
|
|
9
|
+
- Fixed an off-by-one bug in `process_macros()` method.
|
|
10
|
+
|
|
7
11
|
## [0.2.0] - 2017-08-29
|
|
8
12
|
### Added
|
|
9
13
|
- Macro support. Any macro can be specified in the form of `{MACRO:ARGUMENT}` inside your Markdown files.
|
|
10
14
|
Check out the updated README for more info.
|
|
11
15
|
|
|
12
|
-
|
|
13
16
|
## [0.1.2] - 2017-08-21
|
|
14
17
|
### Changed
|
|
15
18
|
- Updated documentation.
|
data/lib/md2conf.rb
CHANGED
|
@@ -52,7 +52,7 @@ module Md2conf
|
|
|
52
52
|
|
|
53
53
|
since_last_match = @html[last_position..Regexp.last_match.begin(0) - 1]
|
|
54
54
|
html_new << "#{since_last_match}#{confluence_code}"
|
|
55
|
-
last_position = Regexp.last_match.end(1)
|
|
55
|
+
last_position = Regexp.last_match.end(1) + 1
|
|
56
56
|
end
|
|
57
57
|
|
|
58
58
|
# Did we have at least one match?
|
data/lib/md2conf/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: md2conf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eugene Piven
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2017-08-
|
|
12
|
+
date: 2017-08-30 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|