I’ve released Whisper 0.3. This is mostly a bugfix release, with generally
better email support, including support for MIME multipart email.
How to do it:
sudo gem install whisper --source http://masanjin.net/
whisper-init <blog directory>
- Follow the instructions!
I’ve released a version dd706855 of git-wtf, available here:
http://git-wt-commit.rubyforge.org/git-wtf
I’ve tweaked the output format so that branches that don’t exist
on the remote server are displayed with ()‘s and those that do
with []’s, and ~ is the new symbol for a merge that only occurs
on the local side.
I think this produces a better display; lots more information
per line of ourput.
I’ve also added a couple random options which you can discover by
reading the source. :)
The big next step I’d like to take with this thing is to support
multiple remote repos better. Currently it’s kinda specific to your
origin repo.
I’ve released Whisper 0.2. Beyond some minor
bugfixes, the big enhancement in this one is that the “post as micro mailing
list” idea now works. The comments on every post form a mailing list, with
everyone who commented auto-receiving everyone else’s comments, and all replies
being archived on the mailing list.
Of course you can set your reply settings on a per-comment basis to disable
this, or to restrict it to only send immediate replies to your comment. The
only thing you can’t do so far is change your settings (e.g. from all to none)
once you’ve made them. That will be coming later.
Still to go: trackbacks, I guess, and maaaaybe add textarea comments.
Get it: sudo gem install whisper --source http://masanjin.net/
I’ve released Whisper 0.1. Now you can blog like
me. It will happily serve static files, though if you’re expecting heavy
traffic, you might put it behind something like Nginx. (See instructions in the
configuration file for more.)
How to do it:
sudo gem install whisper --source http://masanjin.net/
whisper-init <blog directory>
- Follow the instructions!
Trollop 1.11 has been released. This is a minor release with only one new feature: when an option <opt> is actually given on the commandline, a new key <opt>_given is inserted into the return hash (in addition to <opt> being set to the actual argument(s) specified).
This allows you to detect which options were actually specified on the commandline. This is necessary for situations where you want one option to override or somehow influence other options. For example, configure’s --exec-prefix and --bindir flags: if --exec-prefix is specified, you want to override the default value for --bindir, unless that’s also given. If neither are given, you want to use the default values.
This should be a backwards-compatible release, except for namespace issues, if you actually had options called <something>-given.
I released a new version of Trollop with a
couple minor but cool updates.
The best part is the new :io argument type, which uses open-uri to handle
filenames and URIs on the commandline. So you can do something like this:
require 'trollop'
opts = Trollop::options do
opt :source, "Source file (or URI) to print",
:type => :io,
:required => true
end
opts[:source].each { |l| puts "> #{l.chomp}" }
Also, when trying to detect the terminal size, Trollop now tries to `stty
size` before loading curses. This gives better results when running under
screen (for some reason curses clears the terminal when initializing under
screen).
I’ve also cleaned up the documentation quite a bit, expanding the examples on
the main page, fixing up the RDoc comments, and
generating the RDoc documentation with
a modern RDoc, so that things like constants actually get documented.
If you’re still using OptParse, you should really give Trollop a try. I
guarantee you’ll write much fewer lines of argument parsing code, and you’ll
get all sorts of nifty features like help page terminal size detection.
Trollop 1.8.1 is out. This is a minor bugfix
release, but 1.8, released a few weeks ago but not really advertised, adds new
functionality, so I’m describing that here.
The new functionality is subcommand support, as seen in things like git and
svn. This feature is actually trivial to use / implement: you give Trollop a
list of stopwords. When it sees one, it stops parsing. The end. That’s all you
need.
Here’s how you use it:
- Call
Trollop::options with your global option specs. Pass it the list of subcommands as the stopwords. It will parse ARGV and stop on the subcommand.
- Parse the next word in ARGV as the subcommand, however you wish.
ARGV.shift is the traditional choice.
- Call
Trollop::options again with whatever command-specific options you want.
And that’s it. Simple eh?
It continually amazes me how hard other people make option parsing. I think
it’s a holdover from their days of using C or Java. Take a look at synopsis for
optparse
— it’s a ridiculous amount of work for something simple. Or better yet, look at
the synopsis for CmdParse. Having
to make a class for each command is a clunky Java-ism. I’m sorry, but it’s
true. Subclassing is the one option for specializing code in Java; in Ruby we
can be far more sophisticated. Take a look at
Ditz’s
operator.rb
for an example of a subcommand DSL.