-
Notifications
You must be signed in to change notification settings - Fork 0
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
Abdulrahman Qasem
authored and
Abdulrahman Qasem
committed
Nov 9, 2023
1 parent
d6af5d3
commit 059fd53
Showing
3 changed files
with
15 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,34 +8,24 @@ | |
|
||
Pod::Spec.new do |s| | ||
s.name = 'DynamicMapper' | ||
s.version = '1.0.4' | ||
s.summary = 'Map your model Dynamically without need to create class or struct' | ||
s.version = '2.0.0' | ||
s.license = 'MIT' | ||
s.summary = 'Map your model dynamically using native Codable' | ||
# This description is used to generate tags and improve search results. | ||
# * Think: What does it do? Why did you write it? What is the focus? | ||
# * Try to keep it short, snappy and to the point. | ||
# * Write the description between the DESC delimiters below. | ||
# * Finally, don't worry about the indent, CocoaPods strips it! | ||
|
||
# This description is used to generate tags and improve search results. | ||
# * Think: What does it do? Why did you write it? What is the focus? | ||
# * Try to keep it short, snappy and to the point. | ||
# * Write the description between the DESC delimiters below. | ||
# * Finally, don't worry about the indent, CocoaPods strips it! | ||
|
||
s.description = <<-DESC | ||
'Dynamic Mapper is an awesome framework to git a nested propertry form inside your Json with out the need to create the whole model and its nested submodels' | ||
DESC | ||
s.description = <<-DESC | ||
'DynamicMapper is a framework written in Swift for dynamically decoding and encoding models (reference and value types) using Swift native Decodable and Encodable protocols. Nested Objects encoding and decoding (Dynamic Mapping), Dynamic object insertion and creation and smooth transformation from Codable' | ||
DESC | ||
s.homepage = 'https://github.com/AbdulrahmanQasem95/DynamicMapper' | ||
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'Abdulrahman Qasem' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/AbdulrahmanQasem95/DynamicMapper.git', :tag => s.version.to_s } | ||
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>' | ||
|
||
s.ios.deployment_target = '12.0' | ||
|
||
s.source_files = 'Classes/**/*.swift' | ||
s.swift_version = '5.0' | ||
# s.resource_bundles = { | ||
# 'DynamicMapper' => ['DynamicMapper/Assets/*.png'] | ||
# } | ||
|
||
# s.public_header_files = 'Pod/Classes/**/*.h' | ||
# s.frameworks = 'UIKit', 'MapKit' | ||
# s.dependency 'AFNetworking', '~> 2.3' | ||
s.requires_arc = true | ||
s.source_files = 'Classes/**/*.swift' | ||
end |
Binary file modified
BIN
+1 KB
(100%)
...Mapper.xcworkspace/xcuserdata/abdulrahmanqasem.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
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