Skip to content

Commit

Permalink
(#198) get all projects building in xcode 6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldart committed Jul 30, 2015
1 parent c09430a commit abc26be
Show file tree
Hide file tree
Showing 4 changed files with 163 additions and 29 deletions.
24 changes: 23 additions & 1 deletion Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,26 @@ end
target :"SignalR.Client.Tests.OSX", :exclusive => true do
platform :osx, '10.8'
pod 'OCMock'
end
pod 'AFNetworking', '2.1.0'
pod 'SocketRocket', '0.3.1-beta2'
end

target :"SignalR.Client.Tests.iOS", :exclusive => true do
platform :ios, '6.0'
pod 'OCMock'
pod 'AFNetworking', '2.1.0'
end


target :"SignalR.Samples.iOS", :exclusive => true do
platform :ios, '6.0'
pod 'AFNetworking', '2.1.0'
pod 'SocketRocket', '0.3.1-beta2'
end


target :"SignalR.Samples.OSX", :exclusive => true do
platform :osx, '10.8'
pod 'AFNetworking', '2.1.0'
pod 'SocketRocket', '0.3.1-beta2'
end
2 changes: 1 addition & 1 deletion Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ SPEC CHECKSUMS:
OCMock: c8b8928d457c8f1873d563537ab1cc31bef40b87
SocketRocket: 7284ab9370a06c99aba92b2fe3a32aedd0f9a6fa

COCOAPODS: 0.37.2
COCOAPODS: 0.38.2
6 changes: 3 additions & 3 deletions SignalR-ObjC.podspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Pod::Spec.new do |s|
s.name = "SignalR-ObjC"
s.version = "2.0.0.alpha1"
s.version = "2.0.0.beta1"
s.summary = "Objective-C Client for the SignalR Project works with iOS and Mac."
s.homepage = "https://github.com/DyKnow/SignalR-ObjC"
s.license = 'MIT'
s.author = { "Alex Billingsley" => "[email protected]" }
s.source = { :git => 'https://github.com/DyKnow/SignalR-ObjC.git', :tag => '2.0.0.alpha1' }
s.source = { :git => 'https://github.com/DyKnow/SignalR-ObjC.git' }
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.8'
s.source_files = 'SignalR.Client/**/*.{h,m}'
s.requires_arc = true
s.dependency 'AFNetworking', '~>2.0'
s.dependency 'SocketRocket', '0.3.1-beta2'
end
end
Loading

0 comments on commit abc26be

Please sign in to comment.