FooBarWidget-mizuho 0.9.0 → 0.9.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.
- data/README.markdown +2 -9
- data/bin/mizuho +6 -2
- data/mizuho.gemspec +1 -1
- metadata +1 -1
data/README.markdown
CHANGED
@@ -33,16 +33,9 @@ multi-page XHTML output support and support for multiple templates.
|
|
33
33
|
|
34
34
|
## Installation
|
35
35
|
|
36
|
-
|
37
|
-
Extract it, then run:
|
36
|
+
Run the following command as root:
|
38
37
|
|
39
|
-
|
40
|
-
gem install mizuho-x.x.x.gem
|
41
|
-
|
42
|
-
where 'x.x.x' is the version number.
|
43
|
-
|
44
|
-
Do **not** use Github's autogenerated gem, because Github's gem creation
|
45
|
-
service has a bug which causes binaries inside gems to become non-functional.
|
38
|
+
gem install FooBarWidget-mizuho
|
46
39
|
|
47
40
|
## Usage
|
48
41
|
|
data/bin/mizuho
CHANGED
@@ -32,8 +32,12 @@ rescue OptionParser::ParseError => e
|
|
32
32
|
end
|
33
33
|
|
34
34
|
begin
|
35
|
-
|
36
|
-
|
35
|
+
if ARGV.empty?
|
36
|
+
puts parser
|
37
|
+
else
|
38
|
+
Mizuho::Generator.new(ARGV[0], nil, options[:template],
|
39
|
+
options[:multi_page], options[:icons_dir]).start
|
40
|
+
end
|
37
41
|
rescue Mizuho::GenerationError
|
38
42
|
STDERR.puts "*** ERROR"
|
39
43
|
exit 2
|
data/mizuho.gemspec
CHANGED