Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
3lvis committed Feb 22, 2015
0 parents commit 4c2b00b
Show file tree
Hide file tree
Showing 13 changed files with 557 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# OS X
.DS_Store
.AppleDouble
.LSOverride
Icon
._*
.Spotlight-V100
.Trashes

# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
language: objective-c
# script: xctool -workspace Tests/Tests.xcworkspace -scheme Tests -sdk iphonesimulator build test
# script: xctool -project Tests/Tests.xcodeproj -scheme Tests -sdk iphonesimulator build test

3 changes: 3 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
GitHub Issues is for reporting bugs in **Networking** and discussing features, bugs and general feedback. Be sure to check our [documentation](http://cocoadocs.org/docsets/Networking), [FAQ](https://github.com/NSElvis/Networking/wiki/FAQ) and [past issues](https://github.com/NSElvis/Networking/issues?state=closed) before opening any new issues.

If you are posting about a crash in your application, a stack trace is helpful, but additional context, in the form of code and explanation, is necessary to be of any use.
22 changes: 22 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Licensed under the **MIT** license

> Copyright (c) 2014 Elvis Nuñez
>
> 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.
18 changes: 18 additions & 0 deletions Networking.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Pod::Spec.new do |s|
s.name = "Networking"
s.version = "0.1"
s.summary = "Networking library"
s.homepage = "https://github.com/NSElvis/Networking"
s.license = 'MIT'
s.author = { "Elvis Nuñez" => "[email protected]" }
s.source = { git: "https://github.com/NSElvis/Networking.git", tag: s.version.to_s }
s.social_media_url = 'https://twitter.com/NSElvis'

s.platform = :ios, '7.0'
s.requires_arc = true

s.source_files = 'Source/**/*'

# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Networking

[![CI Status](http://img.shields.io/travis/NSElvis/Networking.svg?style=flat)](https://travis-ci.org/NSElvis/Networking)
[![Version](https://img.shields.io/cocoapods/v/Networking.svg?style=flat)](http://cocoadocs.org/docsets/Networking)
[![License](https://img.shields.io/cocoapods/l/Networking.svg?style=flat)](http://cocoadocs.org/docsets/Networking)
[![Platform](https://img.shields.io/cocoapods/p/Networking.svg?style=flat)](http://cocoadocs.org/docsets/Networking)

## Usage

To run the example project, clone the repo, and open the `.xcodeproj` from the Demo directory.

## Installation

**Networking** is available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:

`pod 'Networking'`

## Author

Elvis Nuñez, [email protected]

## License

**Networking** is available under the MIT license. See the LICENSE file for more info.
Empty file added Source/Networking.h
Empty file.
Empty file added Source/Networking.m
Empty file.
Loading

0 comments on commit 4c2b00b

Please sign in to comment.