Skip to content

Commit 3486c81

Browse files
committed
CocoaPods-ized
* Added a `NilCoalescingAssignmentOperators.podspec`. ‣ Includes all the normal stuff: name, version, summary, etc.  Notably: ⁃ No `description` yet. ⁃ License is “TBD”.  The source code is doc-commented with `@license: WTFPL` and I'll probably go with the formal version of that— Public Domain. ⁃ To match Xcode settings, `ios.deployment_target` set to `8.0` and `macos.deployment_target` set to `10.9`. ⁃ `version` set to `0.1.0`. * To appease `pod lib lint`, added a `LICENSE` file with just the text “To Be Determined” in it.
1 parent df458e3 commit 3486c81

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
To Be Determined
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'NilCoalescingAssignmentOperators'
3+
s.version = '0.1.0'
4+
s.summary = 'A Swift µ-Framework for Combination ??/Assignment Operators'
5+
#s.description = "TODO: Add long description of the pod here."
6+
s.homepage = 'https://github.com/capnslipp/NilCoalescingAssignmentOperators'
7+
s.license = { :type => 'TBD', :file => 'LICENSE' }
8+
s.author = { 'capnslipp' => 'NilCoalescingAssignmentOperators@capnslipp.com' }
9+
s.source = { :git => 'https://github.com/capnslipp/NilCoalescingAssignmentOperators.git', :tag => s.version.to_s }
10+
s.social_media_url = 'https://twitter.com/capnslipp'
11+
s.ios.deployment_target = '8.0'
12+
s.osx.deployment_target = '10.9'
13+
s.source_files = 'Sources/**/*'
14+
end

0 commit comments

Comments
 (0)