Skip to content

Commit

Permalink
Merge pull request #4 from cats-oss/support-cocoapods
Browse files Browse the repository at this point in the history
Support Cocoapods
  • Loading branch information
marty-suzuki authored Mar 22, 2019
2 parents 483eba9 + 560315a commit 75923af
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,10 +324,12 @@ github "cats-oss/Unio"

### CocoaPods

~~Unio is available through [CocoaPods](https://cocoapods.org). To instal
it, simply add the following line to your Podfile:~~
Unio is available through [CocoaPods](https://cocoapods.org). To install
it, simply add the following line to your Podfile:

Coming soon
```ruby
pod "Unio"
```

## Requirements

Expand Down
22 changes: 22 additions & 0 deletions Unio.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#
# Be sure to run `pod spec lint Unio.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#

Pod::Spec.new do |s|
s.name = "Unio"
s.version = "0.2.0"
s.summary = "KeyPath based Unidirectionarl Input / Output framework with RxSwift."
s.homepage = "https://github.com/cats-oss/Unio"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Taiki Suzuki" => "suzuki_taiki@cyberagent.co.jp" }
s.ios.deployment_target = "9.0"
s.source = { :git => "https://github.com/cats-oss/Unio.git", :tag => "#{s.version}" }
s.source_files = "Unio/**/*.{swift}"
s.dependency 'RxSwift', '~> 4.0'
s.dependency 'RxCocoa', '~> 4.0'
s.swift_version = '4.2'
end

0 comments on commit 75923af

Please sign in to comment.