-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
14 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
Pod::Spec.new do |s| | ||
s.name = 'Unrealm' | ||
s.swift_version = '5.1' | ||
s.version = '1.0.6' | ||
s.version = '1.2.0' | ||
s.summary = 'Unrealm is an extension on RealmCocoa, which enables Swift native types to be saved in Realm.' | ||
s.description = <<-DESC | ||
Unrealm enables you to easily store Swift native Classes, Structs and Enums into Realm. | ||
|
@@ -19,23 +19,21 @@ Getting rid of redundant inheriting from Object class | |
Getting rid of Realm crashes like "Object has been deleted or invalidated" | ||
Getting rid of Realm crashes like "Realm accessed from incorrect thread" | ||
Getting rid of boilerplate code such @objc dynamic var. Use just var or let | ||
Works perfect with Codables and Optionals! | ||
DESC | ||
|
||
s.homepage = 'https://github.com/arturdev/Unrealm' | ||
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' | ||
s.screenshots = 'https://raw.githubusercontent.com/arturdev/Unrealm/assets/preview.png' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'arturdev' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/arturdev/Unrealm.git', :tag => s.version.to_s } | ||
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>' | ||
s.social_media_url = 'https://www.linkedin.com/in/arturdev/' | ||
|
||
s.ios.deployment_target = '9.0' | ||
s.osx.deployment_target = '10.12' | ||
|
||
s.source_files = 'Unrealm/Classes/**/*.{h,m,swift}' | ||
|
||
|
||
# s.public_header_files = 'Pod/Classes/**/*.h' | ||
|
||
s.dependency 'RealmSwift', '4.3.2' | ||
s.dependency 'RealmSwift', '4.4.0' | ||
s.dependency 'RuntimeNew', '2.1.5' | ||
end |