Skip to content

Commit

Permalink
Release 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Solyah committed Sep 1, 2023
1 parent f7ed515 commit 8b8c977
Show file tree
Hide file tree
Showing 5 changed files with 114 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Specs/VGSLBase/2.2.0/VGSLBase.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Pod::Spec.new do |s|
s.name = 'VGSLBase'
s.module_name = 'BasePublic'
s.version = '2.2.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'
s.requires_arc = true
s.prefix_header_file = false
s.platforms = { :ios => '11.0' }

s.dependency 'VGSLBaseTiny', s.version.to_s
s.dependency 'VGSLBaseUI', s.version.to_s

s.source_files = [
'BasePublic/**/*'
]
end
21 changes: 21 additions & 0 deletions Specs/VGSLBaseTiny/2.2.0/VGSLBaseTiny.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Pod::Spec.new do |s|
s.name = 'VGSLBaseTiny'
s.module_name = 'BaseTinyPublic'
s.version = '2.2.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'
s.requires_arc = true
s.prefix_header_file = false
s.platforms = { :ios => '11.0' }

s.source_files = [
'BaseTinyPublic/**/*'
]
end
23 changes: 23 additions & 0 deletions Specs/VGSLBaseUI/2.2.0/VGSLBaseUI.podspec
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 = '2.2.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'
s.requires_arc = true
s.prefix_header_file = false
s.platforms = { :ios => '11.0' }

s.dependency 'VGSLBaseTiny', s.version.to_s

s.source_files = [
'BaseUIPublic/**/*'
]
end
23 changes: 23 additions & 0 deletions Specs/VGSLCommonCore/2.2.0/VGSLCommonCore.podspec
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 = '2.2.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'
s.requires_arc = true
s.prefix_header_file = false
s.platforms = { :ios => '11.0' }

s.dependency 'VGSLBase', s.version.to_s

s.source_files = [
'CommonCorePublic/**/*'
]
end
23 changes: 23 additions & 0 deletions Specs/VGSLNetworking/2.2.0/VGSLNetworking.podspec
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 = '2.2.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'
s.requires_arc = true
s.prefix_header_file = false
s.platforms = { :ios => '11.0' }

s.dependency 'VGSLBase', s.version.to_s

s.source_files = [
'NetworkingPublic/**/*'
]
end

0 comments on commit 8b8c977

Please sign in to comment.