1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #
- # Be sure to run `pod spec lint LXMPauseTimer.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 http://docs.cocoapods.org/specification.html
- # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
- #
- Pod::Spec.new do |s|
- s.name = "LXMPauseTimer"
- s.version = "0.0.1"
- s.summary = "LXMPauseTimer."
- s.description = <<-DESC
- A category to pause a NSTimer
- DESC
- s.homepage = "http://172.27.128.6:3000/billthas/LXMPauseTimer"
- # s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
- s.license = "MIT"
- # s.license = { :type => "MIT", :file => "FILE_LICENSE" }
- s.author = { "Phelthas" => "" }
- # Or just: s.author = "Phelthas"
- # s.authors = { "Phelthas" => "" }
- # s.social_media_url = "http://twitter.com/Phelthas"
- # s.platform = :ios
- s.platform = :ios, "7.0"
- # When using multiple platforms
- # s.ios.deployment_target = "5.0"
- # s.osx.deployment_target = "10.7"
- # s.watchos.deployment_target = "2.0"
- # s.tvos.deployment_target = "9.0"
- s.source = { :git => "http://172.27.128.6/billthas/lxmpausetimer.git", :tag => "0.0.1" }
- s.source_files = "Demo_PauseTimer/Demo_PauseTimer/LXMPauseTimer"
- # s.exclude_files = "Classes/Exclude"
- s.public_header_files = "Demo_PauseTimer/Demo_PauseTimer/LXMPauseTimer/*.h"
- # s.resource = "icon.png"
- # s.resources = "Resources/*.png"
- # s.preserve_paths = "FilesToSave", "MoreFilesToSave"
- s.frameworks = "Foundation", "UIKit"
- # s.library = "iconv"
- # s.libraries = "iconv", "xml2"
- s.requires_arc = true
- # s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
- # s.dependency "JSONKit", "~> 1.4"
- end
|