|
1 | 1 | 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}' |
31 | 14 | spec.requires_arc = true
|
| 15 | + spec.ios.deployment_target = '8.0' |
| 16 | + #spec.osx.deployment_target = '10.9' |
| 17 | + |
32 | 18 | spec.dependency 'ReactiveCocoa', '4.0.0-alpha-3'
|
| 19 | + spec.framework = "Foundation" |
33 | 20 | end
|
0 commit comments