-
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:d1a6e5ff270793e412fd53f379c05f7bbce4be14
robot-vgsl
committed
Sep 30, 2024
1 parent
ced8dcf
commit 277170d
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.2' | ||
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' => 'vgsl@yandex-team.ru' } | ||
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.2' | ||
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' => 'vgsl@yandex-team.ru' } | ||
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.2' | ||
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' => 'vgsl@yandex-team.ru' } | ||
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.2' | ||
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' => 'vgsl@yandex-team.ru' } | ||
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.2' | ||
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' => 'vgsl@yandex-team.ru' } | ||
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.2' | ||
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' => 'vgsl@yandex-team.ru' } | ||
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.2' | ||
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' => 'vgsl@yandex-team.ru' } | ||
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.2/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.2' | ||
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' => 'vgsl@yandex-team.ru' } | ||
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.2' | ||
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' => 'vgsl@yandex-team.ru' } | ||
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.2' | ||
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' => 'vgsl@yandex-team.ru' } | ||
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.