Sha256: ffa4ac272f9e3622c55ccb2392d1c141ceff4c075083620d9ee6f9ed354be48e

Contents?: true

Size: 882 Bytes

Versions: 2

Compression:

Stored size: 882 Bytes

Contents

# -*- mode: ruby -*-


Pod::Spec.new do |s|
  s.name         = "RubyProcessing"
  s.version      = File.read(File.expand_path 'VERSION', __dir__)[/[\d\.]+/]
  s.summary      = "Yet Another Processing implementation for Ruby"
  s.description  = "Yet Another Processing implementation for Ruby"
  s.license      = "MIT"
  s.source       = {:git => "https://github.com/xord/processing.git"}
  s.author       = {"xordog" => "xordog@gmail.com"}
  s.homepage     = "https://github.com/xord/processing"

  s.osx.deployment_target = "10.10"
  s.ios.deployment_target = "10.0"

  incdirs = %W[
    #{s.name}/src
    CRuby/CRuby/include
    Reflexion/reflex/include
  ].map {|s| "${PODS_ROOT}/#{s}"}

  s.preserve_paths = "src"
  s.source_files   = "src/*.mm"
  s.xcconfig       = {"HEADER_SEARCH_PATHS" => incdirs.join(' ')}

  s.resource_bundles = {'RubyProcessing' => %w[lib VERSION]}
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
processing-0.5.2 RubyProcessing.podspec
processing-0.5.1 RubyProcessing.podspec