Skip to content

Commit

Permalink
added support for external binary data
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Dahan committed Apr 26, 2016
1 parent ea25d67 commit 135e936
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Graph.podspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Pod::Spec.new do |s|
s.name = 'Graph'
s.version = '1.0.11'
s.version = '1.0.12'
s.license = 'BSD'
s.summary = 'An elegant data-driven framework for CoreData in Swift.'
s.summary = 'An elegant data-driven framework in Swift.'
s.homepage = 'http://cosmicmind.io'
s.social_media_url = 'https://www.facebook.com/graphkit'
s.authors = { 'CosmicMind, Inc.' => '[email protected]' }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Graph is a CoreData framework written in Swift. It's designed to simplify the co
## Requirements

* iOS 8.0+ / Mac OS X 10.9+
* Xcode 7.2+
* Xcode 7.3+

## Communication

Expand Down
2 changes: 1 addition & 1 deletion Sources/GraphModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public extension Graph {
propertyValue.attributeType = .TransformableAttributeType
propertyValue.attributeValueClassName = "AnyObject"
propertyValue.optional = false
propertyValue.storedInExternalRecord = true
propertyValue.allowsExternalBinaryDataStorage = true
entityPropertyProperties.append(propertyValue.copy() as! NSAttributeDescription)
actionPropertyProperties.append(propertyValue.copy() as! NSAttributeDescription)
relationshipPropertyProperties.append(propertyValue.copy() as! NSAttributeDescription)
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.11</string>
<string>1.0.12</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 135e936

Please sign in to comment.