Skip to content

Commit 6917194

Browse files
author
Rafael da Silva Ferreira
committed
Populate JSONStub.podspec file
To have correct settings.
1 parent 6157d2e commit 6917194

File tree

2 files changed

+11
-14
lines changed

2 files changed

+11
-14
lines changed

Example/Podfile.lock

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
PODS:
2-
- JSONStub (0.1.0)
2+
- JSONStub (0.1.0):
3+
- ObjectMapper
34
- Nimble (5.1.0)
5+
- ObjectMapper (2.2.0)
46
- Quick (0.10.0)
57

68
DEPENDENCIES:
@@ -13,8 +15,9 @@ EXTERNAL SOURCES:
1315
:path: "../"
1416

1517
SPEC CHECKSUMS:
16-
JSONStub: d150d593654b7a609b648394d4edfa7bc200db76
18+
JSONStub: 7fb3bc8e2dd492dfcf0cb30c7bd4cf9bc86e7d96
1719
Nimble: 5ea121a2eda60440287054cde077fc0ad22227b3
20+
ObjectMapper: 4060d739febae11ab0c6af8d786f98667c82e1bd
1821
Quick: 5d290df1c69d5ee2f0729956dcf0fd9a30447eaa
1922

2023
PODFILE CHECKSUM: 6b7acae77c49ecf8ac589891b408ca580989831d

JSONStub.podspec

+6-12
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Pod::Spec.new do |s|
1010
s.name = 'JSONStub'
1111
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.'
1313

1414
# This description is used to generate tags and improve search results.
1515
# * Think: What does it do? Why did you write it? What is the focus?
@@ -18,25 +18,19 @@ Pod::Spec.new do |s|
1818
# * Finally, don't worry about the indent, CocoaPods strips it!
1919

2020
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.
2223
DESC
2324

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'
2626
s.license = { :type => 'MIT', :file => 'LICENSE' }
2727
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 }
2929
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
3030

3131
s.ios.deployment_target = '8.0'
3232

3333
s.source_files = 'JSONStub/Classes/**/*'
34-
35-
# s.resource_bundles = {
36-
# 'JSONStub' => ['JSONStub/Assets/*.png']
37-
# }
3834

39-
# s.public_header_files = 'Pod/Classes/**/*.h'
40-
# s.frameworks = 'UIKit', 'MapKit'
41-
# s.dependency 'AFNetworking', '~> 2.3'
35+
s.dependency 'ObjectMapper'
4236
end

0 commit comments

Comments
 (0)