Skip to content

Commit

Permalink
updated documentation reference for Entities
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Dahan committed Jun 2, 2016
1 parent c49f280 commit c9d5f63
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Examples/Relationship/Relationship/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ class ViewController: UIViewController {

/// Prepares the navigation bar items.
private func prepareNavigationBarItems() {
navigationItem.rightBarButtonItem = UIBarButtonItem(barButtonSystemItem: .Add, target: self, action: "handleAddButton:")
navigationItem.rightBarButtonItem = UIBarButtonItem(barButtonSystemItem: .Add, target: self, action: #selector(handleAddButton(_:)))
}
}

Expand Down
2 changes: 1 addition & 1 deletion Graph.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Graph'
s.version = '1.0.12'
s.version = '1.0.13'
s.license = 'BSD-3-Clause'
s.summary = 'An elegant data-driven framework in Swift.'
s.homepage = 'http://cosmicmind.io'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ elon["photo"] = UIImage(contentsOfFile: path)
graph.save()
```

[Learn More About Entities](https://github.com/CosmicMind/Graph/wiki/Entity)
[Learn More About Entities](http://www.cosmicmind.io/graph/entity)

<a name="relationship"></a>
## Relationship
Expand Down
3 changes: 0 additions & 3 deletions Sources/GraphWatch.swift
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,6 @@ public extension Graph {
save operation.
*/
private func notifyWatchers(notification: NSNotification) {
let moc: NSManagedObjectContext = Graph.context!
moc.mergeChangesFromContextDidSaveNotification(notification)

let userInfo: [NSObject : AnyObject]? = notification.userInfo

// inserts
Expand Down
2 changes: 1 addition & 1 deletion Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0.12</string>
<string>1.0.13</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit c9d5f63

Please sign in to comment.