Skip to content

Commit

Permalink
Doing the gem build dance for version 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Iain Hecker committed Sep 21, 2009
1 parent 472b455 commit af443bd
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 0 deletions.
Binary file added .Rakefile.swp
Binary file not shown.
7 changes: 7 additions & 0 deletions Manifest
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,7 @@
Manifest
README.rdoc
Rakefile
lib/fill.rb
lib/fill/configure.rb
lib/fill/presenter.rb
lib/fill/procedure.rb
13 changes: 13 additions & 0 deletions Rakefile
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,13 @@
require 'rake'
require 'rake/rdoctask'

require 'echoe'
Echoe.new('fill', '0.0.1') do |p|
p.description = "Fill your database"
p.url = "http://iain.nl"
p.author = "iain"
p.email = "iain@iain.nl"
p.ignore_pattern = []
p.development_dependencies = []
p.runtime_dependencies = []
end
30 changes: 30 additions & 0 deletions fill.gemspec
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,30 @@
# -*- encoding: utf-8 -*-

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

s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
s.authors = ["iain"]
s.date = %q{2009-09-21}
s.description = %q{Fill your database}
s.email = %q{iain@iain.nl}
s.extra_rdoc_files = ["README.rdoc", "lib/fill.rb", "lib/fill/configure.rb", "lib/fill/presenter.rb", "lib/fill/procedure.rb"]
s.files = ["README.rdoc", "Rakefile", "lib/fill.rb", "lib/fill/configure.rb", "lib/fill/presenter.rb", "lib/fill/procedure.rb", "Manifest", "fill.gemspec"]
s.homepage = %q{http://iain.nl}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Fill", "--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{fill}
s.rubygems_version = %q{1.3.5}
s.summary = %q{Fill your database}

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
else
end
else
end
end

0 comments on commit af443bd

Please sign in to comment.