Files
RxRealm/RxRealm.podspec
2016-04-24 11:18:19 +02:00

29 lines
871 B
Ruby

Pod::Spec.new do |s|
s.name = "RxRealm"
s.version = "0.1.3"
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.0'
s.osx.deployment_target = '10.10'
s.source_files = 'Pod/Classes/*.swift'
s.frameworks = 'Foundation'
s.dependency 'RealmSwift', '~> 0.99'
s.dependency 'RxSwift'
end