Sha256: fb080bed795cb0d685d96b91071c3e4cfb3e89db0b7a0bb20129d00664082b14

Contents?: true

Size: 735 Bytes

Versions: 1

Compression:

Stored size: 735 Bytes

Contents

require 'rubygems'
require 'hoe'
require './lib/ruby_units/units'
require './lib/ruby_units/ruby-units'

begin
  require 'rcov/rcovtask'
  Rcov::RcovTask.new do |t|
    t.test_files = FileList['test/test*.rb']
    #t.verbose = true     # uncomment to see the executed command
  end
rescue
end

Hoe.spec('ruby-units') do |p|
  p.version = Unit::VERSION
  p.rubyforge_name = 'ruby-units'
  p.summary = %q{A class that performs unit conversions and unit math}
  p.email = 'kevin.olbrich+ruby_units@gmail.com'
  p.url = 'http://rubyforge.org/projects/ruby-units'
  p.description = "This library handles unit conversions and unit math"
  p.changes = p.paragraphs_of('CHANGELOG.txt', 0..1).join("\n\n")
  p.author = 'Kevin Olbrich, Ph.D'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby-units-1.1.4 Rakefile