Skip to content

Commit af55505

Browse files
committed
update READMEs
1 parent fe4c8f8 commit af55505

File tree

4 files changed

+36
-26
lines changed

4 files changed

+36
-26
lines changed

README-ja.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77

88
Pythonのようなスッキリした正規表現ライブラリー。
99

10-
[English](https://github.com/cezheng/PySwiftyRegex/blob/master/README.md)
11-
[简体中文](https://github.com/cezheng/PySwiftyRegex/blob/master/README-zh.md)
10+
[English](README.md)
11+
[简体中文](README-zh.md)
12+
[한국어](README-ko.md)
1213

1314
## コードをみましょう
1415

@@ -25,12 +26,14 @@ if let m = re.search("[Tt]his is (.*?)easy", "I think this is really easy!!!") {
2526
## 環境
2627

2728
- iOS 7.0+ / Mac OS X 10.9+
28-
- Xcode 7.0+
29+
- Xcode 8.0+
30+
31+
> Swift 2.3はバージョン[0.3.0](../../releases/tag/0.3.0)をご利用ください。
2932
3033
## インストール
3134
> **Embedded frameworks を使うには iOS 8 または OS X Mavericks 以上は必要です**
3235
>
33-
> Deployment Target は iOS 7 のプロジェクトで `PySwiftyRegex` を使うには, [PySwiftyRegex.swift](https://github.com/cezheng/PySwiftyRegex/blob/master/PySwiftyRegex/PySwiftyRegex.swift) のソースファイルをダウンロードして、Xcodeプロジェクトに追加するのは必要となります。
36+
> Deployment Target は iOS 7 のプロジェクトで `PySwiftyRegex` を使うには, [PySwiftyRegex.swift](PySwiftyRegex/PySwiftyRegex.swift) のソースファイルをダウンロードして、Xcodeプロジェクトに追加するのは必要となります。
3437
3538
### CocoaPods(iOS 8+, OS X 10.9+)
3639
[Cocoapods](http://cocoapods.org/) で簡単に `PySwiftyRegex` をインストールできます。 下記のように`Podfile`を編集してください:
@@ -40,7 +43,7 @@ platform :ios, '8.0'
4043
use_frameworks!
4144

4245
target 'MyApp' do
43-
pod 'PySwiftyRegex', '~> 0.2.0'
46+
pod 'PySwiftyRegex', '~> 1.0.0'
4447
end
4548
```
4649

@@ -54,7 +57,7 @@ $ pod install
5457
下記の行を `Cartfile``Cartfile.private` かに追加してください:
5558

5659
```
57-
github "cezheng/PySwiftyRegex" ~> 0.2.0
60+
github "cezheng/PySwiftyRegex" ~> 1.0.0
5861
```
5962
そして、下記のコマンドを実行してください:
6063

@@ -145,4 +148,4 @@ regex.subn("u", "You guys go grap your food", 1) // ("u guys go grap your food",
145148

146149
## ライセンス
147150

148-
`PySwiftyRegex` のオープンソースライセンスは MIT です。 詳しくはこちら [LICENSE](https://github.com/cezheng/PySwiftyRegex/blob/master/LICENSE)
151+
`PySwiftyRegex` のオープンソースライセンスは MIT です。 詳しくはこちら [LICENSE](LICENSE)

README-ko.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
Swift에서 정규표현식을 Python처럼 쉽게 다뤄보세요.
99

1010
[English](README.md)
11-
[简体中文](https://github.com/cezheng/PySwiftyRegex/blob/master/README-zh.md)
12-
[日本語](https://github.com/cezheng/PySwiftyRegex/blob/master/README-ja.md)
11+
[简体中文](README-zh.md)
12+
[日本語](README-ja.md)
1313

1414
## 굉장히 쉽습니다
1515

@@ -27,12 +27,14 @@ if let m = re.search("[Tt]his is (.*?)easy", "I think this is really easy!!!") {
2727
## 요구사항
2828

2929
- iOS 7.0+ / Mac OS X 10.9+
30-
- Xcode 7.0+
30+
- Xcode 8.0+
31+
32+
> Swift 2.3의 경우 버전 [0.3.0](../../releases/tag/0.3.0)를 이용해주십시오.
3133
3234
## 설치하기
3335
> **임베드된 프레임워크를 사용하려면 iOS 8 또는 OS X Mavericks 이상을 지원해야 합니다.**
3436
>
35-
> `PySwiftyRegex`을 iOS 7 타겟 프로젝트에서 사용하려면 [CocoaSeeds](#cocoaseeds-for-ios7)를 사용하거나 혹은 [PySwiftyRegex.swift](https://github.com/cezheng/PySwiftyRegex/blob/master/PySwiftyRegex/PySwiftyRegex.swift) 파일을 다운받아 프로젝트에 직접 포함시켜야 합니다.
37+
> `PySwiftyRegex`을 iOS 7 타겟 프로젝트에서 사용하려면 [CocoaSeeds](#cocoaseeds-for-ios7)를 사용하거나 혹은 [PySwiftyRegex.swift](PySwiftyRegex/PySwiftyRegex.swift) 파일을 다운받아 프로젝트에 직접 포함시켜야 합니다.
3638
3739
### CocoaPods (iOS 8+, OS X 10.9+)
3840

@@ -43,7 +45,7 @@ platform :ios, '8.0'
4345
use_frameworks!
4446

4547
target 'MyApp' do
46-
pod 'PySwiftyRegex', '~> 0.2.0'
48+
pod 'PySwiftyRegex', '~> 1.0.0'
4749
end
4850
```
4951

@@ -58,7 +60,7 @@ $ pod install
5860
**Cartfile** 또는 **Cartfile.private**에 아래 라인을 추가합니다.
5961

6062
```
61-
github "cezheng/PySwiftyRegex" ~> 0.2.0
63+
github "cezheng/PySwiftyRegex" ~> 1.0.0
6264
```
6365

6466
그리고 쉘에서 다음 명령어를 실행합니다.
@@ -77,7 +79,7 @@ Carthage가 생성한 **PySwiftyRegex.framework**를 Xcode 프로젝트의 'Gene
7779

7880
```ruby
7981
target :MyApp do
80-
github 'cezheng/PySwiftyRegex', '0.2.0', :files => 'PySwiftyRegex/PySwiftyRegex.swift'
82+
github 'cezheng/PySwiftyRegex', '1.0.0', :files => 'PySwiftyRegex/PySwiftyRegex.swift'
8183
end
8284
```
8385

README-zh.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77

88
像Python一样简洁高效地作正则处理。
99

10-
[English](https://github.com/cezheng/PySwiftyRegex/blob/master/README.md)
11-
[日本語](https://github.com/cezheng/PySwiftyRegex/blob/master/README-ja.md)
10+
[English](README.md)
11+
[日本語](README-ja.md)
12+
[한국어](README-ko.md)
1213

1314
## 先上代码
1415

@@ -25,7 +26,9 @@ if let m = re.search("[Tt]his is (.*?)easy", "I think this is really easy!!!") {
2526
## 环境
2627

2728
- iOS 7.0+ / Mac OS X 10.9+
28-
- Xcode 7.0+
29+
- Xcode 8.0+
30+
31+
> Swift 2.3请使用[0.3.0](../../releases/tag/0.3.0)版。
2932
3033
## 导入
3134
> **使用 Embedded frameworks 至少需要 iOS 8 或 OS X Mavericks.**
@@ -145,4 +148,4 @@ regex.subn("u", "You guys go grap your food", 1) // ("u guys go grap your food",
145148

146149
## 开源协议
147150

148-
`PySwiftyRegex` 使用MIT许可协议。 详见 [LICENSE](https://github.com/cezheng/PySwiftyRegex/blob/master/LICENSE)
151+
`PySwiftyRegex` 使用MIT许可协议。 详见 [LICENSE](https://github.com/cezheng/PySwiftyRegex/blob/master/LICENSE)

README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
Easily deal with Regex in Swift in a Pythonic way.
99

10-
[简体中文](https://github.com/cezheng/PySwiftyRegex/blob/master/README-zh.md)
11-
[日本語](https://github.com/cezheng/PySwiftyRegex/blob/master/README-ja.md)
10+
[简体中文](README-zh.md)
11+
[日本語](README-ja.md)
1212
[한국어](README-ko.md)
1313

1414
## This is Easy
@@ -26,13 +26,15 @@ See [More examples](#more_usage).
2626
## Requirements
2727

2828
- iOS 7.0+ / Mac OS X 10.9+
29-
- Xcode 7.0+
29+
- Xcode 8.0+
30+
31+
< For Swift 2.3 please use version [0.3.0](../../releases/tag/0.3.0).
3032

3133

3234
## Installation
3335
> **Embedded frameworks require a minimum deployment target of iOS 8 or OS X Mavericks.**
3436
>
35-
> To use `PySwiftyRegex` with a project targeting iOS 7, consider using [CocoaSeeds](#cocoaseeds-for-ios7) or copy the [PySwiftyRegex.swift](https://github.com/cezheng/PySwiftyRegex/blob/master/PySwiftyRegex/PySwiftyRegex.swift) file into your project.
37+
> To use `PySwiftyRegex` with a project targeting iOS 7, consider using [CocoaSeeds](#cocoaseeds-for-ios7) or copy the [PySwiftyRegex.swift](PySwiftyRegex/PySwiftyRegex.swift) file into your project.
3638
3739
### CocoaPods(iOS 8+, OS X 10.9+)
3840
You can use [Cocoapods](http://cocoapods.org/) to install `PySwiftyRegex` by adding it to your to your `Podfile`:
@@ -42,7 +44,7 @@ platform :ios, '8.0'
4244
use_frameworks!
4345

4446
target 'MyApp' do
45-
pod 'PySwiftyRegex', '~> 0.2.0'
47+
pod 'PySwiftyRegex', '~> 1.0.0'
4648
end
4749
```
4850

@@ -56,7 +58,7 @@ $ pod install
5658
Adding the following line to your `Cartfile` or `Cartfile.private`:
5759

5860
```
59-
github "cezheng/PySwiftyRegex" ~> 0.2.0
61+
github "cezheng/PySwiftyRegex" ~> 1.0.0
6062
```
6163
Run the following command:
6264

@@ -73,7 +75,7 @@ Create **Seedfile**:
7375

7476
```ruby
7577
target :MyApp do
76-
github 'cezheng/PySwiftyRegex', '0.2.0', :files => 'PySwiftyRegex/PySwiftyRegex.swift'
78+
github 'cezheng/PySwiftyRegex', '1.0.0', :files => 'PySwiftyRegex/PySwiftyRegex.swift'
7779
end
7880
```
7981

@@ -167,4 +169,4 @@ regex.subn("u", "You guys go grap your food", 1) // ("u guys go grap your food",
167169

168170
## License
169171

170-
`PySwiftyRegex` is released under the MIT license. See [LICENSE](https://github.com/cezheng/PySwiftyRegex/blob/master/LICENSE) for details.
172+
`PySwiftyRegex` is released under the MIT license. See [LICENSE](LICENSE) for details.

0 commit comments

Comments
 (0)