Skip to content

Commit

Permalink
Fixed Rakefile
Browse files Browse the repository at this point in the history
  • Loading branch information
ktym committed Nov 1, 2011
1 parent fb06eaf commit f06d015
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 2 deletions.
22 changes: 22 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,22 @@
GEM
remote: http://rubygems.org/
specs:
bio (1.4.2)
git (1.2.5)
jeweler (1.6.4)
bundler (~> 1.0)
git (>= 1.2.5)
rake
rake (0.9.2.2)
rcov (0.9.11)
shoulda (2.11.3)

PLATFORMS
ruby

DEPENDENCIES
bio (>= 1.4.2)
bundler (~> 1.0.0)
jeweler (~> 1.6.4)
rcov
shoulda
4 changes: 2 additions & 2 deletions Rakefile
Expand Up @@ -17,8 +17,8 @@ Jeweler::Tasks.new do |gem|
gem.name = "bio-foo"
gem.homepage = "http://github.com/ktym/bioruby-foo"
gem.license = "MIT"
gem.summary = %Q{TODO: one-line summary of your gem}
gem.description = %Q{TODO: longer description of your gem}
gem.summary = %Q{one-line summary of your gem}
gem.description = %Q{longer description of your gem}
gem.email = "k@bioruby.org"
gem.authors = ["Toshiaki Katayama"]
# dependencies defined in Gemfile
Expand Down
60 changes: 60 additions & 0 deletions bio-foo.gemspec
@@ -0,0 +1,60 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{bio-foo}
s.version = "0.0.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Toshiaki Katayama"]
s.date = %q{2011-11-02}
s.description = %q{TODO: longer description of your gem}
s.email = %q{k@bioruby.org}
s.extra_rdoc_files = [
"LICENSE.txt",
"README.rdoc"
]
s.files = [
".document",
"Gemfile",
"LICENSE.txt",
"README.rdoc",
"Rakefile",
"VERSION",
"lib/bio-foo.rb",
"test/helper.rb",
"test/test_bio-foo.rb"
]
s.homepage = %q{http://github.com/ktym/bioruby-foo}
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.6.2}
s.summary = %q{TODO: one-line summary of your gem}

if s.respond_to? :specification_version then
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<shoulda>, [">= 0"])
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
s.add_development_dependency(%q<jeweler>, ["~> 1.6.4"])
s.add_development_dependency(%q<rcov>, [">= 0"])
s.add_development_dependency(%q<bio>, [">= 1.4.2"])
else
s.add_dependency(%q<shoulda>, [">= 0"])
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
s.add_dependency(%q<rcov>, [">= 0"])
s.add_dependency(%q<bio>, [">= 1.4.2"])
end
else
s.add_dependency(%q<shoulda>, [">= 0"])
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
s.add_dependency(%q<rcov>, [">= 0"])
s.add_dependency(%q<bio>, [">= 1.4.2"])
end
end

0 comments on commit f06d015

Please sign in to comment.