Skip to content

Commit 8d69335

Browse files
committed
Add support for Swift Package Manager
1 parent 221503e commit 8d69335

File tree

5 files changed

+8
-2
lines changed

5 files changed

+8
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.build

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: objective-c
22
osx_image: xcode7.1
33
script:
4-
- swiftc Nest.swift
4+
- swiftc Sources/Nest.swift
55
- pod lib lint

Nest.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Pod::Spec.new do |spec|
77
spec.author = { 'Kyle Fuller' => '[email protected]' }
88
spec.social_media_url = 'http://twitter.com/kylefuller'
99
spec.source = { :git => 'https://github.com/nestproject/Nest.git', :tag => spec.version }
10-
spec.source_files = 'Nest.swift'
10+
spec.source_files = 'Sources/Nest.swift'
1111
spec.requires_arc = true
1212
spec.ios.deployment_target = '8.0'
1313
spec.osx.deployment_target = '10.9'

Package.swift

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import PackageDescription
2+
3+
let package = Package(
4+
name: "Nest"
5+
)
File renamed without changes.

0 commit comments

Comments
 (0)