9
9
Pod ::Spec . new do |s |
10
10
s . name = 'JSONStub'
11
11
s . version = '0.1.0'
12
- s . summary = 'A short description of JSONStub .'
12
+ s . summary = 'Use JSONStub to easily load JSON files into your Mappable objects .'
13
13
14
14
# This description is used to generate tags and improve search results.
15
15
# * Think: What does it do? Why did you write it? What is the focus?
@@ -18,25 +18,19 @@ Pod::Spec.new do |s|
18
18
# * Finally, don't worry about the indent, CocoaPods strips it!
19
19
20
20
s . description = <<-DESC
21
- TODO: Add long description of the pod here.
21
+ We use some extensions to easily allows us to load a JSON file into a Mappable object.
22
+ Makes more ease test ObjectMapper parsers.
22
23
DESC
23
24
24
- s . homepage = 'https://github.com/<GITHUB_USERNAME>/JSONStub'
25
- # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
25
+ s . homepage = 'https://github.com/Swift-Yah/JSONStub'
26
26
s . license = { :type => 'MIT' , :file => 'LICENSE' }
27
27
s . author = { 'Rafael da Silva Ferreira' => '[email protected] ' }
28
- s . source = { :git => 'https://github.com/<GITHUB_USERNAME> /JSONStub.git' , :tag => s . version . to_s }
28
+ s . source = { :git => 'https://github.com/Swift-Yah /JSONStub.git' , :tag => s . version . to_s }
29
29
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
30
30
31
31
s . ios . deployment_target = '8.0'
32
32
33
33
s . source_files = 'JSONStub/Classes/**/*'
34
-
35
- # s.resource_bundles = {
36
- # 'JSONStub' => ['JSONStub/Assets/*.png']
37
- # }
38
34
39
- # s.public_header_files = 'Pod/Classes/**/*.h'
40
- # s.frameworks = 'UIKit', 'MapKit'
41
- # s.dependency 'AFNetworking', '~> 2.3'
35
+ s . dependency 'ObjectMapper'
42
36
end
0 commit comments