-
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.
commit_hash:7933b39515556d72570d629e423fefa8ee6edc2f
- Loading branch information
robot-vgsl
committed
Sep 25, 2024
1 parent
d8db234
commit a615e40
Showing
12 changed files
with
320 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,29 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VGSL' | ||
s.module_name = 'VGSL' | ||
s.version = '6.6.0' | ||
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 => '9.0' } | ||
|
||
s.pod_target_xcconfig = { | ||
'OTHER_SWIFT_FLAGS' => '-enable-experimental-feature AccessLevelOnImport' | ||
} | ||
|
||
s.dependency 'VGSLFundamentals', s.version.to_s | ||
s.dependency 'VGSLUI', s.version.to_s | ||
s.dependency 'VGSLNetworking', 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,29 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VGSLBase' | ||
s.module_name = 'BasePublic' | ||
s.version = '6.6.0' | ||
s.summary = 'Compatibility shims for VGSL' | ||
s.description = 'Compatibility shims for VGSL' | ||
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 => '9.0' } | ||
|
||
s.pod_target_xcconfig = { | ||
'OTHER_SWIFT_FLAGS' => '-enable-experimental-feature AccessLevelOnImport' | ||
} | ||
|
||
s.dependency 'VGSLBaseUI', s.version.to_s | ||
s.dependency 'VGSLNetworkingPublic', s.version.to_s | ||
s.dependency 'VGSL', s.version.to_s | ||
|
||
s.source_files = [ | ||
'CompatibilityShims/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,27 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VGSLBaseTiny' | ||
s.module_name = 'BaseTinyPublic' | ||
s.version = '6.6.0' | ||
s.summary = 'Compatibility shims for VGSL' | ||
s.description = 'Compatibility shims for VGSL' | ||
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 => '9.0' } | ||
|
||
s.pod_target_xcconfig = { | ||
'OTHER_SWIFT_FLAGS' => '-enable-experimental-feature AccessLevelOnImport' | ||
} | ||
|
||
s.dependency 'VGSL', s.version.to_s | ||
|
||
s.source_files = [ | ||
'CompatibilityShims/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,27 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VGSLBaseUI' | ||
s.module_name = 'BaseUIPublic' | ||
s.version = '6.6.0' | ||
s.summary = 'Compatibility shims for VGSL' | ||
s.description = 'Compatibility shims for VGSL' | ||
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 => '9.0' } | ||
|
||
s.pod_target_xcconfig = { | ||
'OTHER_SWIFT_FLAGS' => '-enable-experimental-feature AccessLevelOnImport' | ||
} | ||
|
||
s.dependency 'VGSL', s.version.to_s | ||
|
||
s.source_files = [ | ||
'CompatibilityShims/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,29 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VGSLCommonCore' | ||
s.module_name = 'CommonCorePublic' | ||
s.version = '6.6.0' | ||
s.summary = 'Compatibility shims for VGSL' | ||
s.description = 'Compatibility shims for VGSL' | ||
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 => '9.0' } | ||
|
||
s.pod_target_xcconfig = { | ||
'OTHER_SWIFT_FLAGS' => '-enable-experimental-feature AccessLevelOnImport' | ||
} | ||
|
||
s.dependency 'VGSL_Fundamentals', s.version.to_s | ||
s.dependency 'VGSLBaseUI', s.version.to_s | ||
s.dependency 'VGSL', s.version.to_s | ||
|
||
s.source_files = [ | ||
'CompatibilityShims/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,30 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VGSLFundamentals' | ||
s.module_name = 'VGSLFundamentals' | ||
s.version = '6.6.0' | ||
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 => '9.0' } | ||
|
||
s.pod_target_xcconfig = { | ||
'OTHER_SWIFT_FLAGS' => '-enable-experimental-feature AccessLevelOnImport' | ||
} | ||
|
||
s.source_files = [ | ||
'VGSLFundamentals/**/*.swift' | ||
] | ||
|
||
s.resource_bundles = { | ||
'VGSLFundamentalsPrivacyInfo' => ['VGSLFundamentals/PrivacyInfo.xcprivacy'] | ||
} | ||
|
||
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,28 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VGSLNetworking' | ||
s.module_name = 'VGSLNetworking' | ||
s.version = '6.6.0' | ||
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 => '9.0' } | ||
|
||
s.pod_target_xcconfig = { | ||
'OTHER_SWIFT_FLAGS' => '-enable-experimental-feature AccessLevelOnImport' | ||
} | ||
|
||
s.dependency 'VGSLFundamentals', s.version.to_s | ||
s.dependency 'VGSLUI', s.version.to_s | ||
|
||
s.source_files = [ | ||
'VGSLNetworking/**/*' | ||
] | ||
end |
28 changes: 28 additions & 0 deletions
28
Specs/VGSLNetworkingPublic/6.6.0/VGSLNetworkingPublic.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,28 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VGSLNetworkingPublic' | ||
s.module_name = 'NetworkingPublic' | ||
s.version = '6.6.0' | ||
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 => '9.0' } | ||
|
||
s.pod_target_xcconfig = { | ||
'OTHER_SWIFT_FLAGS' => '-enable-experimental-feature AccessLevelOnImport' | ||
} | ||
|
||
s.dependency 'VGSLBaseUI', s.version.to_s | ||
s.dependency 'VGSL', s.version.to_s | ||
|
||
s.source_files = [ | ||
'CompatibilityShims/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,27 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VGSLUI' | ||
s.module_name = 'VGSLUI' | ||
s.version = '6.6.0' | ||
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 => '9.0' } | ||
|
||
s.pod_target_xcconfig = { | ||
'OTHER_SWIFT_FLAGS' => '-enable-experimental-feature AccessLevelOnImport' | ||
} | ||
|
||
s.dependency 'VGSLFundamentals', s.version.to_s | ||
|
||
s.source_files = [ | ||
'VGSLUI/**/*' | ||
] | ||
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,28 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VGSL_Fundamentals' | ||
s.module_name = 'VGSL_Fundamentals' | ||
s.version = '6.6.0' | ||
s.summary = 'Compatibility shims for VGSL' | ||
s.description = 'Compatibility shims for VGSL' | ||
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 => '9.0' } | ||
|
||
s.pod_target_xcconfig = { | ||
'OTHER_SWIFT_FLAGS' => '-enable-experimental-feature AccessLevelOnImport' | ||
} | ||
|
||
s.dependency 'VGSL_Fundamentals_Tiny', s.version.to_s | ||
s.dependency 'VGSL', s.version.to_s | ||
|
||
s.source_files = [ | ||
'CompatibilityShims/VGSL_Fundamentals/**/*' | ||
] | ||
end |
Oops, something went wrong.