Skip to content

Commit

Permalink
Resolved path problems following directory structure updates
Browse files Browse the repository at this point in the history
  • Loading branch information
poulpix committed Aug 3, 2018
1 parent 71a0206 commit 0342de9
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 6 deletions.
2 changes: 1 addition & 1 deletion PXGoogleDirections.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '9.3'
s.swift_version = '4.2'

s.source_files = 'PXGoogleDirections/*.{h,swift}'
s.source_files = 'Sources/PXGoogleDirections/*.{h,swift}'
s.module_name = 'PXGoogleDirections'
s.source = { :git => "https://github.com/poulpix/PXGoogleDirections.git", :tag => "1.6" }
s.requires_arc = true
Expand Down
8 changes: 8 additions & 0 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"object": {
"pins": [

]
},
"version": 1
}
2 changes: 1 addition & 1 deletion Samples/Carthage/Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "Poulpix/PXGoogleDirections" "v1.0.0-beta.1"
github "Poulpix/PXGoogleDirections" "1.6"
17 changes: 14 additions & 3 deletions Samples/Carthage/Carthage/Checkouts/PXGoogleDirections/.gitignore
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# macOS
.DS_Store

# Xcode
#
build/
*.pbxuser
!default.pbxuser
Expand All @@ -10,12 +12,15 @@ build/
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xcuserstate
*.xccheckout
*.moved-aside
*.xcscmblueprint
DerivedData

# Obj-C/Swift specific
*.hmap
*.ipa
*.xcuserstate

# CocoaPods
#
Expand All @@ -26,7 +31,13 @@ DerivedData
Pods/
*.lock

# Swift Package Manager
.build/

# Carthage
Sample-Carthage/Carthage/Build

# Sample
#
# Omit private information, like API keys in the sample project
Sample/Private/*.*
Samples/Shared/Private/*.*
2 changes: 1 addition & 1 deletion Samples/SwiftPackageManager/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ let package = Package(
],
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(url: "../", from: "1.6.0"),
.package(url: "../..", from: "1.6.0"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
Expand Down

0 comments on commit 0342de9

Please sign in to comment.