gimli 0.5.8 → 0.5.9

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: be15424f7d4706aa0106617cab3fea3ce8f90d99
4
- data.tar.gz: 10523e7b8469b0e592f6cdbbc2e6583447614308
3
+ metadata.gz: 745aff7824afe2baa8df9ad61964390a45565f88
4
+ data.tar.gz: 5615bd88c9ec48c9bc0d4f39ebfe7bd16dc080e1
5
5
  SHA512:
6
- metadata.gz: 03866795ba9dbd186d036596aa32884d3be43ce8ce1fa32286e7528edf042c8bb1f6e57999ab1bb49dab14b802d50ad13e2c456bae31e800508317f5297fb3be
7
- data.tar.gz: bdb5b127a5aee60e027ed06814e2c0a924e9d29074b76712eeb6e519842ad9b4084fe3bcec573a3aac506c7a0582f668f2055c2e9ff55c3733a52f7e2f143129
6
+ metadata.gz: 469693e533fc1aad077030634f6ca197255155ce3e086dc3dda6d689d7c1f386417d16e2774f9b9c1fe2fc934bf662dc1539fce96d3f2f294a9e1f1c96b03a0b
7
+ data.tar.gz: 65f84c7f0f68f814a949d72983ee821b23eab0d120e975e4313f5f31256f39462dfbf0aef9fa2ae21629bcb32a2083147866983f70404ba4a88e46ef244f2db9
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.5.9
4
+
5
+ * Add sort on files in path to ensure the alphabetical order is maintained.
6
+
7
+ ## 0.5.8
8
+
9
+ * Use a tempfile for the cover option. Fixes bug where using system ruby on
10
+ OSX gets write error.
11
+
3
12
  ## 0.5.5
4
13
 
5
14
  * Add --cover option for creating cover with markdown file https://github.com/walle/gimli/pull/48 Thanks @k0kubun
@@ -23,7 +23,7 @@ module Gimli
23
23
  end
24
24
 
25
25
  # Use select to support ruby 1.8
26
- Dir.glob(target).select { |file| MarkupFile.new(file).valid? }
26
+ Dir.glob(target).sort().select { |file| MarkupFile.new(file).valid? }
27
27
  end
28
28
  end
29
29
  end
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module Gimli
4
- VERSION = "0.5.8"
4
+ VERSION = "0.5.9"
5
5
  end
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gimli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.8
4
+ version: 0.5.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fredrik Wallgren