ascii_binder 0.1.10 → 0.1.10.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/lib/ascii_binder/tasks/tasks.rb +4 -0
- data/lib/ascii_binder/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: 573a914798340c84685a541fa8036638cad63027
|
4
|
+
data.tar.gz: cb0c5112da014876490d784e0e747210c705e7e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d3b52afcc321cfbf5bfa77b053d4a6b815540856c15c61e1738877ff56980dfa0a203c7136059f82e81ce6820ab308faf0e4b1107ea04446f43bb631f36f5ef
|
7
|
+
data.tar.gz: c93efa1972a444dc50a87e84801d9fcf606f2578932b3ce6e0697a70daadcb7e1ce3976607501ea81e606a219b0c953bf4d682dd6330b5b7ccbbda8e0a75e8ca
|
@@ -1,18 +1,21 @@
|
|
1
1
|
require 'rake'
|
2
2
|
require 'ascii_binder'
|
3
3
|
|
4
|
+
include AsciiBinder::Engine
|
4
5
|
include AsciiBinder::Helpers
|
5
6
|
|
6
7
|
desc "Build the documentation"
|
7
8
|
task :build, :build_distro do |task,args|
|
8
9
|
# Figure out which distros we are building.
|
9
10
|
# A blank value here == all distros
|
11
|
+
set_docs_root_dir(git_root_dir)
|
10
12
|
build_distro = args[:build_distro] || ''
|
11
13
|
generate_docs(:all,build_distro,nil)
|
12
14
|
end
|
13
15
|
|
14
16
|
desc "Package the documentation"
|
15
17
|
task :package, :package_site do |task,args|
|
18
|
+
set_docs_root_dir(git_root_dir)
|
16
19
|
package_site = args[:package_site] || ''
|
17
20
|
Rake::Task["clean"].invoke
|
18
21
|
Rake::Task["build"].invoke
|
@@ -21,6 +24,7 @@ end
|
|
21
24
|
|
22
25
|
desc "Build the documentation and refresh the page"
|
23
26
|
task :refresh_page, :single_page do |task,args|
|
27
|
+
set_docs_root_dir(git_root_dir)
|
24
28
|
generate_docs(:working_only,'',args[:single_page])
|
25
29
|
end
|
26
30
|
|
data/lib/ascii_binder/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ascii_binder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.10
|
4
|
+
version: 0.1.10.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- N. Harrison Ripps
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-07-
|
12
|
+
date: 2017-07-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|