Skip to content

Commit

Permalink
docs: metadata update
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofzablocki committed Oct 25, 2017
1 parent 1c0259c commit f6d8e6d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LifetimeTracker.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "LifetimeTracker"
s.version = "1.0.9"
s.version = "1.1.0"
s.summary = "Framework to visually warn you when retain cycle / leak happens."
s.description = <<-DESC
Mini framework that can surface retain cycle issues sooner.
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@ To Integrate visual notifications simply add following line at the start of `App

```swift
#if DEBUG
LifetimeTracker.setup(onUpdate: LifetimeTrackerDashboardIntegration().refreshUI)
LifetimeTracker.setup(onUpdate: LifetimeTrackerDashboardIntegration(visibility: .visibleWithIssuesDetected).refreshUI)
#endif
```

You can control when the dashboard is visible: `alwaysVisible`, `alwaysHidden`, or `visibleWithIssuesDetected`.

## Tracking key actors

Usually you want to use LifetimeTracker to track only key actors in your app, like ViewModels / Controllers etc.
Expand Down

0 comments on commit f6d8e6d

Please sign in to comment.