Skip to content

Commit

Permalink
Update ResourceApp for Xcode 10 / Cocoapods update
Browse files Browse the repository at this point in the history
  • Loading branch information
mac-cain13 committed Jun 23, 2018
1 parent 3110c46 commit dc51bad
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 9 deletions.
9 changes: 7 additions & 2 deletions Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,17 @@ abstract_target 'Shared' do
# pod 'R.swift.Library', :path => '../R.swift.Library' # for development

target 'ResourceApp' do
platform :ios, '9.0'

pod 'SWRevealViewController'
end
target 'ResourceAppTests' do
platform :ios, '9.0'

pod 'SWRevealViewController'
end
target 'ResourceApp-tvOS'

target 'ResourceApp-tvOS' do
platform :tvos, '9.0'
end
end

6 changes: 3 additions & 3 deletions Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ DEPENDENCIES:
- SWRevealViewController

SPEC REPOS:
https://github.com/CocoaPods/Specs.git:
https://github.com/cocoapods/specs.git:
- SWRevealViewController

EXTERNAL SOURCES:
Expand All @@ -23,6 +23,6 @@ SPEC CHECKSUMS:
R.swift.Library: cb1ffb8ad84a275486e72b834e6d4bf48b59d11b
SWRevealViewController: 6d3fd97f70112fd7cef9de14df4260eacce4c63a

PODFILE CHECKSUM: 640b6894921f1b87a1f681177c36809540607ed8
PODFILE CHECKSUM: 60ef58c3328649cce6ac12481f40d26d722e5079

COCOAPODS: 1.5.0
COCOAPODS: 1.5.3
2 changes: 1 addition & 1 deletion R.swift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Pod::Spec.new do |spec|
spec.ios.deployment_target = '8.0'
spec.tvos.deployment_target = '9.0'

spec.dependency "R.swift.Library", "~> 4.0.0"
spec.dependency "R.swift.Library", "~> 5.0.0.alpha.1"

spec.preserve_paths = "rswift"

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
<TestableReference
skipped = "NO">
skipped = "NO"
testExecutionOrdering = "random">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "DEF559AA1CA48892009B8C51"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
<Testables>
<TestableReference
skipped = "NO"
parallelizable = "YES"
testExecutionOrdering = "random">
<BuildableReference
BuildableIdentifier = "primary"
Expand Down
2 changes: 1 addition & 1 deletion Sources/rswift/Rswift.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
import Foundation

struct Rswift {
static let version = "4.0.0"
static let version = "5.0.0.alpha.1"
static let resourceFileName = "R.generated.swift"
}

0 comments on commit dc51bad

Please sign in to comment.