-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjot.podspec
More file actions
22 lines (20 loc) · 757 Bytes
/
jot.podspec
File metadata and controls
22 lines (20 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "jot"
s.version = "0.1.5"
s.summary = "An easy way to add drawings and text to images"
s.homepage = "https://github.com/IFTTT/jot"
s.license = 'MIT'
s.author = {
"Laura Skelton" => "laura@ifttt.com",
"Max Meyers" => "max@ifttt.com",
"Devin Foley" => "devin@ifttt.com"
}
s.source = { :git => "https://github.com/IFTTT/jot.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/skelovenko'
s.platform = :ios, '7.0'
s.requires_arc = true
s.compiler_flags = '-fmodules'
s.frameworks = 'UIKit'
s.dependency 'Masonry', '~> 0.6.1'
s.source_files = 'jot/*.{h,m}'
end