forked from cocoaplayground/SALQuickTutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSALQuickTutorial.podspec
More file actions
21 lines (18 loc) · 918 Bytes
/
Copy pathSALQuickTutorial.podspec
File metadata and controls
21 lines (18 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "SALQuickTutorial"
s.version = "0.2.1"
s.summary = "One-time-quick-tutorials to be shown as the user discovers your app"
s.description = <<-DESC
Show only once quick tutorials while users play with your app. Teach as they use, and not before using.
DESC
s.homepage = "https://github.com/seekingalpha/SALQuickTutorial"
s.license = 'MIT'
s.author = { "Seeking Alpha" => "" }
s.social_media_url = "http://twitter.com/SeekingAlpha"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/seekingalpha/SALQuickTutorial.git", :tag =>s.version.to_s}
s.source_files = "SALQuickTutorial", "SALQuickTutorialViewController.{h,m}"
s.resources = 'SALQuickTutorial/SALQuickTutorialViewController.xib'
s.requires_arc = true
s.dependency "MZFormSheetController", "~> 2.3"
end