Skip to content

Commit 0dadd3e

Browse files
Update podfiles to fetch from the current branch
1 parent d157a73 commit 0dadd3e

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

Examples/HelloWorld-MultiTarget/Podfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@ use_frameworks!
22

33
target 'HelloWorld' do
44
platform :osx, '10.10'
5-
pod 'Criollo', :git => '../../', :branch => 'develop'
5+
pod 'Criollo', :git => '../../'
66
pod 'CSSystemInfoHelper', '~> 1.4'
77
end
88

99
target 'HelloWorld-Cocoa' do
1010
platform :osx, '10.10'
11-
pod 'Criollo', :git => '../../', :branch => 'develop'
11+
pod 'Criollo', :git => '../../'
1212
pod 'CSSystemInfoHelper', '~> 1.4'
1313
end
1414

1515
target 'HelloWorld-iOS' do
1616
platform :ios, '8.0'
17-
pod 'Criollo', :git => '../../', :branch => 'develop'
17+
pod 'Criollo', :git => '../../'
1818
pod 'CSSystemInfoHelper', '~> 1.4'
1919
end
2020

2121
target 'HelloWorld-tvOS' do
2222
platform :tvos, '9.0'
23-
pod 'Criollo', :git => '../../', :branch => 'develop'
23+
pod 'Criollo', :git => '../../'
2424
pod 'CSSystemInfoHelper', '~> 1.4'
2525
end

Examples/HelloWorld-ObjC/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ platform :osx, '10.10'
22
use_frameworks!
33

44
target 'HelloWorld-ObjC' do
5-
pod 'Criollo', :git => '../../', :branch => 'develop'
5+
pod 'Criollo', :git => '../../'
66
pod 'CSSystemInfoHelper', '~> 1.4'
77
end
88

Examples/HelloWorld-Swift/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ platform :osx, '10.10'
22
use_frameworks!
33

44
target 'HelloWorld-Swift' do
5-
pod 'Criollo', :git => '../../', :branch => 'develop'
5+
pod 'Criollo', :git => '../../'
66
pod 'CSSystemInfoHelper', '~> 1.4'
77
end
88

Examples/HelloWorld/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ platform :osx, '10.10'
22
use_frameworks!
33

44
target 'HelloWorld' do
5-
pod 'Criollo', :git => '../../', :branch => 'develop'
5+
pod 'Criollo', :git => '../../'
66
end
77

Examples/LongRequest/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ platform :osx, '10.10'
22
use_frameworks!
33

44
target 'LongRequest' do
5-
pod 'Criollo', :git => '../../', :branch => 'develop'
5+
pod 'Criollo', :git => '../../'
66
end
77

Examples/SecureHTTPServer/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ target 'SecureHTTPServer' do
33
use_frameworks!
44
platform :ios, '8.0'
55

6-
pod 'Criollo', :git => '../../', :branch => 'develop'
6+
pod 'Criollo', :git => '../../'
77
pod 'CSSystemInfoHelper', '~> 1.4'
88
end

Examples/ServerStats/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ platform :osx, '10.10'
22
use_frameworks!
33

44
target 'CriolloServerStats' do
5-
pod 'Criollo', :git => '../../', :branch => 'develop'
5+
pod 'Criollo', :git => '../../'
66
pod 'CSSystemInfoHelper', '~> 1.4'
77
end
88

0 commit comments

Comments
 (0)