Skip to content

Commit

Permalink
minor updates, version bumb
Browse files Browse the repository at this point in the history
  • Loading branch information
rkh committed Dec 5, 2009
1 parent 17d62db commit 9e0a81d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions big_band.gemspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
SPEC = Gem::Specification.new do |s|

s.name = "big_band"
s.version = "0.1.0"
s.date = "2009-11-01"
s.version = "0.1.1"
s.date = "2009-12-05"
s.author = "Konstantin Haase"
s.email = "konstantin.mailinglists@googlemail.com"
s.homepage = "http://github.com/rkh/big_band"
s.platform = Gem::Platform::RUBY
s.summary = "Collection of Sinatra extensions and sinatra integration for common tools like Rake, YARD and Monk."
s.files = Dir.glob "{{lib,spec}/**/*,*.{rdoc,erb,gemspec},Rakefile},LICENSE"
s.files = Dir.glob("**/*").reject { |f| File.basename(f)[0] == ?. }
s.require_paths = ['lib']
s.has_rdoc = true
s.rdoc_options = %w[--all --inline-source --line-numbers --main README.rdoc --quiet
Expand Down
2 changes: 1 addition & 1 deletion lib/big_band.rb
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def self.load_extensions(klass, *extensions)
#
# BigBand.module_for :BasicExtension # => BigBand::BasicExtension
# BigBand.module_for Array # => Array
# BigBand.module_for "Foo::Bar" # => BigBand::Foo::Bar or Foo::Bar or an exception
# BigBand.module_for "Foo::Bar" # => BigBand::Foo::Bar or Foo::Bar or raises an exception
def self.module_for(extension)
case extension
when Module then extension
Expand Down

0 comments on commit 9e0a81d

Please sign in to comment.