update library name

This commit is contained in:
Cecilia Pirotto 2021-08-06 11:07:04 -03:00
parent 0d95ea10f3
commit 1f7b906f5f
2 changed files with 9 additions and 9 deletions

View File

@ -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"
)
]

View File

@ -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'