Skip to content

Commit 1f4653e

Browse files
authored
Merge pull request #1 from zzdjk6/master
Transfer repo to RxSwiftCommunity
2 parents 0a9a059 + 44df33a commit 1f4653e

File tree

4 files changed

+7
-12
lines changed

4 files changed

+7
-12
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2016 Chen Shenghan <[email protected]>
1+
Copyright (c) RxSwiftCommunity
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# RxEventHub
22

3-
[![CI Status](http://img.shields.io/travis/zzdjk6/RxEventHub.svg?style=flat)](https://travis-ci.org/zzdjk6/RxEventHub)
3+
[![CI Status](http://img.shields.io/travis/zzdjk6/RxEventHub.svg?style=flat)](https://travis-ci.org/RxSwiftCommunity/RxEventHub)
44
[![Version](https://img.shields.io/cocoapods/v/RxEventHub.svg?style=flat)](http://cocoapods.org/pods/RxEventHub)
55
[![License](https://img.shields.io/cocoapods/l/RxEventHub.svg?style=flat)](http://cocoapods.org/pods/RxEventHub)
66
[![Platform](https://img.shields.io/cocoapods/p/RxEventHub.svg?style=flat)](http://cocoapods.org/pods/RxEventHub)
@@ -23,7 +23,7 @@ You can notify the hub when events occur by simply writing 1 line code like belo
2323
RxEventHub.sharedHub.notify(ExampleIntEventProvider(), data: 2)
2424
```
2525

26-
You can get the `Observable` when events occur by simply writing 1 line code like below:
26+
You can get the `Observable` (`Observable<T>` in this example) when events occur by simply writing 1 line code like below:
2727

2828
```swift
2929
RxEventHub.sharedHub.eventObservable(ExampleIntEventProvider())
@@ -50,10 +50,6 @@ pod "RxEventHub"
5050

5151
Just copy `RxEventHub.swift` into your project, and you're ready to go.
5252

53-
## Author
54-
55-
56-
5753
## License
5854

5955
RxEventHub is available under the MIT license. See the LICENSE file for more info.

RxEventHub.podspec

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
Pod::Spec.new do |s|
22
s.name = 'RxEventHub'
3-
s.version = '0.1.0'
3+
s.version = '0.1.1'
44
s.summary = '`RxEventHub` makes multicasting event easy, type-safe and error-free, use it instead of `NSNotificationCenter` now!'
55

66
s.description = <<-DESC
77
`RxEventHub` is an event hub in `RxSwift` world, it makes multicasting event easy, type-safe and error-free, use it instead of `NSNotificationCenter` now!
88
DESC
99

10-
s.homepage = 'https://github.com/zzdjk6/RxEventHub'
10+
s.homepage = 'https://github.com/RxSwiftCommunity/RxEventHub'
1111
s.license = { :type => 'MIT', :file => 'LICENSE' }
1212
s.author = { 'zzdjk6' => '[email protected]' }
13-
s.source = { :git => 'https://github.com/zzdjk6/RxEventHub.git', :tag => s.version.to_s }
14-
s.social_media_url = 'https://twitter.com/zzdjk6'
13+
s.source = { :git => 'https://github.com/RxSwiftCommunity/RxEventHub.git', :tag => s.version.to_s }
1514

1615
s.ios.deployment_target = '8.0'
1716
s.source_files = 'RxEventHub/Classes/**/*'

RxEventHub/Classes/RxEventHub.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
RxEventHub.swift
33

4-
Copyright (c) 2016 Chen Shenghan <[email protected]>
4+
Copyright (c) RxSwiftCommunity
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)