Skip to content

Commit

Permalink
fixes for Xcode 7 Beta 5.
Browse files Browse the repository at this point in the history
  • Loading branch information
Honza Dvorsky committed Aug 9, 2015
1 parent 8cad214 commit d66aa20
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 12 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Change Log

## [Unreleased](https://github.com/czechboy0/XcodeServerSDK/tree/HEAD)

[Full Changelog](https://github.com/czechboy0/XcodeServerSDK/compare/v0.1.7...HEAD)

**Closed issues:**

- Update readme with new supported endpoint: list commits [\#87](https://github.com/czechboy0/XcodeServerSDK/issues/87)

**Merged pull requests:**

- XcodeServerConfigTests - availability check state tests [\#92](https://github.com/czechboy0/XcodeServerSDK/pull/92) ([pmkowal](https://github.com/pmkowal))

- XcodeServerConfig - invalid host name test [\#91](https://github.com/czechboy0/XcodeServerSDK/pull/91) ([pmkowal](https://github.com/pmkowal))

- createRequest - add test for `body` [\#90](https://github.com/czechboy0/XcodeServerSDK/pull/90) ([pmkowal](https://github.com/pmkowal))

- Add another API method support [\#88](https://github.com/czechboy0/XcodeServerSDK/pull/88) ([cojoj](https://github.com/cojoj))

- Refactoring of `sendRequestWithMethod` [\#86](https://github.com/czechboy0/XcodeServerSDK/pull/86) ([pmkowal](https://github.com/pmkowal))

- List all commits for integration [\#77](https://github.com/czechboy0/XcodeServerSDK/pull/77) ([cojoj](https://github.com/cojoj))

## [v0.1.7](https://github.com/czechboy0/XcodeServerSDK/tree/v0.1.7) (2015-07-25)

[Full Changelog](https://github.com/czechboy0/XcodeServerSDK/compare/v0.1.6...v0.1.7)
Expand Down
6 changes: 3 additions & 3 deletions Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
use_frameworks!

utils_name = 'BuildaUtils'
utils_version = '0.0.8'
utils_version = '0.0.9'

target 'XcodeServerSDK - OS X' do
pod utils_name, utils_version
end

target 'XcodeServerSDK - OS X Tests' do
pod utils_name, utils_version
pod 'DVR', :git => "https://github.com/czechboy0/DVR.git", :tag => "v0.0.3-czechboy0"
pod 'DVR', :git => "https://github.com/czechboy0/DVR.git", :tag => "v0.0.4-czechboy0"
end

target 'XcodeServerSDK - iOS' do
Expand All @@ -19,7 +19,7 @@ end

target 'XcodeServerSDK - iOS Tests' do
pod utils_name, utils_version
pod 'DVR', :git => "https://github.com/czechboy0/DVR.git", :tag => "v0.0.3-czechboy0"
pod 'DVR', :git => "https://github.com/czechboy0/DVR.git", :tag => "v0.0.4-czechboy0"
end

target 'XcodeServerSDK - watchOS' do
Expand Down
16 changes: 8 additions & 8 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
PODS:
- BuildaUtils (0.0.8)
- DVR (0.0.3-czechboy0)
- BuildaUtils (0.0.9)
- DVR (0.0.4-czechboy0)

DEPENDENCIES:
- BuildaUtils (= 0.0.8)
- DVR (from `https://github.com/czechboy0/DVR.git`, tag `v0.0.3-czechboy0`)
- BuildaUtils (= 0.0.9)
- DVR (from `https://github.com/czechboy0/DVR.git`, tag `v0.0.4-czechboy0`)

EXTERNAL SOURCES:
DVR:
:git: https://github.com/czechboy0/DVR.git
:tag: v0.0.3-czechboy0
:tag: v0.0.4-czechboy0

CHECKOUT OPTIONS:
DVR:
:git: https://github.com/czechboy0/DVR.git
:tag: v0.0.3-czechboy0
:tag: v0.0.4-czechboy0

SPEC CHECKSUMS:
BuildaUtils: ba675152129464dc6175ae8806f0dbc1109722a3
DVR: a0c2b0f272db7e7b21813d15a2df34b588be8a45
BuildaUtils: fb92346b649b9edfebb86d263e4c796e3e6603c1
DVR: 386f347071f55f3f9105239db6764483009ec875

COCOAPODS: 0.38.2
2 changes: 1 addition & 1 deletion XcodeServerSDKTests/TestUtils.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ extension XCTestCase {
extension XCTestCase {

func stringAtPath(path: String) -> String {
return try! NSString(contentsOfFile: path.stringByExpandingTildeInPath, encoding: NSUTF8StringEncoding) as String
return try! NSString(contentsOfFile: (path as NSString).stringByExpandingTildeInPath, encoding: NSUTF8StringEncoding) as String
}

func loadJSONResponseFromCassetteWithName(name: String) -> NSDictionary {
Expand Down

0 comments on commit d66aa20

Please sign in to comment.