-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
booster
committed
Jan 19, 2024
1 parent
1f55665
commit 4be22f9
Showing
9 changed files
with
192 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VGSL' | ||
s.module_name = 'VGSL' | ||
s.version = '3.0.1' | ||
s.summary = 'A useful set of basic components for an iOS app' | ||
s.description = 'A useful set of basic components for an iOS app' | ||
s.homepage = 'https://github.com/yandex/vgsl' | ||
|
||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'vgsl' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/yandex/vgsl.git', :tag => s.version.to_s } | ||
|
||
s.swift_version = '5.9' | ||
s.requires_arc = true | ||
s.prefix_header_file = false | ||
s.platforms = { :ios => '9.0', :tvos => '12.0' } | ||
|
||
s.dependency 'VGSL_Fundamentals', s.version.to_s | ||
|
||
s.source_files = [ | ||
'VGSL/**/*' | ||
] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VGSLBase' | ||
s.module_name = 'BasePublic' | ||
s.version = '3.0.1' | ||
s.summary = 'A useful set of basic components for an iOS app' | ||
s.description = 'A useful set of basic components for an iOS app' | ||
s.homepage = 'https://github.com/yandex/vgsl' | ||
|
||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'vgsl' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/yandex/vgsl.git', :tag => s.version.to_s } | ||
|
||
s.swift_version = '5.9' | ||
s.requires_arc = true | ||
s.prefix_header_file = false | ||
s.platforms = { :ios => '9.0', :tvos => '12.0' } | ||
|
||
s.dependency 'VGSLBaseTiny', s.version.to_s | ||
s.dependency 'VGSLBaseUI', s.version.to_s | ||
s.dependency 'VGSL_Fundamentals', s.version.to_s | ||
|
||
s.source_files = [ | ||
'BasePublic/**/*' | ||
] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VGSLBaseTiny' | ||
s.module_name = 'BaseTinyPublic' | ||
s.version = '3.0.1' | ||
s.summary = 'A useful set of basic components for an iOS app' | ||
s.description = 'A useful set of basic components for an iOS app' | ||
s.homepage = 'https://github.com/yandex/vgsl' | ||
|
||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'vgsl' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/yandex/vgsl.git', :tag => s.version.to_s } | ||
|
||
s.swift_version = '5.9' | ||
s.requires_arc = true | ||
s.prefix_header_file = false | ||
s.platforms = { :ios => '9.0', :tvos => '12.0' } | ||
|
||
s.dependency 'VGSL_Fundamentals_Tiny', s.version.to_s | ||
|
||
s.source_files = [ | ||
'BaseTinyPublic/**/*' | ||
] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VGSLBaseUI' | ||
s.module_name = 'BaseUIPublic' | ||
s.version = '3.0.1' | ||
s.summary = 'A useful set of basic components for an iOS app' | ||
s.description = 'A useful set of basic components for an iOS app' | ||
s.homepage = 'https://github.com/yandex/vgsl' | ||
|
||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'vgsl' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/yandex/vgsl.git', :tag => s.version.to_s } | ||
|
||
s.swift_version = '5.9' | ||
s.requires_arc = true | ||
s.prefix_header_file = false | ||
s.platforms = { :ios => '9.0', :tvos => '12.0' } | ||
|
||
s.dependency 'VGSLBaseTiny', s.version.to_s | ||
|
||
s.source_files = [ | ||
'BaseUIPublic/**/*' | ||
] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VGSLCommonCore' | ||
s.module_name = 'CommonCorePublic' | ||
s.version = '3.0.1' | ||
s.summary = 'A useful set of basic components for an iOS app' | ||
s.description = 'A useful set of basic components for an iOS app' | ||
s.homepage = 'https://github.com/yandex/vgsl' | ||
|
||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'vgsl' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/yandex/vgsl.git', :tag => s.version.to_s } | ||
|
||
s.swift_version = '5.9' | ||
s.requires_arc = true | ||
s.prefix_header_file = false | ||
s.platforms = { :ios => '9.0', :tvos => '12.0' } | ||
|
||
s.dependency 'VGSLBase', s.version.to_s | ||
|
||
s.source_files = [ | ||
'CommonCorePublic/**/*' | ||
] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VGSLNetworking' | ||
s.module_name = 'NetworkingPublic' | ||
s.version = '3.0.1' | ||
s.summary = 'A useful set of basic components for an iOS app' | ||
s.description = 'A useful set of basic components for an iOS app' | ||
s.homepage = 'https://github.com/yandex/vgsl' | ||
|
||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'vgsl' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/yandex/vgsl.git', :tag => s.version.to_s } | ||
|
||
s.swift_version = '5.9' | ||
s.requires_arc = true | ||
s.prefix_header_file = false | ||
s.platforms = { :ios => '9.0', :tvos => '12.0' } | ||
|
||
s.dependency 'VGSLBase', s.version.to_s | ||
|
||
s.source_files = [ | ||
'NetworkingPublic/**/*' | ||
] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VGSL_Fundamentals' | ||
s.module_name = 'VGSL_Fundamentals' | ||
s.version = '3.0.1' | ||
s.summary = 'A useful set of basic components for an iOS app' | ||
s.description = 'A useful set of basic components for an iOS app' | ||
s.homepage = 'https://github.com/yandex/vgsl' | ||
|
||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'vgsl' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/yandex/vgsl.git', :tag => s.version.to_s } | ||
|
||
s.swift_version = '5.9' | ||
s.requires_arc = true | ||
s.prefix_header_file = false | ||
s.platforms = { :ios => '9.0', :tvos => '12.0' } | ||
|
||
s.dependency 'VGSL_Fundamentals_Tiny', s.version.to_s | ||
|
||
s.source_files = [ | ||
'VGSL_Fundamentals/**/*' | ||
] | ||
end |
21 changes: 21 additions & 0 deletions
21
Specs/VGSL_Fundamentals_Tiny/3.0.1/VGSL_Fundamentals_Tiny.podspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VGSL_Fundamentals_Tiny' | ||
s.module_name = 'VGSL_Fundamentals_Tiny' | ||
s.version = '3.0.1' | ||
s.summary = 'A useful set of basic components for an iOS app' | ||
s.description = 'A useful set of basic components for an iOS app' | ||
s.homepage = 'https://github.com/yandex/vgsl' | ||
|
||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'vgsl' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/yandex/vgsl.git', :tag => s.version.to_s } | ||
|
||
s.swift_version = '5.9' | ||
s.requires_arc = true | ||
s.prefix_header_file = false | ||
s.platforms = { :ios => '9.0', :tvos => '12.0' } | ||
|
||
s.source_files = [ | ||
'VGSL_Fundamentals_Tiny/**/*' | ||
] | ||
end |