Sha256: e08f2850f59b168fb8fec7cc20ff526a4f9e58294a236b9b0c525c06b3966277

Contents?: true

Size: 1.01 KB

Versions: 5

Compression:

Stored size: 1.01 KB

Contents

# coding: utf-8 #


lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'graphit/version'

Gem::Specification.new do |spec|
  spec.name          = "graphit"
  spec.version       = Graphit::VERSION
  spec.authors       = ["jeffmcfadden"]
  spec.email         = ["jeff@forgeapps.com"]

  spec.summary       = %q{Super basic graphic library that writes data to BMP files.}
  spec.description   = %q{Probably not robust enough to do what you want. I use it to conver mrtg data to scalable graphs.}
  spec.homepage      = "https://github.com/jeffmcfadden/graphit"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency 'bin_utils'

  spec.add_development_dependency "bundler", "~> 1.9"
  spec.add_development_dependency "rake", "~> 10.0"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
graphit-0.1.1 graphit.gemspec
graphit-0.0.6 graphit.gemspec
graphit-0.0.5 graphit.gemspec
graphit-0.0.4 graphit.gemspec
graphit-0.0.3 graphit.gemspec