-
Notifications
You must be signed in to change notification settings - Fork 4
/
NPCricket.podspec
21 lines (21 loc) · 930 Bytes
/
NPCricket.podspec
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 = "NPCricket"
s.version = "0.1.7"
s.summary = "Allow users to send feedback directly from your iOS app"
s.description = <<-DESC
NPCricket is an iOS library that allows you to solicit
feedback from users directly from within your app.
DESC
s.homepage = "https://github.com/nebspetrovic/NPCricket"
s.license = 'MIT'
s.author = { "Nebojsa Petrovic" => "[email protected]" }
s.source = { :git => "https://github.com/nebspetrovic/NPCricket.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/nebsp'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*.{h,m}'
s.resource_bundles = {
'NPCricket' => ['Pod/Classes/**/*.xib']
}
s.public_header_files = 'Pod/Classes/**/*.h'
end