Skip to content

Instantly share code, notes, and snippets.

@norsez
Created September 11, 2012 07:21
Show Gist options
  • Save norsez/3696649 to your computer and use it in GitHub Desktop.
Save norsez/3696649 to your computer and use it in GitHub Desktop.
How to write custom pod spec to include another lib or even an app for internal use with svn
Pod::Spec.new do |s|
s.name = 'BDDimGlassView'
s.version = '0.0.1'
s.license = 'BSD'
s.summary = 'Dim Glass bordered container for UIViews.'
s.description = 'description here.'
s.homepage = 'https://github.com/norsez'
s.author = {'Norsez Orankijanan' => 'norsez.github@gmail.com'}
#This is the revision of BitApp this app uses
#s.source = {
# :svn => 'svn://hypercube/BDDimGlassView/trunk',
# :revision => '413'
#}
s.source_files = 'Classes/**/*.{h,m}'
#s.prefix_header_file = 'build/App-Prefix.pch'
#s.resources = 'resources/**/resources/graphics/*.*', 'resources/**/resources/xibs/*.*'
s.requires_arc = true
s.platform = :ios
#s.frameworks = 'QuartzCore', 'CoreGraphics', 'SystemConfiguration', 'Foundation', 'UIKit', 'CoreData'
#s.dependency 'ConciseKit', '~> 0.1.2'
#s.dependency 'Reachability', '~>3.0.0'
#s.dependency 'AFNetworking',:git => 'https://github.com/AFNetworking/AFNetworking.git', :commit => 'cd788cea8af30ed62b335bf01efa891bf1052229'
#s.dependency 'BaseKit/Core', '~> 0.2.3'
#s.dependency 'BaseKit/View', '~> 0.2.3'
#s.dependency 'BaseKit/CellMapping', '~> 0.2.3'
#s.dependency 'BaseKit/LocationManager', '~> 0.2.3'
#s.dependency 'BaseKit/FormField', '~> 0.2.3'
#s.dependency 'BaseKit/FormMapping', '~> 0.2.3'
#s.dependency 'WEPopover', '~> 0.0.1'
#s.dependency 'SBJson', '~>3.1'
#s.dependency 'LKbadgeView', '~> 1.0.0'
#s.dependency 'ATMHud', '~>0.0.1'
#s.dependency 'PrettyKit', '~>0.1.0'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment