Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fun committed Mar 30, 2022
1 parent dbc472d commit d6aa6a6
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions Jenga.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Pod::Spec.new do |s|

s.name = "Jenga"
s.version = "1.0.0"
s.summary = "在UIKit里像SwiftUI一样搭建TableView"

s.homepage = "https://github.com/fanglinwei/Jenga"

s.license = { :type => "MIT", :file => "LICENSE" }

s.author = { "fanglinwei" => "[email protected]" }

s.source = { :git => "https://github.com/fanglinwei/Jenga.git", :tag => s.version }

s.requires_arc = true

s.swift_versions = ["5.0"]

s.frameworks = "Foundation"
s.ios.frameworks = "UIKit"

s.ios.deployment_target = '11.0'

s.source_files = ["Sources/*.swift"]

end
28 changes: 28 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "Jenga",
platforms: [.iOS(.v9), .macOS(.v10_13), .tvOS(.v11), .watchOS(.v5)],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "Jenga",
targets: ["Jenga"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
name: "Jenga",
dependencies: [],
path: "Sources"
)
]
)

0 comments on commit d6aa6a6

Please sign in to comment.