Skip to content
This repository has been archived by the owner on Dec 5, 2019. It is now read-only.

Commit

Permalink
Merge pull request #137 from fabb/add_podspec
Browse files Browse the repository at this point in the history
added podspec
  • Loading branch information
diederich authored Aug 14, 2018
2 parents 3acbd6a + 0230565 commit a24a09d
Showing 1 changed file with 122 additions and 0 deletions.
122 changes: 122 additions & 0 deletions libextobjc.podspec.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
{
"name": "libextobjc",
"version": "0.6",
"summary": "A Cocoa library to extend the Objective-C programming language.",
"homepage": "https://github.com/jspahrsummers/libextobjc",
"authors": {
"Justin Spahr-Summers": "jspahrsummers@github.com"
},
"source": {
"git": "https://github.com/jspahrsummers/libextobjc.git",
"tag": "0.6"
},
"requires_arc": true,
"description": " The Extended Objective-C library extends the dynamism of the Objective-C programming language to support additional patterns present in other dynamic programming languages (including those that are not necessarily object-oriented).\n\n libextobjc is meant to be very modular – most of its classes and modules can be used with no more than one or two dependencies. \n",
"license": {
"type": "MIT",
"text": " Copyright (c) 2012 Justin Spahr-Summers\n\n Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
},
"subspecs": [
{
"name": "UmbrellaHeader",
"source_files": "extobjc/extobjc.h"
},
{
"name": "RuntimeExtensions",
"source_files": [
"extobjc/metamacros.h",
"extobjc/EXTRuntimeExtensions.{h,m}"
]
},
{
"name": "EXTADT",
"source_files": "extobjc/EXTADT.{h,m}",
"dependencies": {
"libextobjc/RuntimeExtensions": [

]
}
},
{
"name": "EXTConcreteProtocol",
"source_files": "extobjc/EXTConcreteProtocol.{h,m}",
"dependencies": {
"libextobjc/RuntimeExtensions": [

]
}
},
{
"name": "EXTKeyPathCoding",
"source_files": "extobjc/EXTKeyPathCoding.{h,m}",
"dependencies": {
"libextobjc/RuntimeExtensions": [

]
}
},
{
"name": "EXTNil",
"source_files": "extobjc/EXTNil.{h,m}",
"dependencies": {
"libextobjc/RuntimeExtensions": [

]
}
},
{
"name": "EXTSafeCategory",
"source_files": "extobjc/EXTSafeCategory.{h,m}",
"dependencies": {
"libextobjc/RuntimeExtensions": [

]
}
},
{
"name": "EXTScope",
"source_files": "extobjc/EXTScope.{h,m}",
"dependencies": {
"libextobjc/RuntimeExtensions": [

]
}
},
{
"name": "EXTSelectorChecking",
"source_files": "extobjc/EXTSelectorChecking.{h,m}",
"dependencies": {
"libextobjc/RuntimeExtensions": [

]
}
},
{
"name": "EXTSynthesize",
"source_files": "extobjc/EXTSynthesize.{h,m}",
"dependencies": {
"libextobjc/RuntimeExtensions": [

]
}
},
{
"name": "NSInvocation+EXT",
"source_files": "extobjc/NSInvocation+EXT.{h,m}",
"dependencies": {
"libextobjc/RuntimeExtensions": [

]
}
},
{
"name": "NSMethodSignature+EXT",
"source_files": "extobjc/NSMethodSignature+EXT.{h,m}",
"dependencies": {
"libextobjc/RuntimeExtensions": [

]
}
}
]
}

0 comments on commit a24a09d

Please sign in to comment.