Skip to content

Commit

Permalink
Working on the podfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Amaral committed Sep 13, 2014
1 parent 6ce2bed commit 8301815
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions Onboard.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
Pod::Spec.new do |spec|
spec.name = 'Onboard'
spec.version = '1.0'
spec.homepage = 'https://github.com/mamaral/Onboard'
spec.authors = 'Mike Amaral'
spec.platform = :ios
spec.summary = 'Onboard provides developers with a quick and easy means to create a beautiful, engaging, and useful onboarding experience with only a few lines of code.'
spec.source = { :git => 'https://github.com/mamaral/Onboard.git' }
spec.source_files = 'OnboardingViewController.{h,m}', 'OnboardingContentViewController.{h,m}'
spec.requires_arc = true
Pod::Spec.new do |s|

s.name = "Onboard"
s.version = "1.0"
s.summary = "Onboard provides developers with a quick and easy means to create a beautiful, engaging, and useful onboarding experience with only a few lines of code."
s.homepage = "https://github.com/mamaral/Onboard"
s.screenshots = "https://github.com/mamaral/Onboard/blob/master/onboard_demo.gif", "https://github.com/mamaral/Onboard/blob/master/Screenshots/purple1.png", "https://github.com/mamaral/Onboard/blob/master/Screenshots/space2.png"
s.license = "MIT"
s.author = { "Mike Amaral" => "[email protected]" }
s.social_media_url = "http://twitter.com/MikeAmaral"
s.platform = :ios
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/mamaral/Onboard.git", :tag => "1.0" }
s.source_files = "Objective-C/Onboard/OnboardingViewController.{h,m}", "Objective-C/Onboard/OnboardingContentViewController.{h,m}"
s.requires_arc = true

end

0 comments on commit 8301815

Please sign in to comment.