Skip to content

Commit

Permalink
Fixed .gemfied loader
Browse files Browse the repository at this point in the history
  • Loading branch information
keita committed Jul 10, 2008
1 parent aa0a41f commit a0cd614
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lib/rtask.rb
Expand Up @@ -58,14 +58,14 @@ def init_spec
if File.exist?(".gemified")
data = YAML.load(File.read(".gemified"))
spec = ::Gem::Specification.new
spec.summary = data["summary"]
spec.email = data["email"]
spec.name = data["name"]
spec.homepage = data["homepage"]
spec.version = data["version"]
spec.rubyforge_project = data["rubyforge_project"]
spec.dependencies = data["dependencies"]
spec.authors << data["author"]
spec.summary = data[:summary]
spec.email = data[:email]
spec.name = data[:name]
spec.homepage = data[:homepage]
spec.version = data[:version]
spec.rubyforge_project = data[:rubyforge_project]
spec.dependencies += data[:dependencies]
spec.authors << data[:author]
return RTask::Spec.new(spec)
end

Expand Down

0 comments on commit a0cd614

Please sign in to comment.