motion-cocoapods 1.4.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/motion/project/cocoapods.rb +6 -2
- data/lib/motion/project/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 86d6c7c5167227a973fe0471b633907426c97ef4
|
|
4
|
+
data.tar.gz: 141d2122cd94435963fac2d43b98ad7dd9d8233a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc9acbed9f856e730a9cd7ec6c3366249ef9f700247e17cf32c9f76fc143f02e3e708159c9f8192a89945e045b801782fe3cad96e85b2b3c2eb7bd62a5310001
|
|
7
|
+
data.tar.gz: 2ea6e87fb6126226178fd6b708a9890f183c13b2e53520f33d5efa27c888c0ad1b950958b96ae226b6387dcbae963a746c95b46a83ed39b425304154f11d039e
|
data/README.md
CHANGED
|
@@ -68,7 +68,7 @@ module Motion::Project
|
|
|
68
68
|
def initialize(config)
|
|
69
69
|
@config = config
|
|
70
70
|
|
|
71
|
-
@podfile = Pod::Podfile.new {}
|
|
71
|
+
@podfile = Pod::Podfile.new(Pathname.new(Rake.original_dir) + 'Rakefile') {}
|
|
72
72
|
@podfile.platform((App.respond_to?(:template) ? App.template : :ios), config.deployment_target)
|
|
73
73
|
cp_config.podfile = @podfile
|
|
74
74
|
cp_config.skip_repo_update = true
|
|
@@ -150,7 +150,7 @@ module Motion::Project
|
|
|
150
150
|
# installed pods changes.
|
|
151
151
|
#
|
|
152
152
|
def install!(update)
|
|
153
|
-
pods_installer.
|
|
153
|
+
pods_installer.update = update
|
|
154
154
|
pods_installer.install!
|
|
155
155
|
if bridgesupport_file.exist? && !pods_installer.installed_specs.empty?
|
|
156
156
|
bridgesupport_file.delete
|
|
@@ -237,6 +237,8 @@ namespace :pod do
|
|
|
237
237
|
|
|
238
238
|
desc "Download and integrate newly added pods"
|
|
239
239
|
task :install => :update_spec_repos do
|
|
240
|
+
# TODO Should ideally not have to be controller manually.
|
|
241
|
+
Pod::UserInterface.title_level = 1
|
|
240
242
|
pods = App.config.pods
|
|
241
243
|
begin
|
|
242
244
|
need_install = pods.analyzer.needs_install?
|
|
@@ -244,6 +246,8 @@ namespace :pod do
|
|
|
244
246
|
# TODO fix this, see https://github.com/HipByte/motion-cocoapods/issues/57#issuecomment-17810809
|
|
245
247
|
need_install = true
|
|
246
248
|
end
|
|
249
|
+
# TODO Should ideally not have to be controller manually.
|
|
250
|
+
Pod::UserInterface.title_level = 0
|
|
247
251
|
pods.install!(false) if need_install
|
|
248
252
|
end
|
|
249
253
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: motion-cocoapods
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Laurent Sansonetti
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-04-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cocoapods
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '>='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.32.1
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '>='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.
|
|
26
|
+
version: 0.32.1
|
|
27
27
|
description: motion-cocoapods allows RubyMotion projects to have access to the CocoaPods
|
|
28
28
|
dependency manager.
|
|
29
29
|
email: lrz@hipbyte.com
|