Skip to content

Commit

Permalink
Merge branch 'release/1.0.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
dokgi88 committed Oct 26, 2021
2 parents 941bed3 + 47905d3 commit f0c40ab
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FlashingLabel.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'FlashingLabel'
s.version = '1.0.5'
s.version = '1.0.6'
s.summary = 'very easy and simple flashing label'

# This description is used to generate tags and improve search results.
Expand All @@ -28,5 +28,5 @@ Pod::Spec.new do |s|
s.swift_versions = '5.0'
s.ios.deployment_target = '9.0'

s.source_files = 'FlashingLabel/Classes/**/*'
s.source_files = 'Sources/FlashingLabel/Classes/**/*'
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: "FlashingLabel",
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "FlashingLabel",
targets: ["FlashingLabel"]),
],
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 this package depends on.
.target(
name: "FlashingLabel",
dependencies: []),
.testTarget(
name: "FlashingLabelTests",
dependencies: ["FlashingLabel"]),
]
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
11 changes: 11 additions & 0 deletions Tests/FlashingLabelTests/FlashingLabelTests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import XCTest
@testable import FlashingLabel

final class FlashingLabelTests: XCTestCase {
func testExample() {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct
// results.
XCTAssertEqual(FlashingLabel().text, "Hello, World!")
}
}

0 comments on commit f0c40ab

Please sign in to comment.