Sha256: f93b2afde3167a54623de30f127eefd88da7706ac23252fceb07387cd3864f71
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'matplotlib/version' Gem::Specification.new do |spec| spec.name = "matplotlib" spec.version = Matplotlib::VERSION spec.authors = ["Kenta Murata"] spec.email = ["mrkn@mrkn.jp"] spec.summary = %q{matplotlib wrapper for Ruby} spec.description = %q{matplotlib wrapper for Ruby} spec.homepage = "https://github.com/mrkn/matplotlib.rb" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "pycall", ">= 0.1.0.alpha.20170311" spec.add_development_dependency "bundler", "~> 1.13" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "pry" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
matplotlib-0.1.0.alpha.20170311 | matplotlib.gemspec |