techbook 0.1.1 → 0.1.2
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/Gemfile.lock +1 -1
- data/LICENSE +20 -0
- data/lib/techbook/builder.rb +1 -1
- data/lib/techbook/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e1d2047c6a4d4c0f9a7347f853b4396fa4994e190f347837d9148b177fa29af
|
4
|
+
data.tar.gz: 7c8f8c1dc85bafdb364fa4bbb7bac8fc3785a92ce118e8d5884fbdb07a3c5424
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2392d7aec4e6fb498cea5ec90d8ff26e368002045418168e6dc97104fb7ae34adbfad6600f42a367daa5a18a30139b858b14617518a7de42e027feefd4499ea8
|
7
|
+
data.tar.gz: 5db6e39b89817e33f38430a666c6d461e42c0d5648b7af3e7fa8469198615d2c67226ec0547c060e50a4d10153b39e1d879c1c6724f40f5e4d00502d2fdfb3b4
|
data/Gemfile.lock
CHANGED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2019 Felipe Fontoura
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/lib/techbook/builder.rb
CHANGED
@@ -77,7 +77,7 @@ module Techbook
|
|
77
77
|
line =~ /include::/
|
78
78
|
}.join
|
79
79
|
|
80
|
-
Dir.glob(File.join(@output, "book", "*.asc")).each do |file|
|
80
|
+
Dir.glob(File.join(@output, "book", "*.asc")).sort.each do |file|
|
81
81
|
next unless file =~ /[0-9]+\-/
|
82
82
|
content << "include::#{File.basename(file)}[]\n"
|
83
83
|
end
|
data/lib/techbook/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: techbook
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felipe Fontoura
|
@@ -215,6 +215,7 @@ files:
|
|
215
215
|
- ".travis.yml"
|
216
216
|
- Gemfile
|
217
217
|
- Gemfile.lock
|
218
|
+
- LICENSE
|
218
219
|
- README.md
|
219
220
|
- Rakefile
|
220
221
|
- TODO.md
|