blob: a3cd44a2f8de380dc83620174b03c0b13e3919e8 [file] [log] [blame]
{
"name": "RubyGateway",
"version": "2.1.0",
"authors": {
"John Fairhurst": "johnfairh@gmail.com"
},
"license": {
"type": "MIT",
"file": "LICENSE"
},
"homepage": "https://github.com/johnfairh/RubyGateway",
"source": {
"git": "https://github.com/johnfairh/RubyGateway.git",
"tag": "v2.1.0",
"submodules": true
},
"summary": "Embed Ruby in Swift: load Gems, run scripts, get results.",
"description": "A Swift framework built on the Ruby C API that lets Swift\nprograms painlessly and safely run and interact with Ruby\nprograms. Easily pass Swift datatypes into Ruby and turn\nRuby objects back into Swift types.",
"documentation_url": "https://johnfairh.github.io/RubyGateway/",
"source_files": [
"Sources/RubyGateway/*swift",
"Sources/RubyGatewayHelpers/**/*.{h,m}"
],
"platforms": {
"osx": "10.13"
},
"swift_version": "4.2",
"frameworks": "Foundation",
"preserve_paths": [
"CRuby/*",
"RubyGatewayHelpers/*"
],
"pod_target_xcconfig": {
"SWIFT_INCLUDE_PATHS": "\"${PODS_ROOT}/RubyGateway/CRuby\" \"${PODS_ROOT}/RubyGateway/RubyGatewayHelpers\"",
"HEADER_SEARCH_PATHS": "\"${PODS_ROOT}/RubyGateway/CRuby\""
},
"prepare_command": "mkdir RubyGatewayHelpers\necho 'module RubyGatewayHelpers [system] {}' > RubyGatewayHelpers/module.modulemap"
}