Sha256: fb7f234e2ab18e88356c0181863a1268748499de6a38b7b3bded7349b47b046b

Contents?: true

Size: 971 Bytes

Versions: 1

Compression:

Stored size: 971 Bytes

Contents

# -*- mode: ruby -*-


File.expand_path('lib', __dir__)
  .tap {|s| $:.unshift s if !$:.include?(s) && File.directory?(s)}

require 'rubysketch/module'


Gem::Specification.new do |s|
  glob = -> *patterns do
    patterns.map {|pat| Dir.glob(pat).to_a}.flatten
  end

  mod   = RubySketch::Module
  name  = mod.name.downcase
  rdocs = glob.call *%w[README]

  s.name        = name
  s.summary     = 'Processing like Creative Coding Framework.'
  s.description = 'Creative Coding Framework have API compatible to Processing API or p5.js.'
  s.version     = mod.version

  s.authors  = %w[xordog]
  s.email    = 'xordog@gmail.com'
  s.homepage = "https://github.com/xord/rubysketch"

  s.platform              = Gem::Platform::RUBY
  s.required_ruby_version = '>= 2.6.0'

  s.add_runtime_dependency 'reflexion', '~> 0.1.26'

  s.files            = `git ls-files`.split $/
  s.test_files       = s.files.grep %r{^(test|spec|features)/}
  s.extra_rdoc_files = rdocs.to_a
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubysketch-0.3.20 rubysketch.gemspec