File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments