Merge pull request #21 from TouchInstinct/remove_dao_http_transport

remove DAO & HTTPTransport from touchin podspecs (updated versions in trunk)
This commit is contained in:
Ivan Smolin 2020-11-30 15:31:34 +03:00 committed by GitHub
commit 948acbfbcc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 38 deletions

View File

@ -1,24 +0,0 @@
Pod::Spec.new do |s|
s.name = 'DAO'
s.version = '1.6.0'
s.summary = 'DAO Library'
s.description = 'Library provides easy way to cache entities.'
s.homepage = 'https://github.com/petropavel13/DAO'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'vani2' => 'iv@redmadrobot.com', 'hoppus' => 'e.popov@redmadrobot.com' }
s.source = { :git => 'https://github.com/petropavel13/DAO.git', :tag => s.version, :submodules => true }
s.platform = :ios, '9.0'
s.swift_version = '5.3'
s.source_files = 'DAO/Classes/Core/**/*'
s.subspec 'Realm' do |r|
r.source_files = 'DAO/Classes/RealmDAO/**/*', 'DAO/Classes/Core/**/*'
r.dependency "Realm", '~> 10.1'
r.dependency "RealmSwift", '~> 10.1'
end
s.subspec 'CoreData' do |cd|
cd.source_files = 'DAO/Classes/CoreDataDAO/**/*', 'DAO/Classes/Core/**/*'
end
end

View File

@ -1,14 +0,0 @@
Pod::Spec.new do |s|
s.name = "HTTPTransport"
s.version = "5.0"
s.summary = "RedMadRobot HTTP transport library"
s.description = "Based on Alamofire. Implements synchronous transport"
s.homepage = "https://github.com/petropavel13/http-transport"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Jeorge Taflanidi" => "et@redmadrobot.com" }
s.platform = :ios, "10.0"
s.source = { :git => "https://github.com/petropavel13/http-transport.git", :tag => s.version, :branch => "master" }
s.source_files = "Source/HTTPTransport/HTTPTransport/Classes/**/*"
s.requires_arc = true
s.dependency "Alamofire", '~> 5'
end