File tree 2 files changed +26
-1
lines changed
2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change
1
+ Pod ::Spec . new do |spec |
2
+ spec . name = 'Swish'
3
+ spec . version = '1.0.0'
4
+ spec . summary = 'Nothing but net(working)'
5
+ spec . homepage = 'https://github.com/thoughtbot/Swish'
6
+ spec . license = { :type => 'MIT' , :file => 'LICENSE' }
7
+ spec . author = {
8
+ 'Gordon Fontenot' => 'gordon@thoughtbot.com' ,
9
+ 'Sid Raval' => 'sid@thoughtbot.com' ,
10
+ 'thoughtbot' => nil ,
11
+ }
12
+ spec . social_media_url = 'http://twitter.com/thoughtbot'
13
+ spec . source = { :git => 'https://github.com/thoughtbot/Swish.git' , :tag => "v#{ spec . version } " }
14
+ spec . source_files = 'Source/**/*.{h,swift}'
15
+
16
+ spec . dependency 'Argo' , '~> 3.0.0'
17
+ spec . dependency 'Result' , '~> 2.0.0'
18
+
19
+ spec . requires_arc = true
20
+
21
+ spec . ios . deployment_target = '8.0'
22
+ spec . osx . deployment_target = '10.9'
23
+ spec . watchos . deployment_target = '2.0'
24
+ spec . tvos . deployment_target = '9.0'
25
+ end
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >FMWK </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >1.0 </string >
18
+ <string >1.0.0 </string >
19
19
<key >CFBundleSignature </key >
20
20
<string >???? </string >
21
21
<key >CFBundleVersion </key >
You can’t perform that action at this time.
0 commit comments