Sha256: 0ac2b9c65b6ca1ec9aeeeee4982f0137acbe3819ff9aaa08ec9a8ba298f0ac99

Contents?: true

Size: 832 Bytes

Versions: 7

Compression:

Stored size: 832 Bytes

Contents

require 'rubygems'
require 'rake'
require 'rake/testtask'
require './lib/ruby-units'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = 'ruby-units'
    gem.summary = 'A class that performs unit conversions and unit math'
    gem.description = 'Provides classes and methods to perform unit math and conversions'
    gem.authors = ['Kevin Olbrich, Ph.D.']
    gem.email = ['kevin.olbrich+ruby_units@gmail.com']
    gem.homepage = 'https://github.com/olbrich/ruby-units'
    gem.files.exclude('.*', 'test/**/*', 'spec/**/*', 'Gemfile', 'Guardfile')
    gem.license = 'MIT'
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts 'Jeweler (or a dependency) not available. Install it with: gem install jeweler'
end

require 'rspec/core/rake_task'
desc 'Run specs'
RSpec::Core::RakeTask.new

task default: :spec

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ruby-units-2.3.1 Rakefile
ruby-units-2.3.0 Rakefile
ruby-units-2.2.1 Rakefile
ruby-units-2.2.0 Rakefile
ruby-units-2.1.0 Rakefile
ruby-units-2.0.1 Rakefile.rb
ruby-units-2.0.0 Rakefile.rb