Skip to content

Commit

Permalink
Add .podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Jendrusch committed Sep 16, 2015
1 parent 523b789 commit b97e81a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Dobby.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Pod::Spec.new do |spec|
spec.name = 'Dobby'
spec.version = '0.4-alpha.1'
spec.authors = {
'Felix Jendrusch' => '[email protected]'
}
spec.social_media_url = 'https://twitter.com/felixjendrusch'
spec.license = {
:type => 'Apache License, Version 2.0',
:file => 'LICENSE'
}
spec.homepage = 'https://github.com/rheinfabrik/Dobby'
spec.source = {
:git => 'https://github.com/rheinfabrik/Dobby.git',
:tag => spec.version.to_s
}
spec.summary = 'Swift helpers for mocking and stubbing'
spec.description = 'Dobby provides a few helpers for mocking and stubbing.'

spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.10'

spec.framework = 'Foundation', 'XCTest'

spec.source_files = 'Dobby/**/*.{h,swift}'
end

0 comments on commit b97e81a

Please sign in to comment.