bookwatch 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bookwatch.gemspec +1 -1
- data/lib/bookwatch/cli.rb +1 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c79875c6186342e4fa5776b2fd70ed1a3e922f5e
|
4
|
+
data.tar.gz: bbc6f9f116ff012887e6be88abf1c0d690881018
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40d267e10f612833a34e1dcadeece6889d33823e01a42cca5bdf26d62adb8a148c79b283847b13995deabeee00d6380f89e88cd599d2ea830b97f9c01e9fa90d
|
7
|
+
data.tar.gz: 096bf997e6b02489ba8fdf2f1f404c26ed23e9d527433ce628ec24856cad0ec1188345bada29d3a0d1b29c9712491333c215381afd2e632a4fcedff347323b58
|
data/bookwatch.gemspec
CHANGED
@@ -2,7 +2,7 @@ require 'base64'
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = 'bookwatch'
|
5
|
-
s.version = '1.0.
|
5
|
+
s.version = '1.0.1'
|
6
6
|
s.summary = 'Bookbinder with everything disabled except the watch function'
|
7
7
|
s.description = 'A command line utility to be run in Book repositories to stitch together their constituent Markdown repos into a temporary static-HTML-serving application'
|
8
8
|
s.authors = ['Mike Grafton', 'Lucas Marks', 'Gavin Morgan', 'Nikhil Gajwani', 'Dan Wendorf', 'Brenda Chan', 'Matthew Boedicker', 'Andrew Bruce', 'Frank Kotsianas', 'Elena Sharma', 'Christa Hartsock', 'Michael Trestman', 'Alpha Chen', 'Sarah McAlear', 'Gregg Van Hove']
|
data/lib/bookwatch/cli.rb
CHANGED
@@ -74,6 +74,7 @@ This will exclude any repositories not specified from being available in the bou
|
|
74
74
|
code = legacy_commands.imprint(source, options[:verbose], options['dita-flags'])
|
75
75
|
raise Thor::Error, '' if code != 0
|
76
76
|
end
|
77
|
+
=end
|
77
78
|
|
78
79
|
def method_missing(command, *args)
|
79
80
|
puts "Unknown command '#{command}'"
|
@@ -103,7 +104,5 @@ This will exclude any repositories not specified from being available in the bou
|
|
103
104
|
warn: Streams::ColorizedStream.new(Colorizer::Colors.yellow, $stdout),
|
104
105
|
}
|
105
106
|
end
|
106
|
-
=end
|
107
|
-
|
108
107
|
end
|
109
108
|
end
|