Skip to content

Commit

Permalink
Add podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
gunoooo committed Jul 9, 2024
1 parent 2539a00 commit 6c097cd
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Examples/Counter/Counter.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,7 @@
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = "";
SDKROOT = iphoneos;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
Expand Down Expand Up @@ -333,6 +334,7 @@
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
OTHER_LDFLAGS = "";
SDKROOT = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule;
VALIDATE_PRODUCT = YES;
Expand Down
4 changes: 2 additions & 2 deletions Examples/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ PODS:
- RxSwift (~> 6.0)
- WeakMapTable (~> 1.1)
- RxSwift (6.7.1)
- SwiftUIReactorKit (0.0.2):
- SwiftUIReactorKit (0.0.3):
- ReactorKit (~> 3.0)
- WeakMapTable (1.2.0)

Expand All @@ -24,7 +24,7 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
ReactorKit: e8b11d6b9c415405f381669b095c154a05b59eca
RxSwift: b9a93a26031785159e11abd40d1a55bcb8057e52
SwiftUIReactorKit: c3bd80442de44ad2d1273061880b1fbef66d31d6
SwiftUIReactorKit: f9883d153dfab694093562b04a6f7dd2e6d52d78
WeakMapTable: 05c694ce8439a7a9ebabb56187287a63c57673d6

PODFILE CHECKSUM: 67f0f2ae3c7df49bdec53dd687ac99ac0d7035e3
Expand Down
34 changes: 34 additions & 0 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"object": {
"pins": [
{
"package": "ReactorKit",
"repositoryURL": "https://github.com/ReactorKit/ReactorKit.git",
"state": {
"branch": null,
"revision": "8fa33f09c6f6621a2aa536d739956d53b84dd139",
"version": "3.2.0"
}
},
{
"package": "RxSwift",
"repositoryURL": "https://github.com/ReactiveX/RxSwift.git",
"state": {
"branch": null,
"revision": "b06a8c8596e4c3e8e7788e08e720e3248563ce6a",
"version": "6.7.1"
}
},
{
"package": "WeakMapTable",
"repositoryURL": "https://github.com/ReactorKit/WeakMapTable.git",
"state": {
"branch": null,
"revision": "cb05d64cef2bbf51e85c53adee937df46540a74e",
"version": "1.2.1"
}
}
]
},
"version": 1
}
18 changes: 18 additions & 0 deletions SwiftUIReactorKit.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Pod::Spec.new do |s|
s.name = "SwiftUIReactorKit"
s.version = "0.0.4"
s.summary = "An extension of devxoul's ReactorKit, specifically designed to work with SwiftUI"
s.homepage = "https://github.com/gunoooo/ReactorKit-SwiftUI"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "박건우(Ethen)" => "[email protected]" }
s.source = { :git => "https://github.com/gunoooo/ReactorKit-SwiftUI.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*.swift"
s.frameworks = "Foundation"
s.swift_version = "5.0"
s.dependency "ReactorKit", "~> 3.0"

s.ios.deployment_target = "13.0"
s.osx.deployment_target = "10.15"
s.tvos.deployment_target = "13.0"
s.watchos.deployment_target = "6.0"
end

0 comments on commit 6c097cd

Please sign in to comment.