-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCocoaMite.podspec
More file actions
19 lines (19 loc) · 876 Bytes
/
CocoaMite.podspec
File metadata and controls
19 lines (19 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "CocoaMite"
s.version = "0.0.2"
s.summary = "CocoaMite is an Objective-C wrapper around the mite api."
s.description = <<-DESC
CocoaMite is an Objective-C wrapper around the [mite api](http://mite.yo.lk/api/ "mite api").
[mite](http://mite.yo.lk/ "mite") is 'sleek time tracking for teams & freelancers'.
DESC
s.homepage = "http://github.com/bfolder/CocoaMite"
s.license = 'MIT'
s.author = { "Heiko Dreyer" => "mail@boxedfolder.com" }
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.source = { :git => "https://github.com/bfolder/CocoaMite.git", :tag => "0.0.2" }
s.source_files = 'CocoaMite/**/*.{h,m}'
s.public_header_files = 'CocoaMite/**/*.h'
s.requires_arc = true
s.dependency 'AFNetworking', '~> 1.3.2'
end