Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ Signals is an eventing library that enables you to implement the Observable patt
To integrate Signals into your project add the following to your `Podfile`:

```ruby
pod 'UberSignals', '~> 2.0'
pod 'UberSignals', '~> 2.5'
```

#### Carthage

To integrate Signals into your project using Carthage add the following to your `Cartfile`:

```ruby
github "uber/signals-ios" ~> 2.0
github "uber/signals-ios" ~> 2.5
```

## Introduction
Expand Down
3 changes: 1 addition & 2 deletions UberSignals.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'UberSignals'
s.version = '2.5.0'
s.version = '2.5.1'
s.license = { :type => 'MIT' }
s.summary = 'Signals is an eventing framework that enables you to implement the Observable pattern without using NSNotifications.'
s.homepage = 'https://github.com/uber/signals-ios'
Expand All @@ -19,5 +19,4 @@ Pod::Spec.new do |s|

s.ios.frameworks = 'Foundation'
s.osx.frameworks = 'Foundation'

end