Commit 3f15763d authored by Fabio Pelosin's avatar Fabio Pelosin

Merge branch 'master' into dirlist

* master:
  [UIPod] Robustness against missing authors.
  Release 0.15.0
  Bump Xcodeproj.
  [Git] UI improvements.
  [Installer] Show project genration step.
  [Linter] Fix lint with local option.
parents e05cc709 1eb9a22b
## Master ## Master
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.14.0...master)[Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.3.3...master) [CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.15.0...master)
## 0.15.0
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.14.0...0.15.0)[Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.3.3...0.3.4)
###### Enhancements ###### Enhancements
- Pod `install` will update the specs repo only if needed. - Pod `install` will update the specs repo only if needed.
......
GIT GIT
remote: git://github.com/CocoaPods/Xcodeproj.git remote: git://github.com/CocoaPods/Xcodeproj.git
revision: e3c513a66dee94b681588326bf1ce8ca4a30aef3 revision: 5a53472bf5342b2f17632fd53fa802930776406b
specs: specs:
xcodeproj (0.3.3) xcodeproj (0.3.4)
activesupport (~> 3.2.6) activesupport (~> 3.2.6)
GIT GIT
...@@ -17,7 +17,7 @@ GIT ...@@ -17,7 +17,7 @@ GIT
PATH PATH
remote: . remote: .
specs: specs:
cocoapods (0.14.0) cocoapods (0.15.0)
activesupport (~> 3.2.6) activesupport (~> 3.2.6)
colored (~> 1.2) colored (~> 1.2)
escape (~> 0.0.4) escape (~> 0.0.4)
...@@ -26,7 +26,7 @@ PATH ...@@ -26,7 +26,7 @@ PATH
octokit (~> 1.7) octokit (~> 1.7)
open4 (~> 1.3.0) open4 (~> 1.3.0)
rake (~> 0.9.0) rake (~> 0.9.0)
xcodeproj (>= 0.3.3) xcodeproj (>= 0.3.4)
GEM GEM
remote: http://rubygems.org/ remote: http://rubygems.org/
...@@ -35,7 +35,7 @@ GEM ...@@ -35,7 +35,7 @@ GEM
i18n (~> 0.6) i18n (~> 0.6)
multi_json (~> 1.0) multi_json (~> 1.0)
addressable (2.3.2) addressable (2.3.2)
awesome_print (1.0.2) awesome_print (1.1.0)
bacon (1.1.0) bacon (1.1.0)
coderay (1.0.7) coderay (1.0.7)
colored (1.2) colored (1.2)
...@@ -49,7 +49,7 @@ GEM ...@@ -49,7 +49,7 @@ GEM
hashie (1.2.0) hashie (1.2.0)
i18n (0.6.1) i18n (0.6.1)
json (1.7.5) json (1.7.5)
listen (0.5.0) listen (0.5.2)
metaclass (0.0.1) metaclass (0.0.1)
method_source (0.8) method_source (0.8)
mocha (0.11.4) mocha (0.11.4)
...@@ -58,7 +58,7 @@ GEM ...@@ -58,7 +58,7 @@ GEM
mocha (>= 0.9.8) mocha (>= 0.9.8)
multi_json (1.3.6) multi_json (1.3.6)
multipart-post (1.1.5) multipart-post (1.1.5)
octokit (1.13.0) octokit (1.15.1)
addressable (~> 2.2) addressable (~> 2.2)
faraday (~> 0.8) faraday (~> 0.8)
faraday_middleware (~> 0.8) faraday_middleware (~> 0.8)
...@@ -70,12 +70,12 @@ GEM ...@@ -70,12 +70,12 @@ GEM
method_source (~> 0.8) method_source (~> 0.8)
slop (~> 3.3.1) slop (~> 3.3.1)
rake (0.9.2.2) rake (0.9.2.2)
rb-fsevent (0.9.1) rb-fsevent (0.9.2)
redcarpet (2.1.1) redcarpet (2.1.1)
slop (3.3.3) slop (3.3.3)
terminal-notifier (1.4.2) terminal-notifier (1.4.2)
vcr (2.2.5) vcr (2.2.5)
webmock (1.8.10) webmock (1.8.11)
addressable (>= 2.2.7) addressable (>= 2.2.7)
crack (>= 0.1.7) crack (>= 0.1.7)
yard (0.8.2.1) yard (0.8.2.1)
......
...@@ -26,7 +26,7 @@ Gem::Specification.new do |s| ...@@ -26,7 +26,7 @@ Gem::Specification.new do |s|
s.executables = %w{ pod } s.executables = %w{ pod }
s.require_paths = %w{ lib } s.require_paths = %w{ lib }
s.add_runtime_dependency 'xcodeproj', '>= 0.3.3' s.add_runtime_dependency 'xcodeproj', '>= 0.3.4'
s.add_runtime_dependency 'faraday', '~> 0.8.1' s.add_runtime_dependency 'faraday', '~> 0.8.1'
s.add_runtime_dependency 'octokit', '~> 1.7' s.add_runtime_dependency 'octokit', '~> 1.7'
......
...@@ -12,7 +12,7 @@ unless Gem::Version::Requirement.new('>= 1.4.0').satisfied_by?(Gem::Version.new( ...@@ -12,7 +12,7 @@ unless Gem::Version::Requirement.new('>= 1.4.0').satisfied_by?(Gem::Version.new(
end end
module Pod module Pod
VERSION = '0.14.0' VERSION = '0.15.0'
class PlainInformative < StandardError class PlainInformative < StandardError
end end
......
...@@ -122,15 +122,15 @@ module Pod ...@@ -122,15 +122,15 @@ module Pod
def podfile_from_spec def podfile_from_spec
name = spec.name name = spec.name
podspec = file.realpath.to_s podspec = file.realpath
platform = @platform platform = @platform
local = local? local = local?
podfile = Pod::Podfile.new do podfile = Pod::Podfile.new do
platform(platform.to_sym, platform.deployment_target) platform(platform.to_sym, platform.deployment_target)
if (local) if (local)
pod name, :local => '/Users/fabio/Desktop/RegexHighlightView' pod name, :local => podspec.dirname.to_s
else else
pod name, :podspec => podspec pod name, :podspec => podspec.to_s
end end
end end
podfile podfile
......
...@@ -42,7 +42,7 @@ module Pod ...@@ -42,7 +42,7 @@ module Pod
end end
def authors def authors
spec.authors.keys.to_sentence spec.authors ? spec.authors.keys.to_sentence : ''
end end
def homepage def homepage
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment