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