Skip to content

Commit 8519b10

Browse files
committed
init
0 parents  commit 8519b10

File tree

731 files changed

+158260
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

731 files changed

+158260
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

.eslintrc

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"env": {
3+
"node": true
4+
},
5+
"rules": {
6+
"block-scoped-var": 2,
7+
"brace-style": [2, "1tbs"],
8+
"camelcase": 1,
9+
"curly": 2,
10+
"eol-last": 2,
11+
"eqeqeq": [2, "smart"],
12+
"max-depth": [1, 3],
13+
"max-statements": [1, 15],
14+
"max-len": [1, 80],
15+
"new-cap": 1,
16+
"no-extend-native": 2,
17+
"no-mixed-spaces-and-tabs": 2,
18+
"no-trailing-spaces": 2,
19+
"no-use-before-define": [2, "nofunc"],
20+
"no-unused-vars": 1,
21+
"quotes": [2, "single", "avoid-escape"],
22+
"semi": [2, "always"],
23+
"space-after-keywords": [2, "always"],
24+
"space-in-brackets": [2, "never"],
25+
"space-unary-word-ops": 2
26+
}
27+
}

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# s3-streamer
2+
3+
## Usage
4+
5+
Streaming files from iOS to the server can be trivial and therefore this example was created. Seperate readme files are located in client and server folder

client/.DS_Store

6 KB
Binary file not shown.

client/Podfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Uncomment this line to define a global platform for your project
2+
# platform :ios, '6.0'
3+
4+
target 's3streamer' do
5+
6+
pod "AFNetworking", "~> 2.0"
7+
8+
end
9+
10+
target 's3streamerTests' do
11+
12+
end
13+

client/Podfile.lock

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
PODS:
2+
- AFNetworking (2.5.3):
3+
- AFNetworking/NSURLConnection (= 2.5.3)
4+
- AFNetworking/NSURLSession (= 2.5.3)
5+
- AFNetworking/Reachability (= 2.5.3)
6+
- AFNetworking/Security (= 2.5.3)
7+
- AFNetworking/Serialization (= 2.5.3)
8+
- AFNetworking/UIKit (= 2.5.3)
9+
- AFNetworking/NSURLConnection (2.5.3):
10+
- AFNetworking/Reachability
11+
- AFNetworking/Security
12+
- AFNetworking/Serialization
13+
- AFNetworking/NSURLSession (2.5.3):
14+
- AFNetworking/Reachability
15+
- AFNetworking/Security
16+
- AFNetworking/Serialization
17+
- AFNetworking/Reachability (2.5.3)
18+
- AFNetworking/Security (2.5.3)
19+
- AFNetworking/Serialization (2.5.3)
20+
- AFNetworking/UIKit (2.5.3):
21+
- AFNetworking/NSURLConnection
22+
- AFNetworking/NSURLSession
23+
24+
DEPENDENCIES:
25+
- AFNetworking (~> 2.0)
26+
27+
SPEC CHECKSUMS:
28+
AFNetworking: e1d86c2a96bb5d2e7408da36149806706ee122fe
29+
30+
COCOAPODS: 0.35.0

client/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.h

+67
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.m

+207
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)