Skip to content

Commit

Permalink
Merge pull request #15 from DKalachniuk/master
Browse files Browse the repository at this point in the history
added support for cocoapods
  • Loading branch information
Oleksii Dykan authored Feb 10, 2017
2 parents 69c2958 + efbf4b3 commit 5fd7456
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
1 change: 1 addition & 0 deletions .swift-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.0
16 changes: 16 additions & 0 deletions SwiftyJSONModel.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Pod::Spec.new do |s|
s.name = "SwiftyJSONModel"
s.version = "0.0.9"
s.summary = "Better way to use SwiftyJSON with custom models"
s.homepage = "https://github.com/alickbass/SwiftyJSONModel"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.authors = { "Oleksii Dykan" => "[email protected]"}

s.ios.deployment_target = "8.0"
s.requires_arc = true

s.source = { :git => "https://github.com/alickbass/SwiftyJSONModel.git", :tag => s.version, :branch => 'master' }
s.source_files = 'SwiftyJSONModel/*.swift'
s.dependency 'SwiftyJSON', '~> 3.0'

end
5 changes: 4 additions & 1 deletion SwiftyJSONModel.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -218,12 +218,13 @@
CEE453061D8D801800E5968A = {
CreatedOnToolsVersion = 8.0;
DevelopmentTeam = 7H6SM4X3H7;
LastSwiftMigration = 0800;
LastSwiftMigration = 0820;
ProvisioningStyle = Automatic;
};
CEE4530F1D8D801800E5968A = {
CreatedOnToolsVersion = 8.0;
DevelopmentTeam = 7H6SM4X3H7;
LastSwiftMigration = 0820;
ProvisioningStyle = Automatic;
};
};
Expand Down Expand Up @@ -348,6 +349,7 @@
SDKROOT = iphoneos;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 3.0;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
Expand Down Expand Up @@ -394,6 +396,7 @@
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_VERSION = 3.0;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
Expand Down

0 comments on commit 5fd7456

Please sign in to comment.