motion-cocoapods 1.4.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b763eae72ff22dc16f112c56c334712927a268c2
4
- data.tar.gz: d33fb42510b1aabd3ee3898121d8872833d58603
3
+ metadata.gz: 86d6c7c5167227a973fe0471b633907426c97ef4
4
+ data.tar.gz: 141d2122cd94435963fac2d43b98ad7dd9d8233a
5
5
  SHA512:
6
- metadata.gz: 523db5f80d68402f1a7109ad58ada92d4faf3fd37a478c16e19fc5e752cfeb64b406cd4344c402ce67c9972a6c9b5f8ecc8ea9b8750db815523e4a697cd99a82
7
- data.tar.gz: 2f5037a251bc4d2072baced390d552755a3cca1e42f414ae0c294a84ef2f0cccc1812029f3ff07a640d7ee0ae71fba6f3a4a9158fc548680049cd58fa6c88ca5
6
+ metadata.gz: dc9acbed9f856e730a9cd7ec6c3366249ef9f700247e17cf32c9f76fc143f02e3e708159c9f8192a89945e045b801782fe3cad96e85b2b3c2eb7bd62a5310001
7
+ data.tar.gz: 2ea6e87fb6126226178fd6b708a9890f183c13b2e53520f33d5efa27c888c0ad1b950958b96ae226b6387dcbae963a746c95b46a83ed39b425304154f11d039e
data/README.md CHANGED
@@ -13,7 +13,7 @@ $ [sudo] gem install motion-cocoapods
13
13
  Or if you use Bundler:
14
14
 
15
15
  ```ruby
16
- gem 'motion-cocoapods', '~> 1.4.0'
16
+ gem 'motion-cocoapods', '~> 1.4.1'
17
17
  ```
18
18
 
19
19
 
@@ -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.update_mode = update
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
 
@@ -24,6 +24,6 @@
24
24
 
25
25
  module Motion::Project
26
26
  class CocoaPods
27
- VERSION = '1.4.0'
27
+ VERSION = '1.4.1'
28
28
  end
29
29
  end
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.0
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: 2013-10-10 00:00:00.000000000 Z
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.26.2
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.2
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