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.
Files changed (4) hide show
  1. data/README.markdown +2 -9
  2. data/bin/mizuho +6 -2
  3. data/mizuho.gemspec +1 -1
  4. 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
- Download the source tarball from [Mizuho's Github page](http://github.com/FooBarWidget/mizuho/tree/master).
37
- Extract it, then run:
36
+ Run the following command as root:
38
37
 
39
- gem build mizuho.gemspec
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
- Mizuho::Generator.new(ARGV[0], nil, options[:template],
36
- options[:multi_page], options[:icons_dir]).start
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
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "mizuho"
3
- s.version = "0.9.0"
3
+ s.version = "0.9.1"
4
4
  s.date = "2008-07-21"
5
5
  s.summary = "Mizuho documentation formatting tool"
6
6
  s.email = "hongli@phusion.nl"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: FooBarWidget-mizuho
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hongli Lai