Skip to content

Commit

Permalink
Updated gemspec + readme
Browse files Browse the repository at this point in the history
  • Loading branch information
cldwalker committed Aug 13, 2010
1 parent 74c1dc1 commit d4e09fe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gemspec
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|
s.email = "gabriel.horner@gmail.com"
s.homepage = "http://tagaholic.me/boson/"
s.summary = "A command/task framework similar to rake and thor that opens your ruby universe to the commandline and irb."
s.description = "Boson provides users with the power to turn any ruby method into a full-fledged commandline tool. Boson achieves this with powerful options (borrowed from thor) and views (thanks to hirb). Some other unique features that differentiate it from rake and thor include being accessible from irb and the commandline, being able to write boson commands in non-dsl ruby and toggling a pretty view of a command's output without additional view code."
s.description = "Boson is a command/task framework with the power to turn any ruby method into a full-fledged executable with options. Some unique features that differentiate it from rake and thor include being usable from irb and the commandline, optional automated views generated by hirb and allowing libraries to be written as plain ruby. For my libraries that use this, see irbfiles. Works with all major ruby versions."
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = 'tagaholic'
s.executables = ['boson']
Expand Down
8 changes: 5 additions & 3 deletions README.rdoc
@@ -1,9 +1,11 @@
To read a linkable version of this README, {see here}[http://tagaholic.me/boson/doc/].

== Description
A command/task framework similar to rake and thor that opens your ruby universe to the commandline
and irb. For my libraries that use this, see {irbfiles}[http://github.com/cldwalker/irbfiles].
Works with all major ruby versions.
Boson is a command/task framework with the power to turn any ruby method into a full-fledged
executable with options. Some unique features that differentiate it from rake and thor include
being usable from irb and the commandline, optional automated views generated by hirb and allowing
libraries to be written as plain ruby. For my libraries that use this, see
{irbfiles}[http://github.com/cldwalker/irbfiles]. Works with all major ruby versions.

== Features
* Simple organization: Commands are just methods on an object (default is main) and command libraries are just modules.
Expand Down

0 comments on commit d4e09fe

Please sign in to comment.