cocoapods 0.26.2 → 0.27.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +54 -0
- data/README.md +21 -54
- data/lib/cocoapods/command/repo.rb +27 -0
- data/lib/cocoapods/gem_version.rb +1 -1
- data/lib/cocoapods/generator/acknowledgements/plist.rb +1 -2
- data/lib/cocoapods/generator/copy_resources_script.rb +12 -0
- data/lib/cocoapods/generator/xcconfig/xcconfig_helper.rb +10 -11
- data/lib/cocoapods/installer/target_installer.rb +7 -7
- metadata +43 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ceb7922cdc8bd1088f2ce4dd8409763be3f4fd6b
|
4
|
+
data.tar.gz: e14ce1a93ba0dec31526c0f398542743f425002a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 415a9513f3461ec499851eb7e6f8257d113968ef8a18a137364a3776841fbbf1ba21c138854ad7b730ac83af112d1a4c20bd2cfe9cf5069b23f53a7000e51a7c
|
7
|
+
data.tar.gz: a679c1b914a37bc727e91add5421ff4c819546980d0921ba0084b60465ca1c46736732061bc2afba5e9e60b8d4a597f4641f9b4bac45e402db5957aac732e2c5
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,60 @@
|
|
2
2
|
|
3
3
|
To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides/installing_cocoapods.html).
|
4
4
|
|
5
|
+
## 0.27.0
|
6
|
+
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.26.2...0.27.0)
|
7
|
+
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.26.2...0.27.0)
|
8
|
+
• [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.13.0...0.14.0)
|
9
|
+
|
10
|
+
###### Enhancements
|
11
|
+
|
12
|
+
* The xcodeproj gem now comes bundled with prebuilt binaries for the Ruby
|
13
|
+
versions that come with OS X 10.8 and 10.9. Users now no longer need to
|
14
|
+
install the Xcode Command Line Tools or deal with the Ruby C header location.
|
15
|
+
[Eloy Durán](https://github.com/alloy)
|
16
|
+
[Xcodeproj#88](https://github.com/CocoaPods/Xcodeproj/issues/88)
|
17
|
+
|
18
|
+
* Targets passed to the `link_with` method of the Podfile DSL no longer need
|
19
|
+
to be explicitly passed as an array. `link_with ['target1', 'target2']` can
|
20
|
+
now be written as `link_with 'target1', 'target2'`.
|
21
|
+
[Adam Sharp](https://github.com/sharplet)
|
22
|
+
[Core#30](https://github.com/CocoaPods/Core/pull/30)
|
23
|
+
|
24
|
+
* The copy resources script now compiles xcassets resources.
|
25
|
+
[Ulrik Damm](https://github.com/ulrikdamm)
|
26
|
+
[#1427](https://github.com/CocoaPods/CocoaPods/pull/1427)
|
27
|
+
|
28
|
+
* `pod repo` now support a `remove ['repo_name']` command.
|
29
|
+
[Joshua Kalpin](https://github.com/Kapin)
|
30
|
+
[#1493](https://github.com/CocoaPods/CocoaPods/issues/1493)
|
31
|
+
[#1484](https://github.com/CocoaPods/CocoaPods/issues/1484)
|
32
|
+
|
33
|
+
###### Bug Fixes
|
34
|
+
|
35
|
+
* The architecture is now set in the build settings of the user build
|
36
|
+
configurations.
|
37
|
+
[Fabio Pelosin](https://github.com/irrationalfab)
|
38
|
+
[#1450](https://github.com/CocoaPods/CocoaPods/issues/1462)
|
39
|
+
[#1462](https://github.com/CocoaPods/CocoaPods/issues/1462)
|
40
|
+
|
41
|
+
* Fixed a crash related to CocoaPods being unable to resolve an unique build
|
42
|
+
setting of an user target with custom build configurations.
|
43
|
+
[Fabio Pelosin](https://github.com/irrationalfab)
|
44
|
+
[#1462](https://github.com/CocoaPods/CocoaPods/issues/1462)
|
45
|
+
[#1463](https://github.com/CocoaPods/CocoaPods/issues/1463)
|
46
|
+
[#1457](https://github.com/CocoaPods/CocoaPods/issues/1457)
|
47
|
+
|
48
|
+
* Fixed a defect which prevented subspecs from being dependant on a pod with a
|
49
|
+
name closely matching the name of one of the subspec's parents.
|
50
|
+
[Noah McCann](https://github.com/nmccann)
|
51
|
+
[#29](https://github.com/CocoaPods/Core/pull/29)
|
52
|
+
|
53
|
+
* The developer dir relative to the SDK is not added anymore if testing
|
54
|
+
frameworks are detected in OS X targets, as it doesn't exists, avoiding the
|
55
|
+
presentation of the relative warning in Xcode.
|
56
|
+
[Fabio Pelosin](https://github.com/irrationalfab)
|
57
|
+
|
58
|
+
|
5
59
|
## 0.26.2
|
6
60
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.26.1...0.26.2)
|
7
61
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.26.1...0.26.2)
|
data/README.md
CHANGED
@@ -1,11 +1,12 @@
|
|
1
|
-
# CocoaPods
|
1
|
+
# CocoaPods
|
2
|
+
|
3
|
+
### the Objective-C dependency manager
|
2
4
|
|
3
5
|
[![Build Status](https://travis-ci.org/CocoaPods/CocoaPods.png?branch=master)](https://travis-ci.org/CocoaPods/CocoaPods)
|
4
|
-
[![Code Climate](https://codeclimate.com/github/CocoaPods/CocoaPods.png)](https://codeclimate.com/github/CocoaPods/CocoaPods)
|
5
|
-
[![Dependency Status](https://gemnasium.com/CocoaPods/CocoaPods.png)](https://gemnasium.com/CocoaPods/CocoaPods)
|
6
6
|
[![Gem Version](https://badge.fury.io/rb/cocoapods.png)](http://badge.fury.io/rb/cocoapods)
|
7
|
+
[![Code Climate](https://codeclimate.com/github/CocoaPods/CocoaPods.png)](https://codeclimate.com/github/CocoaPods/CocoaPods)
|
7
8
|
|
8
|
-
CocoaPods manages
|
9
|
+
CocoaPods manages dependencies for your Xcode project.
|
9
10
|
|
10
11
|
You specify the dependencies for your project in one easy text file. CocoaPods
|
11
12
|
resolves dependencies between libraries, fetches source code for the
|
@@ -22,17 +23,28 @@ See the [NSScreencast](https://twitter.com/NSScreencast) episode about [using
|
|
22
23
|
CocoaPods](http://nsscreencast.com/episodes/5-cocoapods) for a quick overview.
|
23
24
|
|
24
25
|
|
26
|
+
## Sponsors
|
27
|
+
|
28
|
+
Lovingly sponsored by [Fingertips](http://www.fngtps.com),
|
29
|
+
[Hipbyte](http://www.hipbyte.com), [Artsy](http://artsy.net) and
|
30
|
+
[Sauspiel](https://www.sauspiel.de).
|
31
|
+
|
32
|
+
## Collaborate
|
33
|
+
|
34
|
+
All CocoaPods development happens on GitHub, contributions make good karma and
|
35
|
+
we welcome with joy new contributors.
|
36
|
+
|
25
37
|
## Links
|
26
38
|
|
27
39
|
| Link | Description |
|
28
40
|
| :----- | :------ |
|
29
41
|
[CocoaPods.org](http://cocoapods.org/) | Homepage and search for Pods.
|
30
|
-
[@CocoaPods](http://twitter.com/CocoaPods) | Follow CocoaPods on Twitter to
|
31
|
-
[
|
42
|
+
[@CocoaPods](http://twitter.com/CocoaPods) | Follow CocoaPods on Twitter to stay up to date.
|
43
|
+
[Blog](http://blog.cocoapods.org) | The CocoaPods blog.
|
44
|
+
[Mailing List](http://groups.google.com/group/cocoapods) | Feel free to ask any kind of question.
|
32
45
|
[Documentation](http://docs.cocoapods.org) | Everything you want to know about CocoaPods.
|
33
46
|
[Changelog](https://github.com/CocoaPods/CocoaPods/blob/master/CHANGELOG.md) | See the changes introduced by each CocoaPods version.
|
34
|
-
[RSS
|
35
|
-
|
47
|
+
[New Pods RSS](http://feeds.cocoapods.org/new-pods.rss) | Don't miss any new Pod.
|
36
48
|
|
37
49
|
## Projects
|
38
50
|
|
@@ -42,53 +54,8 @@ CocoaPods is composed by the following projects:
|
|
42
54
|
| :----- | :------ | :--- | :--- |
|
43
55
|
| [![Build Status](https://secure.travis-ci.org/CocoaPods/CocoaPods.png?branch=master)](http://travis-ci.org/CocoaPods/CocoaPods) | [CocoaPods](https://github.com/CocoaPods/CocoaPods) | The CocoaPods command line tool. | [docs](http://docs.cocoapods.org/cocoapods)
|
44
56
|
| [![Build Status](https://secure.travis-ci.org/CocoaPods/Core.png?branch=master)](http://travis-ci.org/CocoaPods/Core) | [CocoaPods Core](https://github.com/CocoaPods/Core) | Support for working with specifications and podfiles. | [docs](http://docs.cocoapods.org/cocoapods_core)
|
45
|
-
| [![Build Status](https://secure.travis-ci.org/CocoaPods/cocoapods-downloader.png?branch=master)](http://travis-ci.org/CocoaPods/cocoapods-downloader) |[CocoaPods Downloader](https://github.com/CocoaPods/cocoapods-downloader) |
|
57
|
+
| [![Build Status](https://secure.travis-ci.org/CocoaPods/cocoapods-downloader.png?branch=master)](http://travis-ci.org/CocoaPods/cocoapods-downloader) |[CocoaPods Downloader](https://github.com/CocoaPods/cocoapods-downloader) | Downloaders for various source types. | [docs](http://docs.cocoapods.org/cocoapods_downloader/index.html)
|
46
58
|
| [![Build Status](https://travis-ci.org/CocoaPods/Xcodeproj.png?branch=master)](https://travis-ci.org/CocoaPods/Xcodeproj) | [Xcodeproj](https://github.com/CocoaPods/Xcodeproj) | Create and modify Xcode projects from Ruby. | [docs](http://docs.cocoapods.org/xcodeproj/index.html)
|
47
59
|
| [![Build Status](https://travis-ci.org/CocoaPods/CLAide.png?branch=master)](https://travis-ci.org/CocoaPods/CLAide) | [CLAide](https://github.com/CocoaPods/CLAide) | A small command-line interface framework. | [docs](http://docs.cocoapods.org/claide/index.html)
|
48
60
|
| [![Build Status](https://secure.travis-ci.org/CocoaPods/Specs.png?branch=master)](http://travis-ci.org/CocoaPods/Specs) | [Master Repo ](https://github.com/CocoaPods/Specs) | Master repository of specifications. | [guide](http://docs.cocoapods.org/guides/contributing_to_the_master_repo.html)
|
49
61
|
|
50
|
-
|
51
|
-
## Collaborate
|
52
|
-
|
53
|
-
All CocoaPods development happens on GitHub, contributions make good karma and
|
54
|
-
we welcome with joy new contributors.
|
55
|
-
|
56
|
-
# Sponsors
|
57
|
-
|
58
|
-
- [@fngtps](http://twitter.com/fngtps) is donating time to work on the design
|
59
|
-
of the forthcoming cocoapods.org website and donated the money to hire [Max
|
60
|
-
Steenbergen](http://twitter.com/maxsteenbergen) to design [an
|
61
|
-
icon](http://drbl.in/cpmL) for it.
|
62
|
-
- [@sauspiel](http://twitter.com/Sauspiel) uses CocoaPods for their games and
|
63
|
-
have hired @alloy to add features and specs they needed. These are Nimbus,
|
64
|
-
QuincyKit, and HockeyKit. For the [Nimbus
|
65
|
-
spec](https://github.com/CocoaPods/Specs/blob/master/Nimbus/0.9.0/Nimbus.podspec),
|
66
|
-
the ‘subspecs’ feature was added.
|
67
|
-
|
68
|
-
# Endorsements
|
69
|
-
|
70
|
-
- “I am crazy excited about this. With the growing number of Objective-C
|
71
|
-
libraries, this will make things so much better.” –– [Sam
|
72
|
-
Soffes](http://news.ycombinator.com/item?id=3009154)
|
73
|
-
- “Are you doing open source iOS components? You really should support
|
74
|
-
@CocoaPods!” –– [Matthias
|
75
|
-
Tretter](http://twitter.com/#!/myell0w/status/134955697740840961)
|
76
|
-
- “So glad someone has finally done this...” –– [Tom
|
77
|
-
Wilson](http://news.ycombinator.com/item?id=3009349)
|
78
|
-
- “Anybody who has tasted the coolness of RubyGems (and @gembundler)
|
79
|
-
understands how cool CocoaPods might be.” –– [StuFF
|
80
|
-
mc](http://twitter.com/#!/stuffmc/status/115374231591731200)
|
81
|
-
- “I will be working on getting several of my Objective-C libraries ready for
|
82
|
-
CocoaPods this week!” –– [Luke
|
83
|
-
Redpath](http://twitter.com/#!/lukeredpath/status/115510581921988608)
|
84
|
-
- “Really digg how @alloy is building a potential game changer” –– [Klaas
|
85
|
-
Speller](https://twitter.com/#!/spllr/status/115914209438601216)
|
86
|
-
- “@alloy's making an Objective-C package manager. This is fantastic news
|
87
|
-
kids!” –– [Josh
|
88
|
-
Abernathy](http://twitter.com/#!/joshaber/status/115273577703555073)
|
89
|
-
- “A package manager for Cocoa/Objective-C, built with @MacRuby. Awesomeness!”
|
90
|
-
–– [Johannes
|
91
|
-
Fahrenkrug](http://twitter.com/#!/jfahrenkrug/status/115303240286998528)
|
92
|
-
- “This is awesome, I love endorsements!” –– [Appie
|
93
|
-
Durán](http://twitter.com/#!/AppieDuran)
|
94
|
-
|
@@ -133,6 +133,33 @@ module Pod
|
|
133
133
|
|
134
134
|
#-----------------------------------------------------------------------#
|
135
135
|
|
136
|
+
class Remove < Repo
|
137
|
+
self.summary = 'Remove a spec repo'
|
138
|
+
|
139
|
+
self.description = <<-DESC
|
140
|
+
Deletes the remote named `NAME` from the local spec-repos directory at `~/.cocoapods/repos/.`
|
141
|
+
DESC
|
142
|
+
|
143
|
+
self.arguments = 'NAME'
|
144
|
+
|
145
|
+
def initialize(argv)
|
146
|
+
@name = argv.shift_argument
|
147
|
+
super
|
148
|
+
end
|
149
|
+
|
150
|
+
def validate!
|
151
|
+
super
|
152
|
+
help! 'Deleting a repo needs a `NAME`.' unless @name
|
153
|
+
help! "repo #{@name} does not exist" unless File.directory?(dir)
|
154
|
+
end
|
155
|
+
|
156
|
+
def run
|
157
|
+
UI.section("Removing spec repo `#{@name}`") do
|
158
|
+
FileUtils.rm_rf(dir)
|
159
|
+
end
|
160
|
+
end
|
161
|
+
end
|
162
|
+
|
136
163
|
extend Executable
|
137
164
|
executable :git
|
138
165
|
|
@@ -2,13 +2,12 @@ module Pod
|
|
2
2
|
module Generator
|
3
3
|
|
4
4
|
class Plist < Acknowledgements
|
5
|
-
require "xcodeproj/xcodeproj_ext"
|
6
|
-
|
7
5
|
def self.path_from_basepath(path)
|
8
6
|
Pathname.new(path.dirname + "#{path.basename.to_s}.plist")
|
9
7
|
end
|
10
8
|
|
11
9
|
def save_as(path)
|
10
|
+
require 'xcodeproj/ext'
|
12
11
|
Xcodeproj.write_plist(plist, path)
|
13
12
|
end
|
14
13
|
|
@@ -73,6 +73,7 @@ module Pod
|
|
73
73
|
script += %Q[install_resource "#{resource}"\n]
|
74
74
|
end
|
75
75
|
script += RSYNC_CALL
|
76
|
+
script += XCASSETS_COMPILE
|
76
77
|
script
|
77
78
|
end
|
78
79
|
|
@@ -109,6 +110,8 @@ install_resource()
|
|
109
110
|
echo "xcrun momc \\"${PODS_ROOT}/$1\\" \\"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\\""
|
110
111
|
xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd"
|
111
112
|
;;
|
113
|
+
*.xcassets)
|
114
|
+
;;
|
112
115
|
/*)
|
113
116
|
echo "$1"
|
114
117
|
echo "$1" >> "$RESOURCES_TO_COPY"
|
@@ -131,6 +134,15 @@ fi
|
|
131
134
|
rm -f "$RESOURCES_TO_COPY"
|
132
135
|
EOS
|
133
136
|
|
137
|
+
|
138
|
+
XCASSETS_COMPILE = <<EOS
|
139
|
+
|
140
|
+
if [ `find . -name '*.xcassets' | wc -l` -ne 0 ]
|
141
|
+
then
|
142
|
+
DEVICE=`if [ "${TARGETED_DEVICE_FAMILY}" -eq 1 ]; then echo "iphone"; else echo "ipad"; fi`
|
143
|
+
find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" --target-device "${DEVICE}" --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.${WRAPPER_EXTENSION}"
|
144
|
+
fi
|
145
|
+
EOS
|
134
146
|
end
|
135
147
|
end
|
136
148
|
end
|
@@ -46,7 +46,7 @@ module Pod
|
|
46
46
|
xcconfig.libraries.merge(consumer.libraries)
|
47
47
|
xcconfig.frameworks.merge(consumer.frameworks)
|
48
48
|
xcconfig.weak_frameworks.merge(consumer.weak_frameworks)
|
49
|
-
add_developers_frameworks_if_needed(xcconfig)
|
49
|
+
add_developers_frameworks_if_needed(xcconfig, consumer.platform_name)
|
50
50
|
end
|
51
51
|
|
52
52
|
# Configures the given Xcconfig with the the build settings for the given
|
@@ -87,14 +87,6 @@ module Pod
|
|
87
87
|
xcconfig.merge!(build_settings)
|
88
88
|
end
|
89
89
|
|
90
|
-
# @return [Array<String>] The search paths for the developer frameworks.
|
91
|
-
#
|
92
|
-
DEVELOPER_FRAMEWORKS_SEARCH_PATHS = [
|
93
|
-
'$(inherited)',
|
94
|
-
'"$(SDKROOT)/Developer/Library/Frameworks"',
|
95
|
-
'"$(DEVELOPER_LIBRARY_DIR)/Frameworks"'
|
96
|
-
]
|
97
|
-
|
98
90
|
# Adds the search paths of the developer frameworks to the specification
|
99
91
|
# if needed. This is done because the `SenTestingKit` requires them and
|
100
92
|
# adding them to each specification which requires it is repetitive and
|
@@ -105,16 +97,23 @@ module Pod
|
|
105
97
|
#
|
106
98
|
# @return [void]
|
107
99
|
#
|
108
|
-
def self.add_developers_frameworks_if_needed(xcconfig)
|
100
|
+
def self.add_developers_frameworks_if_needed(xcconfig, platform)
|
109
101
|
matched_frameworks = xcconfig.frameworks & ['XCTest', 'SenTestingKit']
|
110
102
|
unless matched_frameworks.empty?
|
111
103
|
search_paths = xcconfig.attributes['FRAMEWORK_SEARCH_PATHS'] ||= ''
|
112
|
-
|
104
|
+
search_paths_to_add = []
|
105
|
+
search_paths_to_add << '$(inherited)'
|
106
|
+
search_paths_to_add << '"$(DEVELOPER_LIBRARY_DIR)/Frameworks"'
|
107
|
+
if platform == :ios
|
108
|
+
search_paths_to_add << '"$(SDKROOT)/Developer/Library/Frameworks"'
|
109
|
+
end
|
110
|
+
search_paths_to_add.each do |search_path|
|
113
111
|
unless search_paths.include?(search_path)
|
114
112
|
search_paths << ' ' unless search_paths.empty?
|
115
113
|
search_paths << search_path
|
116
114
|
end
|
117
115
|
end
|
116
|
+
search_paths
|
118
117
|
end
|
119
118
|
end
|
120
119
|
|
@@ -43,18 +43,18 @@ module Pod
|
|
43
43
|
deployment_target = library.platform.deployment_target.to_s
|
44
44
|
@target = project.new_target(:static_library, name, platform, deployment_target)
|
45
45
|
|
46
|
+
library.user_build_configurations.each do |bc_name, type|
|
47
|
+
configuration = @target.add_build_configuration(bc_name, type)
|
48
|
+
end
|
49
|
+
|
50
|
+
|
46
51
|
settings = {}
|
47
52
|
if library.archs
|
48
53
|
settings['ARCHS'] = library.archs
|
49
|
-
else
|
50
|
-
settings.delete('ARCHS')
|
51
54
|
end
|
52
55
|
|
53
|
-
@target.
|
54
|
-
|
55
|
-
|
56
|
-
library.user_build_configurations.each do |bc_name, type|
|
57
|
-
@target.add_build_configuration(bc_name, type)
|
56
|
+
@target.build_configurations.each do |configuration|
|
57
|
+
configuration.build_settings.merge!(settings)
|
58
58
|
end
|
59
59
|
|
60
60
|
library.target = @target
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.27.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eloy Duran
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-10-
|
12
|
+
date: 2013-10-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: cocoapods-core
|
@@ -17,14 +17,14 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - '='
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 0.
|
20
|
+
version: 0.27.0
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - '='
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 0.
|
27
|
+
version: 0.27.0
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: claide
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,14 +59,14 @@ dependencies:
|
|
59
59
|
requirements:
|
60
60
|
- - ~>
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: 0.
|
62
|
+
version: 0.14.0
|
63
63
|
type: :runtime
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
67
|
- - ~>
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: 0.
|
69
|
+
version: 0.14.0
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
71
|
name: colored
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
@@ -127,16 +127,22 @@ dependencies:
|
|
127
127
|
name: activesupport
|
128
128
|
requirement: !ruby/object:Gem::Requirement
|
129
129
|
requirements:
|
130
|
-
- -
|
130
|
+
- - '>='
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: 3.2.15
|
133
|
+
- - <
|
131
134
|
- !ruby/object:Gem::Version
|
132
|
-
version: '
|
135
|
+
version: '4'
|
133
136
|
type: :runtime
|
134
137
|
prerelease: false
|
135
138
|
version_requirements: !ruby/object:Gem::Requirement
|
136
139
|
requirements:
|
137
|
-
- -
|
140
|
+
- - '>='
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
version: 3.2.15
|
143
|
+
- - <
|
138
144
|
- !ruby/object:Gem::Version
|
139
|
-
version: '
|
145
|
+
version: '4'
|
140
146
|
- !ruby/object:Gem::Dependency
|
141
147
|
name: bacon
|
142
148
|
requirement: !ruby/object:Gem::Requirement
|
@@ -235,16 +241,33 @@ homepage: https://github.com/CocoaPods/CocoaPods
|
|
235
241
|
licenses:
|
236
242
|
- MIT
|
237
243
|
metadata: {}
|
238
|
-
post_install_message: "\nCHANGELOG:\n\n## 0.
|
239
|
-
[cocoapods-core](https://github.com/CocoaPods/Core/compare/0.26.
|
240
|
-
|
241
|
-
the
|
242
|
-
|
243
|
-
\ [#
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
244
|
+
post_install_message: "\nCHANGELOG:\n\n## 0.27.0\n[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.26.2...0.27.0)\n•
|
245
|
+
[cocoapods-core](https://github.com/CocoaPods/Core/compare/0.26.2...0.27.0)\n• [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.13.0...0.14.0)\n\n######
|
246
|
+
Enhancements\n\n* The xcodeproj gem now comes bundled with prebuilt binaries for
|
247
|
+
the Ruby\n versions that come with OS X 10.8 and 10.9. Users now no longer need
|
248
|
+
to\n install the Xcode Command Line Tools or deal with the Ruby C header location.\n
|
249
|
+
\ [Eloy Durán](https://github.com/alloy)\n [Xcodeproj#88](https://github.com/CocoaPods/Xcodeproj/issues/88)\n\n*
|
250
|
+
Targets passed to the `link_with` method of the Podfile DSL no longer need\n to
|
251
|
+
be explicitly passed as an array. `link_with ['target1', 'target2']` can\n now
|
252
|
+
be written as `link_with 'target1', 'target2'`.\n [Adam Sharp](https://github.com/sharplet)\n
|
253
|
+
\ [Core#30](https://github.com/CocoaPods/Core/pull/30)\n\n* The copy resources script
|
254
|
+
now compiles xcassets resources.\n [Ulrik Damm](https://github.com/ulrikdamm)\n
|
255
|
+
\ [#1427](https://github.com/CocoaPods/CocoaPods/pull/1427)\n\n* `pod repo` now
|
256
|
+
support a `remove ['repo_name']` command.\n [Joshua Kalpin](https://github.com/Kapin)\n
|
257
|
+
\ [#1493](https://github.com/CocoaPods/CocoaPods/issues/1493)\n [#1484](https://github.com/CocoaPods/CocoaPods/issues/1484)\n\n######
|
258
|
+
Bug Fixes\n\n* The architecture is now set in the build settings of the user build\n
|
259
|
+
\ configurations.\n [Fabio Pelosin](https://github.com/irrationalfab)\n [#1450](https://github.com/CocoaPods/CocoaPods/issues/1462)\n
|
260
|
+
\ [#1462](https://github.com/CocoaPods/CocoaPods/issues/1462)\n\n* Fixed a crash
|
261
|
+
related to CocoaPods being unable to resolve an unique build\n setting of an user
|
262
|
+
target with custom build configurations. \n [Fabio Pelosin](https://github.com/irrationalfab)\n
|
263
|
+
\ [#1462](https://github.com/CocoaPods/CocoaPods/issues/1462)\n [#1463](https://github.com/CocoaPods/CocoaPods/issues/1463)\n
|
264
|
+
\ [#1457](https://github.com/CocoaPods/CocoaPods/issues/1457)\n\n* Fixed a defect
|
265
|
+
which prevented subspecs from being dependant on a pod with a\n name closely matching
|
266
|
+
the name of one of the subspec's parents. \n [Noah McCann](https://github.com/nmccann)\n
|
267
|
+
\ [#29](https://github.com/CocoaPods/Core/pull/29)\n\n* The developer dir relative
|
268
|
+
to the SDK is not added anymore if testing \n frameworks are detected in OS X targets,
|
269
|
+
as it doesn't exists, avoiding the\n presentation of the relative warning in Xcode.\n
|
270
|
+
\ [Fabio Pelosin](https://github.com/irrationalfab)\n\n\n"
|
248
271
|
rdoc_options: []
|
249
272
|
require_paths:
|
250
273
|
- lib
|