Skip to content

Commit

Permalink
Initial gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
kch committed Nov 1, 2009
1 parent ce31001 commit 307d178
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions imbue.gemspec
@@ -0,0 +1,52 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-

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

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Caio Chassot"]
s.date = %q{2009-10-31}
s.description = %q{imbue should be used instead of include when you need to include a module in another module that's alrleady been included in existing classes, and have it affect said classes.}
s.email = %q{dev@caiochassot.com}
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.files = [
".document",
".gitignore",
"LICENSE",
"README.md",
"Rakefile",
"VERSION",
"lib/imbue.rb",
"test/helper.rb",
"test/test_imbue.rb"
]
s.homepage = %q{http://github.com/kch/imbue}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{imbue is a pervasive include.}
s.test_files = [
"test/helper.rb",
"test/test_imbue.rb"
]

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

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<minitest>, [">= 0"])
else
s.add_dependency(%q<minitest>, [">= 0"])
end
else
s.add_dependency(%q<minitest>, [">= 0"])
end
end

0 comments on commit 307d178

Please sign in to comment.