ios-deploy 1.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/Gemfile +3 -0
- data/LICENSE.txt +22 -0
- data/README.md +12 -0
- data/Rakefile +2 -0
- data/bin/ios-deploy +6 -0
- data/ios-deploy.gemspec +23 -0
- data/lib/ios-deploy.rb +5 -0
- data/lib/ios-deploy/version.rb +3 -0
- data/node_modules/.bin/ios-deploy +0 -0
- data/node_modules/ios-deploy/.npmignore +6 -0
- data/node_modules/ios-deploy/CONTRIBUTING.md +31 -0
- data/node_modules/ios-deploy/Entitlements.plist +8 -0
- data/node_modules/ios-deploy/Info.plist +24 -0
- data/node_modules/ios-deploy/LICENSE +2 -0
- data/node_modules/ios-deploy/Makefile +35 -0
- data/node_modules/ios-deploy/MobileDevice.h +496 -0
- data/node_modules/ios-deploy/README.md +75 -0
- data/node_modules/ios-deploy/ResourceRules.plist +25 -0
- data/node_modules/ios-deploy/demo.c +9 -0
- data/node_modules/ios-deploy/ios-deploy +0 -0
- data/node_modules/ios-deploy/ios-deploy.c +1801 -0
- data/node_modules/ios-deploy/ios-deploy.dSYM/Contents/Info.plist +20 -0
- data/node_modules/ios-deploy/ios-deploy.dSYM/Contents/Resources/DWARF/ios-deploy +0 -0
- data/node_modules/ios-deploy/package.json +50 -0
- data/node_modules/ios-deploy/resources/buildbox/build.sh +3 -0
- data/package.json +15 -0
- metadata +101 -0
@@ -0,0 +1,20 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
+
<plist version="1.0">
|
4
|
+
<dict>
|
5
|
+
<key>CFBundleDevelopmentRegion</key>
|
6
|
+
<string>English</string>
|
7
|
+
<key>CFBundleIdentifier</key>
|
8
|
+
<string>com.apple.xcode.dsym.ios-deploy</string>
|
9
|
+
<key>CFBundleInfoDictionaryVersion</key>
|
10
|
+
<string>6.0</string>
|
11
|
+
<key>CFBundlePackageType</key>
|
12
|
+
<string>dSYM</string>
|
13
|
+
<key>CFBundleSignature</key>
|
14
|
+
<string>????</string>
|
15
|
+
<key>CFBundleShortVersionString</key>
|
16
|
+
<string>1.0</string>
|
17
|
+
<key>CFBundleVersion</key>
|
18
|
+
<string>1</string>
|
19
|
+
</dict>
|
20
|
+
</plist>
|
@@ -0,0 +1,50 @@
|
|
1
|
+
{
|
2
|
+
"name": "ios-deploy",
|
3
|
+
"version": "1.3.2",
|
4
|
+
"description": "launch iOS apps iOS devices from the command line (Xcode 6)",
|
5
|
+
"main": "ios-deploy",
|
6
|
+
"scripts": {
|
7
|
+
"preinstall": "make ios-deploy"
|
8
|
+
},
|
9
|
+
"bin": {
|
10
|
+
"ios-deploy": "./ios-deploy"
|
11
|
+
},
|
12
|
+
"repository": {
|
13
|
+
"type": "git",
|
14
|
+
"url": "https://github.com/phonegap/ios-deploy"
|
15
|
+
},
|
16
|
+
"keywords": [
|
17
|
+
"ios-deploy",
|
18
|
+
"deploy to iOS device"
|
19
|
+
],
|
20
|
+
"author": {
|
21
|
+
"name": "Greg Hughes"
|
22
|
+
},
|
23
|
+
"license": "GPLv3",
|
24
|
+
"gitHead": "33f6a83e1d94df5cf5041e9e16394409c4f63656",
|
25
|
+
"bugs": {
|
26
|
+
"url": "https://github.com/phonegap/ios-deploy/issues"
|
27
|
+
},
|
28
|
+
"homepage": "https://github.com/phonegap/ios-deploy",
|
29
|
+
"_id": "ios-deploy@1.3.2",
|
30
|
+
"_shasum": "6ffbbe287cec383198fc977ac6336e150ef2f5bc",
|
31
|
+
"_from": "ios-deploy@>=1.3.2 <2.0.0",
|
32
|
+
"_npmVersion": "1.4.14",
|
33
|
+
"_npmUser": {
|
34
|
+
"name": "shazron",
|
35
|
+
"email": "shazron@gmail.com"
|
36
|
+
},
|
37
|
+
"maintainers": [
|
38
|
+
{
|
39
|
+
"name": "shazron",
|
40
|
+
"email": "shazron@gmail.com"
|
41
|
+
}
|
42
|
+
],
|
43
|
+
"dist": {
|
44
|
+
"shasum": "6ffbbe287cec383198fc977ac6336e150ef2f5bc",
|
45
|
+
"tarball": "http://registry.npmjs.org/ios-deploy/-/ios-deploy-1.3.2.tgz"
|
46
|
+
},
|
47
|
+
"directories": {},
|
48
|
+
"_resolved": "https://registry.npmjs.org/ios-deploy/-/ios-deploy-1.3.2.tgz",
|
49
|
+
"readme": "ERROR: No README data found!"
|
50
|
+
}
|
data/package.json
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
{
|
2
|
+
"name": "ios-deploy-gem",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "TODO: Write a gem description",
|
5
|
+
"main": "index.js",
|
6
|
+
"dependencies": {
|
7
|
+
"ios-deploy": "^1.3.2"
|
8
|
+
},
|
9
|
+
"devDependencies": {},
|
10
|
+
"scripts": {
|
11
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
12
|
+
},
|
13
|
+
"author": "",
|
14
|
+
"license": "ISC"
|
15
|
+
}
|
metadata
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ios-deploy
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.3.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Giovanni Lodi
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-02-24 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.7'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
description: launch iOS apps iOS devices from the command line (Xcode 6)\nInstall
|
42
|
+
and debug iOS apps without using Xcode. Designed to work on un-jailbroken devices.
|
43
|
+
email:
|
44
|
+
- giovanni.lodi42@gmail.com
|
45
|
+
executables:
|
46
|
+
- ios-deploy
|
47
|
+
extensions: []
|
48
|
+
extra_rdoc_files: []
|
49
|
+
files:
|
50
|
+
- ".gitignore"
|
51
|
+
- Gemfile
|
52
|
+
- LICENSE.txt
|
53
|
+
- README.md
|
54
|
+
- Rakefile
|
55
|
+
- bin/ios-deploy
|
56
|
+
- ios-deploy.gemspec
|
57
|
+
- lib/ios-deploy.rb
|
58
|
+
- lib/ios-deploy/version.rb
|
59
|
+
- node_modules/.bin/ios-deploy
|
60
|
+
- node_modules/ios-deploy/.npmignore
|
61
|
+
- node_modules/ios-deploy/CONTRIBUTING.md
|
62
|
+
- node_modules/ios-deploy/Entitlements.plist
|
63
|
+
- node_modules/ios-deploy/Info.plist
|
64
|
+
- node_modules/ios-deploy/LICENSE
|
65
|
+
- node_modules/ios-deploy/Makefile
|
66
|
+
- node_modules/ios-deploy/MobileDevice.h
|
67
|
+
- node_modules/ios-deploy/README.md
|
68
|
+
- node_modules/ios-deploy/ResourceRules.plist
|
69
|
+
- node_modules/ios-deploy/demo.c
|
70
|
+
- node_modules/ios-deploy/ios-deploy
|
71
|
+
- node_modules/ios-deploy/ios-deploy.c
|
72
|
+
- node_modules/ios-deploy/ios-deploy.dSYM/Contents/Info.plist
|
73
|
+
- node_modules/ios-deploy/ios-deploy.dSYM/Contents/Resources/DWARF/ios-deploy
|
74
|
+
- node_modules/ios-deploy/package.json
|
75
|
+
- node_modules/ios-deploy/resources/buildbox/build.sh
|
76
|
+
- package.json
|
77
|
+
homepage: https://github.com/mokagio/ios-deploy-gem
|
78
|
+
licenses:
|
79
|
+
- MIT
|
80
|
+
metadata: {}
|
81
|
+
post_install_message:
|
82
|
+
rdoc_options: []
|
83
|
+
require_paths:
|
84
|
+
- lib
|
85
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0'
|
95
|
+
requirements: []
|
96
|
+
rubyforge_project:
|
97
|
+
rubygems_version: 2.2.2
|
98
|
+
signing_key:
|
99
|
+
specification_version: 4
|
100
|
+
summary: Mirror of the node module ios-deploy
|
101
|
+
test_files: []
|