Skip to content

Commit 37c7e0f

Browse files
prepare first release
1 parent d794f74 commit 37c7e0f

File tree

2 files changed

+25
-12
lines changed

2 files changed

+25
-12
lines changed

Mini-Swift.podspec

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,24 @@ Dependencies: RxSwift
1111
s.homepage = 'https://github.com/bq/Mini-Swift'
1212
s.license = { :type => 'APACHE', :file => 'LICENSE' }
1313
s.author = { 'bq' => '[email protected]' }
14-
s.source = { :git => 'https://github.com/bq/mini-swift.git', :tag => s.version.to_s }
14+
s.source = { :git => 'https://github.com/bq/mini-swift.git', :tag => "v#{s.version.to_s}" }
1515
s.social_media_url = 'https://twitter.com/bqreaders'
1616

17-
s.swift_version = '4.2'
1817
s.ios.deployment_target = '11.0'
18+
s.ios.frameworks = 'UIKit'
19+
s.ios.source_files = 'Source/**/*.swift'
1920

20-
s.source_files = "Source", "Source/**/*.{swift}"
21+
s.osx.deployment_target = '10.13'
22+
s.osx.frameworks = 'AppKit'
23+
s.osx.source_files = 'Source/**/*.swift'
24+
25+
s.watchos.deployment_target = '4.0'
26+
s.watchos.frameworks = 'UIKit', 'WatchKit'
27+
s.watchos.source_files = 'Source/**/*.swift'
28+
29+
s.tvos.deployment_target = '11.0'
30+
s.tvos.frameworks = 'UIKit'
31+
s.tvos.source_files = 'Source/**/*.swift'
2132

2233
s.frameworks = 'Foundation'
2334
s.dependency 'RxSwift', '~> 4.3'

README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,26 @@
11
# Mini-Swift
2+
The re-imagined Re-Flux architecture for Swift.
23

4+
[![Release Version](https://img.shields.io/github/release/bq/mini-swift.svg)](https://github.com/bq/mini-swift/releases)
5+
[![Release Date](https://img.shields.io/github/release-date/bq/mini-swift.svg)](https://github.com/bq/mini-swift/releases)
36
[![Build Status](https://travis-ci.org/bq/mini-swift.svg?branch=master)](https://travis-ci.org/bq/mini-swift)
4-
[![Version](https://img.shields.io/cocoapods/v/Mini-Swift.svg?style=flat)](https://cocoapods.org/pods/Mini-Swift)
5-
[![License](https://img.shields.io/cocoapods/l/Mini-Swift.svg?style=flat)](https://cocoapods.org/pods/Mini-Swift)
6-
[![Platform](https://img.shields.io/cocoapods/p/Mini-Swift.svg?style=flat)](https://cocoapods.org/pods/Mini-Swift)
7-
8-
## Example
9-
10-
To run the example project, clone the repo, and run `pod install` from the Example directory first.
7+
[![codecov](https://codecov.io/gh/bq/mini-swift/branch/master/graph/badge.svg)](https://codecov.io/gh/bq/mini-swift)
8+
[![GitHub](https://img.shields.io/github/license/bq/mini-swift.svg)](https://github.com/bq/mini-swift/blob/master/LICENSE)
119

1210
## Requirements
1311

1412
## Installation
1513

16-
Mini-Swift is available through [CocoaPods](https://cocoapods.org). To install
17-
it, simply add the following line to your Podfile:
14+
Mini-Swift is available through [CocoaPods](https://cocoapods.org) and [Carthage](https://github.com/Carthage/Carthage).
1815

16+
To install it, simply add the following line to your `Podfile`:
1917
```ruby
2018
pod 'Mini-Swift'
2119
```
20+
or this into your `Cartfile`:
21+
```ogdl
22+
github "bq/mini-swift"
23+
```
2224

2325
## Authors & Collaborators
2426

0 commit comments

Comments
 (0)