Sha256: cb5deda7a0438a36a5d668343aa9e8bfac30db6183695badef4023ffe9b70693
Contents?: true
Size: 877 Bytes
Versions: 3
Compression:
Stored size: 877 Bytes
Contents
# -*- mode: ruby -*- Pod::Spec.new do |s| s.name = "RubySketch" s.version = File.readlines(File.expand_path 'VERSION', __dir__)[0].chomp 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/rubysketch.git"} s.author = {"xordog" => "xordog@gmail.com"} s.homepage = "https://github.com/xord/rubysketch" 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 = {'RubySketch' => %w[lib VERSION]} end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rubysketch-0.3.22 | RubySketch.podspec |
rubysketch-0.3.21 | RubySketch.podspec |
rubysketch-0.3.20 | RubySketch.podspec |