Skip to content

Commit

Permalink
Merge pull request #8 from dblock/64-bit-with-podspec
Browse files Browse the repository at this point in the history
Added podspec.
  • Loading branch information
JaviSoto committed Mar 17, 2014
2 parents 28258ed + 18de3c5 commit fde1da1
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions JSDecoupledAppDelegate.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Pod::Spec.new do |s|
s.name = "JSDecoupledAppDelegate"
s.version = "1.0.0"
s.summary = "UIApplicationDelegate class that separates the different responsibilities into more more reusable classes."
s.homepage = "https://github.com/JaviSoto/JSDecoupledAppDelegate"

s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Javier Soto" => "[email protected]" }

s.source = { :git => "https://github.com/JaviSoto/JSDecoupledAppDelegate.git", :tag => s.version.to_s }
s.platform = :ios, '5.0'
s.source_files = 'JSDecoupledAppDelegate/*.{h,m}'
s.requires_arc = true
end

0 comments on commit fde1da1

Please sign in to comment.