Skip to content

Commit

Permalink
Duh, don't ignore gemspec :P
Browse files Browse the repository at this point in the history
  • Loading branch information
Leigh Caplan committed Dec 11, 2008
1 parent 270e08a commit 2c35d8e
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
@@ -1,3 +1,2 @@
*.gemspec
*.gem
/target
Empty file added Manifest.txt
Empty file.
30 changes: 30 additions & 0 deletions runt.gemspec
@@ -0,0 +1,30 @@
Gem::Specification.new do |s|
s.name = %q{runt}
s.version = "0.7.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Matthew Lipper"]
s.date = %q{2008-12-11}
s.description = %q{}
s.email = ["mlipper@gmail.com"]
s.has_rdoc = true
s.homepage = %q{Runt is a Ruby[http://www.ruby-lang.org/en/] implementation of select Martin Fowler patterns[http://www.martinfowler.com/articles].}
s.rdoc_options = ["--main", "README.txt"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{Runt}
s.rubygems_version = %q{1.2.0}
s.summary = %q{}

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

if current_version >= 3 then
s.add_development_dependency(%q<hoe>, [">= 1.8.2"])
else
s.add_dependency(%q<hoe>, [">= 1.8.2"])
end
else
s.add_dependency(%q<hoe>, [">= 1.8.2"])
end
end

0 comments on commit 2c35d8e

Please sign in to comment.