Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
update gemspec for 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rsanheim committed Dec 6, 2010
1 parent 36155c0 commit b00a600
Showing 1 changed file with 30 additions and 31 deletions.
61 changes: 30 additions & 31 deletions log_buddy.gemspec
@@ -1,66 +1,65 @@
# Generated by jeweler # Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY # DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{log_buddy} s.name = %q{log_buddy}
s.version = "0.5.1" s.version = "0.6.0"


s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Rob Sanheim"] s.authors = ["Rob Sanheim"]
s.date = %q{2010-05-28} s.date = %q{2010-12-06}
s.description = %q{Log statements along with their name easily. Mixin a logger everywhere when you need it.} s.description = %q{Log statements along with their name easily. Mixin a logger everywhere when you need it.}
s.email = %q{rsanheim@gmail.com} s.email = %q{rsanheim@gmail.com}
s.extra_rdoc_files = [ s.extra_rdoc_files = [
"LICENSE", "LICENSE",
"README.markdown" "README.markdown"
] ]
s.files = [ s.files = [
".gitignore", ".rvmrc",
".treasure_map.rb", ".treasure_map.rb",
"CHANGELOG", "CHANGELOG",
"LICENSE", "LICENSE",
"README.markdown", "README.markdown",
"Rakefile", "Rakefile",
"examples.rb", "examples.rb",
"init.rb", "init.rb",
"lib/log_buddy.rb", "lib/log_buddy.rb",
"lib/log_buddy/mixin.rb", "lib/log_buddy/mixin.rb",
"lib/log_buddy/utils.rb", "lib/log_buddy/utils.rb",
"lib/log_buddy/version.rb", "lib/log_buddy/version.rb",
"log_buddy.gemspec", "log_buddy.gemspec",
"spec/log_buddy/log_buddy_init_spec.rb", "spec/log_buddy/log_buddy_init_spec.rb",
"spec/log_buddy/log_buddy_spec.rb", "spec/log_buddy/log_buddy_spec.rb",
"spec/log_buddy/log_spec.rb", "spec/log_buddy/log_spec.rb",
"spec/log_buddy/spec_helper.rb" "spec/log_buddy/spec_helper.rb"
] ]
s.homepage = %q{http://github.com/relevance/log_buddy} s.homepage = %q{http://github.com/relevance/log_buddy}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"] s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7} s.rubygems_version = %q{1.3.7}
s.summary = %q{Log Buddy is your little development buddy.} s.summary = %q{Log Buddy is your little development buddy.}
s.test_files = [ s.test_files = [
"spec/log_buddy/log_buddy_init_spec.rb", "spec/log_buddy/log_buddy_init_spec.rb",
"spec/log_buddy/log_buddy_spec.rb", "spec/log_buddy/log_buddy_spec.rb",
"spec/log_buddy/log_spec.rb", "spec/log_buddy/log_spec.rb",
"spec/log_buddy/spec_helper.rb" "spec/log_buddy/spec_helper.rb"
] ]


if s.respond_to? :specification_version then if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3 s.specification_version = 3


if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, ["~> 2.0.0.beta.8"]) s.add_development_dependency(%q<rspec>, ["~> 2.2"])
s.add_development_dependency(%q<mocha>, ["~> 0.9.0"]) s.add_development_dependency(%q<mocha>, ["~> 0.9"])
else else
s.add_dependency(%q<rspec>, ["~> 2.0.0.beta.8"]) s.add_dependency(%q<rspec>, ["~> 2.2"])
s.add_dependency(%q<mocha>, ["~> 0.9.0"]) s.add_dependency(%q<mocha>, ["~> 0.9"])
end end
else else
s.add_dependency(%q<rspec>, ["~> 2.0.0.beta.8"]) s.add_dependency(%q<rspec>, ["~> 2.2"])
s.add_dependency(%q<mocha>, ["~> 0.9.0"]) s.add_dependency(%q<mocha>, ["~> 0.9"])
end end
end end


0 comments on commit b00a600

Please sign in to comment.