update library name
This commit is contained in:
parent
0d95ea10f3
commit
1f7b906f5f
|
@ -2,19 +2,19 @@
|
|||
import PackageDescription
|
||||
|
||||
let package = Package(
|
||||
name: "PagerTabStrip",
|
||||
name: "PagerTabStripView",
|
||||
platforms: [.iOS(.v14), .macOS(.v11)],
|
||||
products: [
|
||||
.library(name: "PagerTabStrip", targets: ["PagerTabStrip"])
|
||||
.library(name: "PagerTabStripView", targets: ["PagerTabStripView"])
|
||||
],
|
||||
targets: [
|
||||
.target(
|
||||
name: "PagerTabStrip",
|
||||
name: "PagerTabStripView",
|
||||
path: "Sources"
|
||||
),
|
||||
.testTarget(
|
||||
name: "PagerTabStripTests",
|
||||
dependencies: ["PagerTabStrip"],
|
||||
name: "PagerTabStripViewTests",
|
||||
dependencies: ["PagerTabStripView"],
|
||||
path: "Tests"
|
||||
)
|
||||
]
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = "PagerTabStripView"
|
||||
s.version = "1.0.0"
|
||||
s.summary = "PagerTabStripView allows navigating through pages using a custom navigation bar."
|
||||
s.homepage = "https://github.com/xmartlabs/PagerTabStrip"
|
||||
s.version = "1.0.1"
|
||||
s.summary = "PagerTabStripView allows navigating through pages using a custom navigation bar in SwiftUI."
|
||||
s.homepage = "https://github.com/xmartlabs/PagerTabStripView"
|
||||
s.license = { type: 'MIT', file: 'LICENSE' }
|
||||
s.authors = { "Xmartlabs SRL" => "swift@xmartlabs.com" }
|
||||
s.source = { git: "https://github.com/xmartlabs/PagerTabStrip.git", tag: s.version.to_s }
|
||||
s.source = { git: "https://github.com/xmartlabs/PagerTabStripView.git", tag: s.version.to_s }
|
||||
s.social_media_url = 'https://twitter.com/xmartlabs'
|
||||
s.ios.deployment_target = '14.0'
|
||||
s.swift_version = '5.0'
|
||||
|
|
Loading…
Reference in New Issue