-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathSmudgeKit.podspec
More file actions
49 lines (36 loc) · 1.9 KB
/
SmudgeKit.podspec
File metadata and controls
49 lines (36 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Pod::Spec.new do |s|
s.name = "SmudgeKit"
s.version = "0.1.2"
s.summary = "A drop in replacement for UIWindow to draw touch points for app previews and promotional videos."
s.description = <<-DESC
SmudgeKit provides a drop in replacement for UIWindow to draw visual
representations of all touch events to the screen. Ideal for creating
App Previews or other screencasts where it is crucial to show touch
gestures. Not intended for production use.
Originally built to preview The Converted, check the [The Converted
website](http://ideon.co/theconverted?utm_source=github&utm_medium=readme&utm_campaign=smudgeKit)
for an example.
DESC
s.homepage = "https://github.com/Ideon/SmudgeKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Hans Petter Eikemo" => "hp@ideon.co" }
s.social_media_url = "https://twitter.com/hpeikemo"
s.platform = :ios, "6.0"
s.source = {
:git => "https://github.com/Ideon/SmudgeKit.git",
:tag => s.version.to_s,
#:commit => "590857e0c0b5dd501410112393908a1bba7ef3b2",
#:branch => "master",
}
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# CocoaPods is smart about how it includes source code. For source files
# giving a folder will include any h, m, mm, c & cpp files. For header
# files it will include any header in the folder.
# Not including the public_header_files will make all headers public.
#
s.source_files = "Source-ObjectiveC/**/*.{h,m}"
#s.exclude_files = "Classes/Exclude"
# s.public_header_files = "Classes/**/*.h"
s.requires_arc = true
end