Skip to content

Commit

Permalink
update v1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
imex94 committed Mar 25, 2016
1 parent a969892 commit 548c076
Show file tree
Hide file tree
Showing 8 changed files with 60 additions and 5 deletions.
2 changes: 1 addition & 1 deletion NetworkKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "NetworkKit"
s.version = "1.3.1"
s.version = "1.3.2"
s.summary = "Lightweight Networking and Parsing framework made for iOS, Mac, WatchOS and tvOS"

s.description = "A lightweight iOS, Mac and Watch OS framework that makes networking and parsing super simple. Uses the open-sourced JSONHelper with functional parsing. For networking the library supports basic GET, POST, DELETE HTTP requests."
Expand Down
3 changes: 3 additions & 0 deletions NetworkKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@
2BD3D3D81C92EE920080BC62 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
2BD3D3E21C92EFF80080BC62 /* NKEItem.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NKEItem.swift; sourceTree = "<group>"; };
2BF2B6F01CA44B7F0003939B /* NetworkKitTvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NetworkKitTvOSTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
2BF2B7401CA4B2C80003939B /* Package.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Package.swift; sourceTree = "<group>"; };
2BFCC4A31C91B8D500FD0CA9 /* NetworkKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = NetworkKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
2BFCC4A61C91B8D500FD0CA9 /* NetworkKit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NetworkKit.h; sourceTree = "<group>"; };
2BFCC4B41C91C0B000FD0CA9 /* NetworkKitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NetworkKitTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
Expand Down Expand Up @@ -225,6 +226,7 @@
2BFCC4991C91B8D500FD0CA9 = {
isa = PBXGroup;
children = (
2BF2B7401CA4B2C80003939B /* Package.swift */,
2BD3D3CB1C92EE920080BC62 /* NetworkKitExample */,
2BFCC4A51C91B8D500FD0CA9 /* NetworkKit */,
2BFCC4B51C91C0B000FD0CA9 /* NetworkKitTests */,
Expand Down Expand Up @@ -1244,6 +1246,7 @@
2BF2B6FA1CA44B7F0003939B /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
2BFCC49D1C91B8D500FD0CA9 /* Build configuration list for PBXProject "NetworkKit" */ = {
isa = XCConfigurationList;
Expand Down
Binary file not shown.
4 changes: 2 additions & 2 deletions NetworkKit/Info-tvOS.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.2.1</string>
<string>1.3.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>11</string>
<string>13</string>
<key>NSPrincipalClass</key>
<string></string>
<key>UIRequiredDeviceCapabilities</key>
Expand Down
4 changes: 2 additions & 2 deletions NetworkKit/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.3</string>
<string>1.3.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>293</string>
<string>296</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down
31 changes: 31 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
//
// Package.swift
// NetworkKit
//
// The MIT License (MIT)
//
// Copyright (c) 2016 Alex Telek
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.

import PackageDescription

let package = Package(
name: "NetworkKit"
)
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,27 @@ Then run the folloring command:
$ pod install
```

### Chartage

[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.

You can install Carthage with [Homebrew](http://brew.sh) using the following command:

```
$ brew update
$ brew install carthage
```

To integrate NetworkKit into your Xcode project using Carthage, add it into your ```Cartfile```:

```
github "imex94/NetworkKit" ~> 1.3
```

Run ```carthage update``` to build the framework and drag the built ```NetworkKit.framework``` into your Xcode project under **Target** - **General** - **Embedded binaries**:

![Import Framework](https://github.com/imex94/NetworkKit/blob/master/images/import2.png "Import Framework")

## Usage

**NetworkKitExample** project provides a guidance to get started.
Expand Down
Binary file added images/import2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 548c076

Please sign in to comment.