Skip to content

Commit 0960d5f

Browse files
author
Guido Marucci Blas
committed
Merge pull request #19 from olejnjak/olejnjak-podspec
Created podspec to use with Cocoapods
2 parents 4f3d5c0 + 3dc1ccf commit 0960d5f

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

ReactiveArray.podspec

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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

0 commit comments

Comments
 (0)