Created
June 8, 2014 07:35
-
-
Save tonyarnold/8231c1dccfa7dc547340 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = "ADNKit" | |
s.version = "2.0.0.dev.#{Time.now.to_i}" | |
s.summary = "Objective-C framework for building App.net applications on iOS and OS X." | |
s.description = "ADNKit is an Objective-C framework for building App.net iOS and OS X applications." | |
s.homepage = "https://github.com/joeldev/ADNKit" | |
s.license = { | |
:type => 'BSD', | |
:text => <<-LICENSE | |
Copyright (c) 2013, Joel Levin. All rights reserved. | |
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
Neither the name of ADNKit nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. | |
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVIS ED OF THE POSSIBILITY OF SUCH DAMAGE. | |
LICENSE | |
} | |
s.author = { "Joel Levin" => "[email protected]" } | |
s.source = { :git => "https://github.com/tonyarnold/ADNKit.git", :branch => 'afnetworking-2', :commit => 'e84c95633389ac213596e1aba547938282c7c60b' } | |
s.ios.deployment_target = '7.0' | |
s.ios.frameworks = 'CoreLocation', 'SystemConfiguration', 'MobileCoreServices', 'UIKit' | |
s.ios.source_files = 'ADNKit/*.{h,m}' | |
s.osx.deployment_target = '10.9' | |
s.osx.frameworks = 'CoreLocation', 'SystemConfiguration' | |
s.osx.source_files = 'ADNKit/*.{h,m}' | |
s.osx.exclude_files = ['ADNKit/ANKOAuthViewController.{h,m}', 'ADNKit/ANKTextFieldCell.{h,m}', 'ADNKit/ANKUsernamePasswordAuthViewController.{h,m}'] | |
s.prefix_header_file = 'ADNKit/ADNKit-Prefix.pch' | |
s.public_header_files = 'ADNKit/*.h', '*.h' | |
s.requires_arc = true | |
s.dependency 'AFNetworking', '~> 2.0' | |
s.dependency 'SocketShuttle' | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pod 'SocketShuttle', :podspec => 'Podspecs/SocketShuttle.podspec' | |
pod 'ADNKit', :podspec => 'Podspecs/ADNKit.podspec' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'SocketShuttle' | |
s.version = '0.3' | |
s.license = 'MIT' | |
s.summary = 'A higher-level API for SocketRocket with reachability and reconnect.' | |
s.homepage = 'https://github.com/mk/SocketShuttle' | |
s.authors = { 'Martin Kavalar' => '[email protected]' } | |
s.source = { :git => 'https://github.com/tonyarnold/SocketShuttle.git', :branch => 'master' } | |
s.source_files = 'SocketShuttle/*.{h,m,c}' | |
s.requires_arc = true | |
s.osx.deployment_target = '10.7' | |
s.ios.deployment_target = '5.0' | |
s.libraries = "icucore" | |
s.dependency 'SocketRocket', '~> 0.3.1-beta2' | |
s.dependency 'Reachability', '~> 3.1' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment