Rohith
2 years ago
commit
b5f5f3f13f
1 changed files with 126 additions and 0 deletions
@ -0,0 +1,126 @@ |
|||||
|
# |
||||
|
# Be sure to run `pod spec lint WebGFramework.podspec' to ensure this is a |
||||
|
# valid spec and to remove all comments including this before submitting the spec. |
||||
|
# |
||||
|
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html |
||||
|
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ |
||||
|
# |
||||
|
|
||||
|
Pod::Spec.new do |spec| |
||||
|
|
||||
|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
||||
|
# |
||||
|
# These will help people to find your library, and whilst it |
||||
|
# can feel like a chore to fill in it's definitely to your advantage. The |
||||
|
# summary should be tweet-length, and the description more in depth. |
||||
|
# |
||||
|
|
||||
|
spec.name = "WebGFramework" |
||||
|
spec.version = "0.0.1" |
||||
|
spec.summary = "A Web Framework with hidden implementation." |
||||
|
|
||||
|
spec.description = <<-DESC |
||||
|
This Framework will hide all implementation and won't allow users to see the source code |
||||
|
DESC |
||||
|
|
||||
|
spec.homepage = "http://65.1.227.215:3000" |
||||
|
# spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif" |
||||
|
|
||||
|
|
||||
|
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
||||
|
|
||||
|
# spec.license = "MIT (example)" |
||||
|
spec.license = { :type => "MIT", :file => "license" } |
||||
|
|
||||
|
|
||||
|
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
||||
|
|
||||
|
spec.author = { "Rohith" => "rohithvp@hnsonline.com" } |
||||
|
# Or just: spec.author = "Rohith" |
||||
|
# spec.authors = { "Rohith" => "rohithvp@hnsonline.com" } |
||||
|
# spec.social_media_url = "https://twitter.com/Rohith" |
||||
|
|
||||
|
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
||||
|
# |
||||
|
# If this Pod runs only on iOS or OS X, then specify the platform and |
||||
|
# the deployment target. You can optionally include the target after the platform. |
||||
|
# |
||||
|
|
||||
|
spec.platform = :ios |
||||
|
# spec.platform = :ios, "5.0" |
||||
|
|
||||
|
# When using multiple platforms |
||||
|
spec.ios.deployment_target = "12.0" |
||||
|
|
||||
|
# spec.osx.deployment_target = "10.7" |
||||
|
# spec.watchos.deployment_target = "2.0" |
||||
|
# spec.tvos.deployment_target = "9.0" |
||||
|
|
||||
|
spec.ios.vendored_frameworks = 'WebGFramework.framework' |
||||
|
|
||||
|
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
||||
|
# |
||||
|
# Specify the location from where the source should be retrieved. |
||||
|
# Supports git, hg, bzr, svn and HTTP. |
||||
|
# |
||||
|
|
||||
|
# spec.source = { :git => "https://www.dropbox.com/s/lg7liznfwvfgami/WebFramework.zip?dl=1", :tag => "#{spec.version}" } |
||||
|
spec.source = { :http => "https://www.dropbox.com/s/lg7liznfwvfgami/WebFramework.zip?dl=1" } |
||||
|
|
||||
|
|
||||
|
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
||||
|
# |
||||
|
# CocoaPods is smart about how it includes source code. For source files |
||||
|
# giving a folder will include any swift, h, m, mm, c & cpp files. |
||||
|
# For header files it will include any header in the folder. |
||||
|
# Not including the public_header_files will make all headers public. |
||||
|
# |
||||
|
|
||||
|
# spec.source_files = "Classes", "Classes/**/*.{h,m}" |
||||
|
spec.exclude_files = "Classes/Exclude" |
||||
|
|
||||
|
# spec.public_header_files = "Classes/**/*.h" |
||||
|
|
||||
|
|
||||
|
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
||||
|
# |
||||
|
# A list of resources included with the Pod. These are copied into the |
||||
|
# target bundle with a build phase script. Anything else will be cleaned. |
||||
|
# You can preserve files from being cleaned, please don't preserve |
||||
|
# non-essential files like tests, examples and documentation. |
||||
|
# |
||||
|
|
||||
|
# spec.resource = "icon.png" |
||||
|
# spec.resources = "Resources/*.png" |
||||
|
|
||||
|
# spec.preserve_paths = "FilesToSave", "MoreFilesToSave" |
||||
|
|
||||
|
|
||||
|
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
||||
|
# |
||||
|
# Link your library with frameworks, or libraries. Libraries do not include |
||||
|
# the lib prefix of their name. |
||||
|
# |
||||
|
|
||||
|
# spec.framework = "SomeFramework" |
||||
|
# spec.frameworks = "SomeFramework", "AnotherFramework" |
||||
|
|
||||
|
# spec.library = "iconv" |
||||
|
# spec.libraries = "iconv", "xml2" |
||||
|
|
||||
|
|
||||
|
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
||||
|
# |
||||
|
# If your library depends on compiler flags you can set them in the xcconfig hash |
||||
|
# where they will only apply to your library. If you depend on other Podspecs |
||||
|
# you can include multiple dependencies to ensure it works. |
||||
|
|
||||
|
spec.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } |
||||
|
spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } |
||||
|
|
||||
|
# spec.requires_arc = true |
||||
|
|
||||
|
# spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" } |
||||
|
# spec.dependency "JSONKit", "~> 1.4" |
||||
|
|
||||
|
end |
Loading…
Reference in new issue