Skip to content

Commit

Permalink
fixed podspec to be ready for cocoapods
Browse files Browse the repository at this point in the history
  • Loading branch information
TomCarey committed Oct 3, 2018
1 parent c4a2fab commit 828e4c7
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions Succulent.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
Pod::Spec.new do |s|
s.name = 'Succulent'
s.version = '0.3.5'
s.summary = 'A short description of Succulent.'
s.summary = 'Succulent allows you to record and replay API responses to speed up and isolate
your unit and UI tests.'

# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
Expand All @@ -18,7 +19,11 @@ Pod::Spec.new do |s|
# * Finally, don't worry about the indent, CocoaPods strips it!

s.description = <<-DESC
TODO: Add long description of the pod here.
A common problem is that an API is often developed in
tandem with the client. Succulent is designed specifically to remove the effort
in maintaining a specially built mock API by allowing you to record the current
API and replay it back in unit and UI tests. This allows you to quickly update
the tests when the API changes throughout your development cycle.
DESC

s.homepage = 'https://github.com/cactuslab/Succulent'
Expand All @@ -31,12 +36,6 @@ TODO: Add long description of the pod here.
s.ios.deployment_target = '8.0'

s.source_files = 'Succulent/Classes/**/*.{m,h,swift}'

# s.resource_bundles = {
# 'Succulent' => ['Succulent/Assets/*.png']
# }

s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
s.swift_version = '4.2'
s.dependency 'Embassy', '~> 4.0.8'
end

0 comments on commit 828e4c7

Please sign in to comment.