Skip to content

Commit

Permalink
Cleaned up and added missing required field to gemspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
ccashwell committed Jan 19, 2013
1 parent ce07099 commit 6501de4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions unit.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ require File.dirname(__FILE__) + '/lib/unit/version'
Gem::Specification.new do |s|
s.name = %q{unit}
s.version = Unit::VERSION
s.platform = Gem::Platform::RUBY
s.summary = 'Scientific unit support for ruby for calculations'
s.homepage = %q{http://github.com/minad/unit}

s.authors = ["Daniel Mendler"]
s.authors = ["Daniel Mendler", "Chris Cashwell"]
s.date = Date.today.to_s
s.email = ["mail@daniel-mendler.de"]

s.files = `git ls-files`.split("\n")
s.require_paths = %w(lib)

s.rubyforge_project = s.name
s.has_rdoc = true

s.files = `git ls-files`.split("\n")
s.require_paths = ["lib"]
s.rubyforge_project = s.name
s.summary = 'Scientific unit support for ruby for calculations'
s.homepage = %q{http://github.com/minad/unit}

s.add_development_dependency('rake', ['>= 0.8.7'])
s.add_development_dependency('rspec')
Expand Down

0 comments on commit 6501de4

Please sign in to comment.