Skip to content

Commit

Permalink
Merge pull request #30 from tigerpixel/development
Browse files Browse the repository at this point in the history
Patch for Swift Package Manager builds.
  • Loading branch information
tigerpixel authored Aug 20, 2019
2 parents fc6f2bc + bde9e1f commit fd5278f
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Currier.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Pod::Spec.new do |s|
s.name = 'Currier'
s.version = '1.2.0'
s.version = '1.2.1'
s.summary = 'Fantastically easy function currying in Swift.'
s.description = <<-DESC
Produces a curried version of almost any other function. Just wrap your function in a single call ‘curry(myFunction)’ and the result will be a curried version of your original. A useful tool for working with parser combinators and other functional programming projects. Currently supports up to 14 parameters. Pull requests for improvements are welcome.
Expand All @@ -24,5 +24,5 @@ Produces a curried version of almost any other function. Just wrap your function
s.tvos.deployment_target = '9.0'
s.swift_version = '5.0'

s.source_files = 'Source/**/*.swift'
s.source_files = 'Sources/**/*.swift'
end
16 changes: 12 additions & 4 deletions Currier.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
children = (
0C6F5CA11E6798690071F2B4 /* Docs */,
0C0A06A91E52FD660098FC41 /* Currier */,
0CDFFFA61E71E47800927BE3 /* Source */,
0CDFFFA61E71E47800927BE3 /* Sources */,
0C1DB7C51E77699400230A33 /* Tests */,
0C0A06A81E52FD660098FC41 /* Products */,
);
Expand Down Expand Up @@ -173,6 +173,14 @@
path = CurrierTests;
sourceTree = "<group>";
};
0C2BB6AD230957D600904802 /* Currier */ = {
isa = PBXGroup;
children = (
0CDFFFA71E71E4FA00927BE3 /* Curry.swift */,
);
path = Currier;
sourceTree = "<group>";
};
0C6F5CA11E6798690071F2B4 /* Docs */ = {
isa = PBXGroup;
children = (
Expand All @@ -184,12 +192,12 @@
name = Docs;
sourceTree = "<group>";
};
0CDFFFA61E71E47800927BE3 /* Source */ = {
0CDFFFA61E71E47800927BE3 /* Sources */ = {
isa = PBXGroup;
children = (
0CDFFFA71E71E4FA00927BE3 /* Curry.swift */,
0C2BB6AD230957D600904802 /* Currier */,
);
path = Source;
path = Sources;
sourceTree = "<group>";
};
/* End PBXGroup section */
Expand Down
2 changes: 1 addition & 1 deletion Currier/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.2.0</string>
<string>1.2.1</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
Expand Down
10 changes: 9 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// swift-tools-version:4.0
//
// Package.swift
// Currier
Expand All @@ -11,5 +12,12 @@
import PackageDescription

let package = Package(
name: "Currier"
name: "Currier",
products: [
.library(name: "Currier", targets: ["Currier"])
],
targets: [
.target(name: "Currier"),
.testTarget(name: "CurrierTests", dependencies: ["Currier"])
]
)
File renamed without changes.

0 comments on commit fd5278f

Please sign in to comment.