Skip to content
This repository was archived by the owner on Jan 16, 2022. It is now read-only.

Commit 15f10d2

Browse files
committed
initial
0 parents  commit 15f10d2

File tree

18 files changed

+1495
-0
lines changed

18 files changed

+1495
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.build
2+
xcuserdata/

LICENSE

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
2+
Version 2, December 2004
3+
4+
Copyright (C) 2015-2019 Tibor Bodecs <mail.tib@gmail.com>
5+
6+
Everyone is permitted to copy and distribute verbatim or modified
7+
copies of this license document, and changing it is allowed as long
8+
as the name is changed.
9+
10+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
11+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
12+
13+
0. You just DO WHAT THE FUCK YOU WANT TO.

Package.swift

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// swift-tools-version:4.2
2+
import PackageDescription
3+
4+
let package = Package(
5+
name: "Promises",
6+
products: [
7+
.library(name: "Promises", targets: ["Promises"])
8+
],
9+
targets: [
10+
.target(name: "Promises", path: "Sources")
11+
]
12+
)

Promises.podspec

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'Promises'
3+
s.version = '1.0.0'
4+
s.summary = 'I promise the future!'
5+
s.description = <<-DESC
6+
It's just another Promise library that works on
7+
all the Apple operating systems plus on linux.
8+
DESC
9+
10+
s.homepage = 'https://theswiftdev.com/'
11+
s.license = { :type => 'WTFPL', :file => 'LICENSE' }
12+
s.author = { 'Tibor Bödecs' => 'mail.tib@gmail.com' }
13+
s.source = { :git => 'https://github.com/CoreKit/Promises.git', :tag => s.version.to_s }
14+
s.social_media_url = 'https://twitter.com/tiborbodecs'
15+
16+
s.ios.deployment_target = '11.0'
17+
s.macos.deployment_target = '10.13'
18+
s.tvos.deployment_target = '11.0'
19+
s.watchos.deployment_target = '4.0'
20+
21+
s.swift_version = '4.2'
22+
s.source_files = 'Sources/**/*'
23+
s.frameworks = 'Foundation'
24+
end

0 commit comments

Comments
 (0)