Sha256: 3d260646eacd077748023d4691d3fc9c47a89b7d0a23b827bcdab9284bdc6549
Contents?: true
Size: 1.29 KB
Versions: 3
Compression:
Stored size: 1.29 KB
Contents
lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'magro/version' Gem::Specification.new do |spec| spec.name = 'magro' spec.version = Magro::VERSION spec.authors = ['yoshoku'] spec.email = ['yoshoku@outlook.com'] spec.summary = 'Magro is an image processing library for Ruby.' spec.description = 'Magro is an image processing library for Ruby.' spec.homepage = 'https://github.com/yoshoku/magro' spec.license = 'BSD-3-Clause' # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |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.extensions = ['ext/magro/extconf.rb'] spec.add_runtime_dependency 'numo-narray', '~> 0.9.1' spec.add_development_dependency 'bundler', '~> 2.0' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rake-compiler', '~> 1.0' spec.add_development_dependency 'rspec', '~> 3.0' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
magro-0.1.2 | magro.gemspec |
magro-0.1.1 | magro.gemspec |
magro-0.1.0 | magro.gemspec |