Skip to content

Commit a725844

Browse files
committed
Initial README
1 parent ef126b8 commit a725844

File tree

3 files changed

+53
-0
lines changed

3 files changed

+53
-0
lines changed

LICENSE

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Copyright (c) 2015, Kyle Fuller
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
7+
1. Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
9+
2. Redistributions in binary form must reproduce the above copyright notice,
10+
this list of conditions and the following disclaimer in the documentation
11+
and/or other materials provided with the distribution.
12+
13+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
14+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
17+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
20+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23+

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# RxQueryKit
2+
3+
## Installation
4+
5+
[CocoaPods](http://cocoapods.org) is the recommended way to add RxQueryKit to your project.
6+
7+
```ruby
8+
pod 'QueryKit', :git => 'https://github.com/QueryKit/QueryKit', :branch => 'swift-2.0'
9+
pod 'RxQueryKit', :git => 'https://github.com/QueryKit/RxQueryKit'
10+
```
11+
12+
## License
13+
14+

RxQueryKit.podspec

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Pod::Spec.new do |spec|
2+
spec.name = 'RxQueryKit'
3+
spec.version = '0.1.0'
4+
spec.summary = 'RxSwift extensions for dealing with QueryKit'
5+
spec.homepage = 'https://github.com/QueryKit/RxQueryKit'
6+
spec.license = { :type => 'BSD', :file => 'LICENSE' }
7+
spec.author = { 'Kyle Fuller' => '[email protected]' }
8+
spec.social_media_url = 'http://twitter.com/kylefuller'
9+
spec.source = { :git => 'https://github.com/kylef/RxQueryKit.git', :tag => spec.version }
10+
spec.source_files = 'RxQueryKit/*.swift'
11+
spec.ios.deployment_target = '8.0'
12+
spec.osx.deployment_target = '10.9'
13+
spec.requires_arc = true
14+
spec.dependency 'QueryKit'
15+
end
16+

0 commit comments

Comments
 (0)