Skip to content

Commit b97e81a

Browse files
author
Felix Jendrusch
committed
Add .podspec
1 parent 523b789 commit b97e81a

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

Dobby.podspec

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
Pod::Spec.new do |spec|
2+
spec.name = 'Dobby'
3+
spec.version = '0.4-alpha.1'
4+
spec.authors = {
5+
'Felix Jendrusch' => '[email protected]'
6+
}
7+
spec.social_media_url = 'https://twitter.com/felixjendrusch'
8+
spec.license = {
9+
:type => 'Apache License, Version 2.0',
10+
:file => 'LICENSE'
11+
}
12+
spec.homepage = 'https://github.com/rheinfabrik/Dobby'
13+
spec.source = {
14+
:git => 'https://github.com/rheinfabrik/Dobby.git',
15+
:tag => spec.version.to_s
16+
}
17+
spec.summary = 'Swift helpers for mocking and stubbing'
18+
spec.description = 'Dobby provides a few helpers for mocking and stubbing.'
19+
20+
spec.ios.deployment_target = '8.0'
21+
spec.osx.deployment_target = '10.10'
22+
23+
spec.framework = 'Foundation', 'XCTest'
24+
25+
spec.source_files = 'Dobby/**/*.{h,swift}'
26+
end

0 commit comments

Comments
 (0)