File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change
1
+ Pod ::Spec . new do |spec |
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}'
14
+ spec . requires_arc = true
15
+ spec . ios . deployment_target = '8.0'
16
+ #spec.osx.deployment_target = '10.9'
17
+
18
+ spec . dependency 'ReactiveCocoa' , '4.0.0-alpha-3'
19
+ spec . framework = "Foundation"
20
+ end
You can’t perform that action at this time.
0 commit comments