Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions VCRURLConnection.podspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
Pod::Spec.new do |s|
s.name = "VCRURLConnection"
s.version = "0.2.5"
s.summary = "VCRURLConnection is an iOS and OSX API to record and replay HTTP interactions, inspired by VCR."
s.version = "0.2.6"
s.summary = "VCRURLConnection is an iOS, tvOS, and macOS API to record and replay HTTP interactions, inspired by VCR."
s.homepage = "https://github.com/dstnbrkr/VCRURLConnection"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Dustin Barker" => "dustin.barker@gmail.com" }
s.source = { :git => "https://github.com/dstnbrkr/VCRURLConnection.git", :tag => "0.2.5" }
s.source = { :git => "https://github.com/dstnbrkr/VCRURLConnection.git", :tag => "0.2.6" }
s.ios.deployment_target = '5.0'
s.ios.frameworks = 'MobileCoreServices'
s.osx.deployment_target = '10.7'
s.osx.frameworks = 'CoreServices'
s.tvos.deployment_target = '11.0'
s.tvos.frameworks = 'CoreServices'
s.source_files = 'VCRURLConnection/**.{h,m}'
s.requires_arc = true
end