cocoapods 0.22.1 → 0.22.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +31 -1
- data/lib/cocoapods/gem_version.rb +1 -1
- data/lib/cocoapods/generator/xcconfig.rb +6 -2
- data/lib/cocoapods/generator/xcconfig/aggregate_xcconfig.rb +7 -15
- data/lib/cocoapods/generator/xcconfig/private_pod_xcconfig.rb +61 -10
- data/lib/cocoapods/installer.rb +4 -11
- data/lib/cocoapods/installer/target_installer/pod_target_installer.rb +4 -4
- data/lib/cocoapods/project.rb +2 -1
- data/lib/cocoapods/validator.rb +2 -2
- metadata +181 -143
- checksums.yaml +0 -7
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,35 @@
|
|
2
2
|
|
3
3
|
To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides/installing_cocoapods.html).
|
4
4
|
|
5
|
+
|
6
|
+
## 0.22.2
|
7
|
+
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.22.1...0.22.2)
|
8
|
+
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.22.1...0.22.2)
|
9
|
+
• [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.8.0...0.8.1)
|
10
|
+
|
11
|
+
###### Enhancements
|
12
|
+
|
13
|
+
* The build settings of the Pods project and of its target have been updated to
|
14
|
+
be in line with the new defaults of the future versions of Xcode.
|
15
|
+
|
16
|
+
###### Bug fixes
|
17
|
+
|
18
|
+
* Specifications defining build setting with the `[*]` syntax are now properly
|
19
|
+
handled.
|
20
|
+
[#1171](https://github.com/CocoaPods/CocoaPods/issues/1171)
|
21
|
+
|
22
|
+
* The name of the files references are now properly set fixing a minor
|
23
|
+
regression introduced by CocoaPods 0.22.1 and matching more closely Xcode
|
24
|
+
behaviour.
|
25
|
+
|
26
|
+
* The validator now builds the Pods target instead of the first target actually
|
27
|
+
performing the validation.
|
28
|
+
|
29
|
+
* Build settings defined through the `xcconfig` attribute of a `podspec` are now
|
30
|
+
stripped of duplicate values when merged in an aggregate target.
|
31
|
+
[#1189](https://github.com/CocoaPods/CocoaPods/issues/1189)
|
32
|
+
|
33
|
+
|
5
34
|
## 0.22.1
|
6
35
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.22.0...0.22.1)
|
7
36
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.22.0...0.22.1)
|
@@ -26,7 +55,8 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
|
|
26
55
|
[#850](https://github.com/CocoaPods/CocoaPods/issues/850)
|
27
56
|
|
28
57
|
* Added the `pod lib lint` subcommand which allows to lint the Pod stored
|
29
|
-
in the working directory (a pod spec in the root is needed).
|
58
|
+
in the working directory (a pod spec in the root is needed). This subcommand
|
59
|
+
is equivalent to the deprecated `pod spec lint --local`.
|
30
60
|
[#850](https://github.com/CocoaPods/CocoaPods/issues/850)
|
31
61
|
|
32
62
|
* The dependencies of the targets of the Pods project are now made explicit.
|
@@ -10,13 +10,17 @@ module Pod
|
|
10
10
|
# @return [Target] the target represented by this xcconfig.
|
11
11
|
#
|
12
12
|
attr_reader :target
|
13
|
-
attr_reader :sandbox
|
14
13
|
|
15
14
|
# @param [Target] target @see target
|
16
15
|
#
|
17
16
|
def initialize(target)
|
18
17
|
@target = target
|
19
|
-
|
18
|
+
end
|
19
|
+
|
20
|
+
# @return [Sandbox] the sandbox of this target.
|
21
|
+
#
|
22
|
+
def sandbox
|
23
|
+
target.sandbox
|
20
24
|
end
|
21
25
|
|
22
26
|
# @return [Xcodeproj::Config] The generated xcconfig.
|
@@ -15,27 +15,19 @@ module Pod
|
|
15
15
|
# @return [Xcodeproj::Config]
|
16
16
|
#
|
17
17
|
def generate
|
18
|
-
|
19
|
-
'OTHER_LDFLAGS'
|
20
|
-
'HEADER_SEARCH_PATHS'
|
21
|
-
'PODS_ROOT'
|
22
|
-
'GCC_PREPROCESSOR_DEFINITIONS'
|
23
|
-
}
|
18
|
+
@xcconfig = Xcodeproj::Config.new({
|
19
|
+
'OTHER_LDFLAGS' => default_ld_flags,
|
20
|
+
'HEADER_SEARCH_PATHS' => quote(sandbox.public_headers.search_paths),
|
21
|
+
'PODS_ROOT' => target.relative_pods_root,
|
22
|
+
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) COCOAPODS=1',
|
23
|
+
})
|
24
24
|
|
25
25
|
target.pod_targets.each do |pod_target|
|
26
|
-
xcconfig = Xcodeproj::Config.new
|
27
26
|
pod_target.spec_consumers.each do |consumer|
|
28
|
-
add_spec_build_settings_to_xcconfig(consumer, xcconfig)
|
29
|
-
end
|
30
|
-
|
31
|
-
xcconfig.to_hash.each do |k, v|
|
32
|
-
prefixed_key = pod_target.xcconfig_prefix + k
|
33
|
-
config[k] = "#{config[k]} ${#{prefixed_key}}"
|
27
|
+
add_spec_build_settings_to_xcconfig(consumer, @xcconfig)
|
34
28
|
end
|
35
29
|
end
|
36
30
|
|
37
|
-
@xcconfig = Xcodeproj::Config.new(config)
|
38
|
-
@xcconfig.includes = target.pod_targets.map(&:name)
|
39
31
|
@xcconfig
|
40
32
|
end
|
41
33
|
|
@@ -9,6 +9,19 @@ module Pod
|
|
9
9
|
#
|
10
10
|
class PrivatePodXCConfig < XCConfig
|
11
11
|
|
12
|
+
# @return [Xcodeproj::Config] The public xcconfig which this one will
|
13
|
+
# use.
|
14
|
+
#
|
15
|
+
attr_reader :public_xcconfig
|
16
|
+
|
17
|
+
# @param [Target] target @see target
|
18
|
+
# @param [Xcodeproj::Config] public_xcconfig @see public_xcconfig
|
19
|
+
#
|
20
|
+
def initialize(target, public_xcconfig)
|
21
|
+
super(target)
|
22
|
+
@public_xcconfig = public_xcconfig
|
23
|
+
end
|
24
|
+
|
12
25
|
# Generates the xcconfig.
|
13
26
|
#
|
14
27
|
# @return [Xcodeproj::Config]
|
@@ -22,19 +35,57 @@ module Pod
|
|
22
35
|
# 'USE_HEADERMAP' => 'NO'
|
23
36
|
}
|
24
37
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
38
|
+
xcconfig_hash = add_xcconfig_namespaced_keys(public_xcconfig.to_hash, config, target.xcconfig_prefix)
|
39
|
+
@xcconfig = Xcodeproj::Config.new(xcconfig_hash)
|
40
|
+
@xcconfig.includes = [target.name]
|
41
|
+
@xcconfig
|
42
|
+
end
|
43
|
+
|
44
|
+
private
|
45
|
+
|
46
|
+
#-----------------------------------------------------------------------#
|
29
47
|
|
30
|
-
|
31
|
-
|
32
|
-
|
48
|
+
# !@group Private Helpers
|
49
|
+
|
50
|
+
# Returns the hash representation of an xcconfig which inherit from the
|
51
|
+
# namespaced keys of a given one.
|
52
|
+
#
|
53
|
+
# @param [Hash] source_config
|
54
|
+
# The xcconfig whose keys need to be inherited.
|
55
|
+
#
|
56
|
+
# @param [Hash] destination_config
|
57
|
+
# The config which should inherit the source config keys.
|
58
|
+
#
|
59
|
+
# @return [Hash] The inheriting xcconfig.
|
60
|
+
#
|
61
|
+
def add_xcconfig_namespaced_keys(source_config, destination_config, prefix)
|
62
|
+
result = destination_config.dup
|
63
|
+
source_config.each do |key, value|
|
64
|
+
prefixed_key = prefix + conditional_less_key(key)
|
65
|
+
current_value = destination_config[key]
|
66
|
+
if current_value
|
67
|
+
result[key] = "#{current_value} ${#{prefixed_key}}"
|
68
|
+
else
|
69
|
+
result[key] = "${#{prefixed_key}}"
|
70
|
+
end
|
33
71
|
end
|
72
|
+
result
|
73
|
+
end
|
34
74
|
|
35
|
-
|
36
|
-
|
37
|
-
|
75
|
+
# Strips the [*]-syntax from the given xcconfig key.
|
76
|
+
#
|
77
|
+
# @param [String] key
|
78
|
+
# The key to strip.
|
79
|
+
#
|
80
|
+
# @return [String] The stripped key.
|
81
|
+
#
|
82
|
+
def conditional_less_key(key)
|
83
|
+
brackets_index = key.index('[')
|
84
|
+
if brackets_index
|
85
|
+
key[0...brackets_index]
|
86
|
+
else
|
87
|
+
key
|
88
|
+
end
|
38
89
|
end
|
39
90
|
|
40
91
|
#-----------------------------------------------------------------------#
|
data/lib/cocoapods/installer.rb
CHANGED
@@ -356,21 +356,14 @@ module Pod
|
|
356
356
|
#
|
357
357
|
def add_dependency(dependent_target, dependency_target)
|
358
358
|
container_proxy = pods_project.new(Xcodeproj::Project::PBXContainerItemProxy)
|
359
|
-
|
359
|
+
container_proxy.container_portal = pods_project.root_object.uuid
|
360
360
|
container_proxy.proxy_type = '1'
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
# reference_proxy = pods_project.new(Xcodeproj::Project::PBXReferenceProxy)
|
366
|
-
# reference_proxy.path =
|
367
|
-
# reference_proxy.file_type =
|
368
|
-
# reference_proxy.remote_ref = container_proxy
|
369
|
-
# reference_proxy.source_tree = BUILT_PRODUCTS_DIR
|
361
|
+
container_proxy.remote_global_id_string = dependency_target.target.uuid
|
362
|
+
container_proxy.remote_info = dependency_target.target.name
|
370
363
|
|
371
364
|
dependency = pods_project.new(Xcodeproj::Project::PBXTargetDependency)
|
372
365
|
dependency.target = dependency_target.target
|
373
|
-
|
366
|
+
dependency.targetProxy = container_proxy
|
374
367
|
|
375
368
|
dependent_target.target.dependencies << dependency
|
376
369
|
end
|
@@ -55,16 +55,16 @@ module Pod
|
|
55
55
|
#
|
56
56
|
def create_xcconfig_file
|
57
57
|
path = library.xcconfig_path
|
58
|
+
public_gen = Generator::PublicPodXCConfig.new(library)
|
58
59
|
UI.message "- Generating public xcconfig file at #{UI.path(path)}" do
|
59
|
-
|
60
|
-
gen.save_as(path)
|
60
|
+
public_gen.save_as(path)
|
61
61
|
add_file_to_support_group(path)
|
62
62
|
end
|
63
63
|
|
64
64
|
path = library.xcconfig_private_path
|
65
|
+
private_gen = Generator::PrivatePodXCConfig.new(library, public_gen.xcconfig)
|
65
66
|
UI.message "- Generating private xcconfig file at #{UI.path(path)}" do
|
66
|
-
|
67
|
-
gen.save_as(path)
|
67
|
+
private_gen.save_as(path)
|
68
68
|
xcconfig_file_ref = add_file_to_support_group(path)
|
69
69
|
|
70
70
|
target.build_configurations.each do |c|
|
data/lib/cocoapods/project.rb
CHANGED
@@ -187,8 +187,9 @@ module Pod
|
|
187
187
|
#
|
188
188
|
def add_podfile(podfile_path)
|
189
189
|
podfile_path = Pathname.new(podfile_path)
|
190
|
-
podfile_ref
|
190
|
+
podfile_ref = new_file(relativize(podfile_path))
|
191
191
|
podfile_ref.xc_language_specification_identifier = 'xcode.lang.ruby'
|
192
|
+
podfile_ref.last_known_file_type = 'text'
|
192
193
|
podfile_ref
|
193
194
|
end
|
194
195
|
|
data/lib/cocoapods/validator.rb
CHANGED
@@ -211,7 +211,7 @@ module Pod
|
|
211
211
|
file_accessors = installer.aggregate_targets.map do |target|
|
212
212
|
target.pod_targets.map(&:file_accessors)
|
213
213
|
end.flatten
|
214
|
-
|
214
|
+
|
215
215
|
@file_accessor = file_accessors.find { |accessor| accessor.spec.root.name == spec.root.name }
|
216
216
|
config.silent
|
217
217
|
end
|
@@ -344,7 +344,7 @@ module Pod
|
|
344
344
|
# returns its output (bot STDOUT and STDERR).
|
345
345
|
#
|
346
346
|
def xcodebuild
|
347
|
-
`xcodebuild clean build 2>&1`
|
347
|
+
`xcodebuild clean build -target Pods 2>&1`
|
348
348
|
end
|
349
349
|
|
350
350
|
#-------------------------------------------------------------------------#
|
metadata
CHANGED
@@ -1,171 +1,198 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 67
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 22
|
9
|
+
- 2
|
10
|
+
version: 0.22.2
|
5
11
|
platform: ruby
|
6
|
-
authors:
|
12
|
+
authors:
|
7
13
|
- Eloy Duran
|
8
14
|
- Fabio Pelosin
|
9
15
|
autorequire:
|
10
16
|
bindir: bin
|
11
17
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
18
|
+
|
19
|
+
date: 2013-07-11 00:00:00 Z
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
15
22
|
name: cocoapods-core
|
16
|
-
requirement: !ruby/object:Gem::Requirement
|
17
|
-
requirements:
|
18
|
-
- - '='
|
19
|
-
- !ruby/object:Gem::Version
|
20
|
-
version: 0.22.1
|
21
|
-
type: :runtime
|
22
23
|
prerelease: false
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
version: 0.3.2
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - "="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 67
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
- 22
|
33
|
+
- 2
|
34
|
+
version: 0.22.2
|
35
35
|
type: :runtime
|
36
|
+
version_requirements: *id001
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: claide
|
36
39
|
prerelease: false
|
37
|
-
|
38
|
-
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
39
43
|
- - ~>
|
40
|
-
- !ruby/object:Gem::Version
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
hash: 23
|
46
|
+
segments:
|
47
|
+
- 0
|
48
|
+
- 3
|
49
|
+
- 2
|
41
50
|
version: 0.3.2
|
42
|
-
- !ruby/object:Gem::Dependency
|
43
|
-
name: cocoapods-downloader
|
44
|
-
requirement: !ruby/object:Gem::Requirement
|
45
|
-
requirements:
|
46
|
-
- - ~>
|
47
|
-
- !ruby/object:Gem::Version
|
48
|
-
version: 0.1.1
|
49
51
|
type: :runtime
|
52
|
+
version_requirements: *id002
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: cocoapods-downloader
|
50
55
|
prerelease: false
|
51
|
-
|
52
|
-
|
56
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
53
59
|
- - ~>
|
54
|
-
- !ruby/object:Gem::Version
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
hash: 25
|
62
|
+
segments:
|
63
|
+
- 0
|
64
|
+
- 1
|
65
|
+
- 1
|
55
66
|
version: 0.1.1
|
56
|
-
- !ruby/object:Gem::Dependency
|
57
|
-
name: xcodeproj
|
58
|
-
requirement: !ruby/object:Gem::Requirement
|
59
|
-
requirements:
|
60
|
-
- - ~>
|
61
|
-
- !ruby/object:Gem::Version
|
62
|
-
version: 0.8.0
|
63
67
|
type: :runtime
|
68
|
+
version_requirements: *id003
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: xcodeproj
|
64
71
|
prerelease: false
|
65
|
-
|
66
|
-
|
72
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
67
75
|
- - ~>
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
- !ruby/object:Gem::Version
|
76
|
-
version: '1.2'
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
hash: 61
|
78
|
+
segments:
|
79
|
+
- 0
|
80
|
+
- 8
|
81
|
+
- 1
|
82
|
+
version: 0.8.1
|
77
83
|
type: :runtime
|
84
|
+
version_requirements: *id004
|
85
|
+
- !ruby/object:Gem::Dependency
|
86
|
+
name: colored
|
78
87
|
prerelease: false
|
79
|
-
|
80
|
-
|
88
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
81
91
|
- - ~>
|
82
|
-
- !ruby/object:Gem::Version
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
- - ~>
|
89
|
-
- !ruby/object:Gem::Version
|
90
|
-
version: 0.0.4
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
hash: 11
|
94
|
+
segments:
|
95
|
+
- 1
|
96
|
+
- 2
|
97
|
+
version: "1.2"
|
91
98
|
type: :runtime
|
99
|
+
version_requirements: *id005
|
100
|
+
- !ruby/object:Gem::Dependency
|
101
|
+
name: escape
|
92
102
|
prerelease: false
|
93
|
-
|
94
|
-
|
103
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
104
|
+
none: false
|
105
|
+
requirements:
|
95
106
|
- - ~>
|
96
|
-
- !ruby/object:Gem::Version
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
hash: 23
|
109
|
+
segments:
|
110
|
+
- 0
|
111
|
+
- 0
|
112
|
+
- 4
|
97
113
|
version: 0.0.4
|
98
|
-
- !ruby/object:Gem::Dependency
|
99
|
-
name: json
|
100
|
-
requirement: !ruby/object:Gem::Requirement
|
101
|
-
requirements:
|
102
|
-
- - ~>
|
103
|
-
- !ruby/object:Gem::Version
|
104
|
-
version: 1.8.0
|
105
114
|
type: :runtime
|
115
|
+
version_requirements: *id006
|
116
|
+
- !ruby/object:Gem::Dependency
|
117
|
+
name: json
|
106
118
|
prerelease: false
|
107
|
-
|
108
|
-
|
119
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
120
|
+
none: false
|
121
|
+
requirements:
|
109
122
|
- - ~>
|
110
|
-
- !ruby/object:Gem::Version
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
hash: 55
|
125
|
+
segments:
|
126
|
+
- 1
|
127
|
+
- 8
|
128
|
+
- 0
|
111
129
|
version: 1.8.0
|
112
|
-
- !ruby/object:Gem::Dependency
|
113
|
-
name: open4
|
114
|
-
requirement: !ruby/object:Gem::Requirement
|
115
|
-
requirements:
|
116
|
-
- - ~>
|
117
|
-
- !ruby/object:Gem::Version
|
118
|
-
version: 1.3.0
|
119
130
|
type: :runtime
|
131
|
+
version_requirements: *id007
|
132
|
+
- !ruby/object:Gem::Dependency
|
133
|
+
name: open4
|
120
134
|
prerelease: false
|
121
|
-
|
122
|
-
|
135
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
136
|
+
none: false
|
137
|
+
requirements:
|
123
138
|
- - ~>
|
124
|
-
- !ruby/object:Gem::Version
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
hash: 27
|
141
|
+
segments:
|
142
|
+
- 1
|
143
|
+
- 3
|
144
|
+
- 0
|
125
145
|
version: 1.3.0
|
126
|
-
- !ruby/object:Gem::Dependency
|
127
|
-
name: activesupport
|
128
|
-
requirement: !ruby/object:Gem::Requirement
|
129
|
-
requirements:
|
130
|
-
- - ~>
|
131
|
-
- !ruby/object:Gem::Version
|
132
|
-
version: 3.2.13
|
133
146
|
type: :runtime
|
147
|
+
version_requirements: *id008
|
148
|
+
- !ruby/object:Gem::Dependency
|
149
|
+
name: activesupport
|
134
150
|
prerelease: false
|
135
|
-
|
136
|
-
|
151
|
+
requirement: &id009 !ruby/object:Gem::Requirement
|
152
|
+
none: false
|
153
|
+
requirements:
|
137
154
|
- - ~>
|
138
|
-
- !ruby/object:Gem::Version
|
155
|
+
- !ruby/object:Gem::Version
|
156
|
+
hash: 21
|
157
|
+
segments:
|
158
|
+
- 3
|
159
|
+
- 2
|
160
|
+
- 13
|
139
161
|
version: 3.2.13
|
140
|
-
|
162
|
+
type: :runtime
|
163
|
+
version_requirements: *id009
|
164
|
+
- !ruby/object:Gem::Dependency
|
141
165
|
name: bacon
|
142
|
-
requirement: !ruby/object:Gem::Requirement
|
143
|
-
requirements:
|
144
|
-
- - ~>
|
145
|
-
- !ruby/object:Gem::Version
|
146
|
-
version: '1.1'
|
147
|
-
type: :development
|
148
166
|
prerelease: false
|
149
|
-
|
150
|
-
|
167
|
+
requirement: &id010 !ruby/object:Gem::Requirement
|
168
|
+
none: false
|
169
|
+
requirements:
|
151
170
|
- - ~>
|
152
|
-
- !ruby/object:Gem::Version
|
153
|
-
|
171
|
+
- !ruby/object:Gem::Version
|
172
|
+
hash: 13
|
173
|
+
segments:
|
174
|
+
- 1
|
175
|
+
- 1
|
176
|
+
version: "1.1"
|
177
|
+
type: :development
|
178
|
+
version_requirements: *id010
|
154
179
|
description: |-
|
155
180
|
CocoaPods manages library dependencies for your Xcode project.
|
156
|
-
|
181
|
+
|
157
182
|
You specify the dependencies for your project in one easy text file. CocoaPods resolves dependencies between libraries, fetches source code for the dependencies, and creates and maintains an Xcode workspace to build your project.
|
158
|
-
|
183
|
+
|
159
184
|
Ultimately, the goal is to improve discoverability of, and engagement in, third party open-source libraries, by creating a more centralized ecosystem.
|
160
|
-
email:
|
185
|
+
email:
|
161
186
|
- eloy.de.enige@gmail.com
|
162
187
|
- fabiopelosin@gmail.com
|
163
|
-
executables:
|
188
|
+
executables:
|
164
189
|
- pod
|
165
190
|
- sandbox-pod
|
166
191
|
extensions: []
|
192
|
+
|
167
193
|
extra_rdoc_files: []
|
168
|
-
|
194
|
+
|
195
|
+
files:
|
169
196
|
- lib/cocoapods/command/help.rb
|
170
197
|
- lib/cocoapods/command/inter_process_communication.rb
|
171
198
|
- lib/cocoapods/command/lib.rb
|
@@ -230,41 +257,52 @@ files:
|
|
230
257
|
- LICENSE
|
231
258
|
- CHANGELOG.md
|
232
259
|
homepage: https://github.com/CocoaPods/CocoaPods
|
233
|
-
licenses:
|
260
|
+
licenses:
|
234
261
|
- MIT
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
*
|
247
|
-
|
248
|
-
|
249
|
-
|
262
|
+
post_install_message: "\n\
|
263
|
+
CHANGELOG:\n\n\
|
264
|
+
## 0.22.2\n\
|
265
|
+
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.22.1...0.22.2)\n\
|
266
|
+
\xE2\x80\xA2 [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.22.1...0.22.2)\n\
|
267
|
+
\xE2\x80\xA2 [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.8.0...0.8.1)\n\n\
|
268
|
+
###### Enhancements\n\n\
|
269
|
+
* The build settings of the Pods project and of its target have been updated to\n be in line with the new defaults of the future versions of Xcode.\n\n\
|
270
|
+
###### Bug fixes\n\n\
|
271
|
+
* Specifications defining build setting with the `[*]` syntax are now properly\n handled.\n [#1171](https://github.com/CocoaPods/CocoaPods/issues/1171)\n\n\
|
272
|
+
* The name of the files references are now properly set fixing a minor\n regression introduced by CocoaPods 0.22.1 and matching more closely Xcode\n behaviour.\n\n\
|
273
|
+
* The validator now builds the Pods target instead of the first target actually\n performing the validation.\n\n\
|
274
|
+
* Build settings defined through the `xcconfig` attribute of a `podspec` are now\n stripped of duplicate values when merged in an aggregate target.\n [#1189](https://github.com/CocoaPods/CocoaPods/issues/1189)\n\n\n"
|
250
275
|
rdoc_options: []
|
251
|
-
|
276
|
+
|
277
|
+
require_paths:
|
252
278
|
- lib
|
253
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
254
|
-
|
255
|
-
|
256
|
-
|
279
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
280
|
+
none: false
|
281
|
+
requirements:
|
282
|
+
- - ">="
|
283
|
+
- !ruby/object:Gem::Version
|
284
|
+
hash: 57
|
285
|
+
segments:
|
286
|
+
- 1
|
287
|
+
- 8
|
288
|
+
- 7
|
257
289
|
version: 1.8.7
|
258
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
290
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
291
|
+
none: false
|
292
|
+
requirements:
|
293
|
+
- - ">="
|
294
|
+
- !ruby/object:Gem::Version
|
295
|
+
hash: 3
|
296
|
+
segments:
|
297
|
+
- 0
|
298
|
+
version: "0"
|
263
299
|
requirements: []
|
300
|
+
|
264
301
|
rubyforge_project:
|
265
|
-
rubygems_version:
|
302
|
+
rubygems_version: 1.8.24
|
266
303
|
signing_key:
|
267
304
|
specification_version: 3
|
268
305
|
summary: An Objective-C library package manager.
|
269
306
|
test_files: []
|
307
|
+
|
270
308
|
has_rdoc:
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: a33164a53936d75565f0d57cbf118f7452714030
|
4
|
-
data.tar.gz: 5dfa0d590569a5ea0d4bbb89ec74089fdc3b315d
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: bb19c4f40df1b05c5aa5eef068884e94b5c9ed89433283346829375b21e2e7ee91fd36ee1ee1e6053b396cbb5fae2e332818451da26741cbc6e52633ae6bfda4
|
7
|
-
data.tar.gz: be0e7c7f4f883be762aa134ee01e39f425d65d4b57f47c9e5a5f0b7ec7ae57b853a4502c5dc3802ce53252af7bec4fb9cba1278cbdf660f9a94f945f84583a0c
|