Files
RxRealm/RxRealm.podspec
Marin Todorov e34d17cbd1 * first commit
2016-04-19 16:24:14 +02:00

33 lines
932 B
Ruby

Pod::Spec.new do |s|
s.name = "RxRealm"
s.version = "0.1.0"
s.summary = "An Rx wrapper of Realm's collection type"
s.description = <<-DESC
This is an Rx extension that provides an easy and straight-forward way
to use Realm's natively reactive collection type as an Observable
DESC
s.homepage = "https://github.com/RxSwiftCommunity/RxRealm"
s.license = 'MIT'
s.author = { "Marin Todorov" => "marin@underplot.com" }
s.source = { :git => "https://github.com/RxSwiftCommunity/RxRealm.git", :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '8.3'
s.osx.deployment_target = '10.10'
s.source_files = 'Pod/Classes/*.swift'
s.resource_bundles = {
'RxRealm' => ['RxRealm/Assets/*.png']
}
s.frameworks = 'Foundation'
s.dependency 'RealmSwift'
s.dependency 'RxSwift'
end