From 8301815abe000a30d75529353830ba2dac2c58b3 Mon Sep 17 00:00:00 2001 From: Mike Amaral Date: Fri, 12 Sep 2014 22:51:36 -0400 Subject: [PATCH] Working on the podfile. --- Onboard.podspec | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/Onboard.podspec b/Onboard.podspec index d884d4e..c1e6b84 100644 --- a/Onboard.podspec +++ b/Onboard.podspec @@ -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" => "mike.amaral36@gmail.com" } + 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