Skip to content

Commit

Permalink
Regenerated gemspec for version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cldwalker committed Oct 15, 2009
1 parent b475915 commit da2f76b
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions boson.gemspec
Expand Up @@ -2,11 +2,11 @@

Gem::Specification.new do |s|
s.name = %q{boson}
s.version = "0.0.1"
s.version = "0.1.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Gabriel Horner"]
s.date = %q{2009-10-06}
s.date = %q{2009-10-14}
s.default_executable = %q{boson}
s.description = %q{A command/task framework similar to rake and thor that opens your ruby universe to the commandline and irb.}
s.email = %q{gabriel.horner@gmail.com}
Expand Down Expand Up @@ -43,15 +43,14 @@ Gem::Specification.new do |s|
"lib/boson/repo.rb",
"lib/boson/runner.rb",
"lib/boson/runners/bin_runner.rb",
"lib/boson/runners/repl_runner.rb",
"lib/boson/runners/console_runner.rb",
"lib/boson/scientist.rb",
"lib/boson/util.rb",
"lib/boson/view.rb",
"test/argument_inspector_test.rb",
"test/bin_runner_test.rb",
"test/commands_test.rb",
"test/comment_inspector_test.rb",
"test/config/index.marshal",
"test/file_library_test.rb",
"test/index_test.rb",
"test/loader_test.rb",
Expand All @@ -68,7 +67,7 @@ Gem::Specification.new do |s|
s.require_paths = ["lib"]
s.rubyforge_project = %q{tagaholic}
s.rubygems_version = %q{1.3.5}
s.summary = %q{Although similar to rake and thor, it's focus is not on per-project tasks. Rather it 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.summary = %q{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.test_files = [
"test/argument_inspector_test.rb",
"test/bin_runner_test.rb",
Expand All @@ -91,14 +90,14 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<hirb>, [">= 0.2.6"])
s.add_runtime_dependency(%q<hirb>, [">= 0.2.7"])
s.add_runtime_dependency(%q<alias>, [">= 0.2.1"])
else
s.add_dependency(%q<hirb>, [">= 0.2.6"])
s.add_dependency(%q<hirb>, [">= 0.2.7"])
s.add_dependency(%q<alias>, [">= 0.2.1"])
end
else
s.add_dependency(%q<hirb>, [">= 0.2.6"])
s.add_dependency(%q<hirb>, [">= 0.2.7"])
s.add_dependency(%q<alias>, [">= 0.2.1"])
end
end

0 comments on commit da2f76b

Please sign in to comment.