Skip to content

Commit 3dc1ccf

Browse files
committed
Update ReactiveArray.podspec
1 parent d9aaf3c commit 3dc1ccf

File tree

1 file changed

+16
-29
lines changed

1 file changed

+16
-29
lines changed

ReactiveArray.podspec

Lines changed: 16 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,20 @@
11
Pod::Spec.new do |spec|
2-
spec.name = 'ReactiveArray'
3-
spec.version = '0.5.0'
4-
spec.license = { :type => 'MIT', :text => <<-LICENSE
5-
Copyright (c) 2015 Guido Marucci Blas <guidomb@wolox.com.ar>
6-
7-
Permission is hereby granted, free of charge, to any person obtaining a copy
8-
of this software and associated documentation files (the "Software"), to deal
9-
in the Software without restriction, including without limitation the rights
10-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11-
copies of the Software, and to permit persons to whom the Software is
12-
furnished to do so, subject to the following conditions:
13-
14-
The above copyright notice and this permission notice shall be included in
15-
all copies or substantial portions of the Software.
16-
17-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23-
THE SOFTWARE.
24-
LICENSE
25-
}
26-
spec.homepage = 'https://github.com/Wolox/ReactiveArray'
27-
spec.authors = {'Guido Marucci Blas' => 'guidomb@gmail.com','Wolox' => 'http://www.wolox.com.ar' }
28-
spec.summary = 'An array class implemented in Swift that can be observed using ReactiveCocoa's Signals.'
29-
spec.source = {:git => 'https://github.com/Wolox/ReactiveArray.git', :tag => 'v0.5.0' }
30-
spec.source_files = 'ReactiveArray/*.{swift,h}'
2+
spec.name = 'ReactiveArray'
3+
spec.version = '0.5.0'
4+
spec.summary = "An array class implemented in Swift that can be observed using ReactiveCocoa's Signals."
5+
spec.homepage = 'https://github.com/Wolox/ReactiveArray'
6+
spec.license = { :type => 'MIT', :file => 'LICENSE' }
7+
spec.author = {
8+
'Guido Marucci Blas' => 'guidomb@wolox.com.ar',
9+
'Wolox' => nil,
10+
}
11+
spec.social_media_url = 'http://twitter.com/wolox'
12+
spec.source = { :git => 'https://github.com/Wolox/ReactiveArray.git', :tag => "v#{spec.version}" }
13+
spec.source_files = 'ReactiveArray/**/*.{h,swift}'
3114
spec.requires_arc = true
15+
spec.ios.deployment_target = '8.0'
16+
#spec.osx.deployment_target = '10.9'
17+
3218
spec.dependency 'ReactiveCocoa', '4.0.0-alpha-3'
19+
spec.framework = "Foundation"
3320
end

0 commit comments

Comments
 (0)