Sha256: 048481280b295bd12dd8db725586d21550d03f299b75c8aa16dd74a440ab6601

Contents?: true

Size: 1.07 KB

Versions: 1

Compression:

Stored size: 1.07 KB

Contents

# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path('../lib/', __FILE__)
require 'interpolate/version'

Gem::Specification.new do |gem|
  gem.required_rubygems_version = '>= 1.3.6'

  # Gem metadata
  gem.name        = 'interpolate'
  gem.version     = Interpolate::VERSION
  gem.platform    = Gem::Platform::RUBY

  gem.summary     = 'Create arbitrary interpolations from key points and values'
  gem.description = 'Interpolate is a library for generic linear interpolation objects. Useful for such things as calculating linear motion between locations (or arrays of locations), multi-channel color gradients, piecewise functions, or even just placing values within intervals.'

  gem.authors     = ['Adam Collins']
  gem.email       = ['adam@m104.us']
  gem.homepage    = 'http://github.com/m104/interpolate'

  # Dependencies
  gem.require_paths = ['lib']
  #gem.add_development_dependency "rspec"
  #gem.add_runtime_dependency "whatever"

  # Manifest
  all_files      = `git ls-files`.split("\n")
  gem.files      = all_files
  gem.test_files = all_files.grep(/^test\//)
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
interpolate-0.3.0 interpolate.gemspec