vikingio 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,9 +1,9 @@
1
- using UnityEngine;
2
- using System.Collections;
3
-
4
- public class VikingIOConfig {
5
-
6
- public const string APP_NAME = "[APP_NAME]";
7
- public const int APP_ID = [APP_ID];
8
-
1
+ using UnityEngine;
2
+ using System.Collections;
3
+
4
+ public class VikingIOConfig {
5
+
6
+ public const string APP_NAME = "[APP_NAME]";
7
+ public const int APP_ID = [APP_ID];
8
+
9
9
  }
data/vikingio-cli.gemspec CHANGED
@@ -1,23 +1,26 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'vikingio/cli/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "vikingio"
8
- spec.version = VikingIO::CLI::VERSION
9
- spec.authors = ["Eric Campbell"]
10
- spec.email = ["info@vikingio.com"]
11
- spec.summary = %q{VikingIO command line toolkit.}
12
- spec.description = %q{VikingIO command line toolkit.}
13
- spec.homepage = ""
14
- spec.license = "MIT"
15
-
16
- spec.files = `git ls-files -z`.split("\x0")
17
- spec.executables = ["vikingio"]
18
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
- spec.require_paths = ["lib"]
20
-
21
- spec.add_development_dependency "bundler", "~> 1.6"
22
- spec.add_development_dependency "rake"
23
- end
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'vikingio/cli/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "vikingio"
8
+ spec.version = VikingIO::CLI::VERSION
9
+ spec.authors = ["Eric Campbell"]
10
+ spec.email = ["info@vikingio.com"]
11
+ spec.summary = %q{VikingIO command line toolkit.}
12
+ spec.description = %q{VikingIO command line toolkit.}
13
+ spec.homepage = "http://www.vikingio.com"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = ["vikingio"]
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_dependency("rubyzip")
24
+ spec.add_dependency("json")
25
+ spec.add_dependency("multipart-post")
26
+ end
data/vikingio.iss ADDED
@@ -0,0 +1,13 @@
1
+ [Setup]
2
+ AppName=VikingIO
3
+ AppVersion=0.4
4
+ DefaultDirName={pf}\VikingIO
5
+ DefaultGroupName=VikingIO
6
+ OutputBaseFilename=VikingIOInstaller
7
+
8
+ [Icons]
9
+ Name: "{group}\VikingIO"; Filename: "{app}\vikingio.exe"
10
+ Name: "{group}\Uninstall VikingIO"; Filename: "{uninstallexe}"
11
+
12
+ [Registry]
13
+ Root: HKLM; Subkey: "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"; ValueType: expandsz; ValueName: "Path"; ValueData: "{olddata};{app}"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vikingio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Campbell
@@ -38,6 +38,48 @@ dependencies:
38
38
  - - '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rubyzip
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: json
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: multipart-post
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
41
83
  description: VikingIO command line toolkit.
42
84
  email:
43
85
  - info@vikingio.com
@@ -50,6 +92,7 @@ files:
50
92
  - .gitignore
51
93
  - Gemfile
52
94
  - LICENSE.txt
95
+ - Output/VikingIOInstaller.exe
53
96
  - README.md
54
97
  - Rakefile
55
98
  - bin/vikingio
@@ -61,13 +104,15 @@ files:
61
104
  - lib/vikingio/cli/commands.rb
62
105
  - lib/vikingio/cli/helpers.rb
63
106
  - lib/vikingio/cli/version.rb
107
+ - lib/vikingio/cli/zip.vbs
64
108
  - templates/MessageTemplate.cs
65
109
  - templates/NetworkManager.cs
66
110
  - templates/Program.cs
67
111
  - templates/ServerNodeTemplate.cs
68
112
  - templates/VikingIO.Config.cs
69
113
  - vikingio-cli.gemspec
70
- homepage: ''
114
+ - vikingio.iss
115
+ homepage: http://www.vikingio.com
71
116
  licenses:
72
117
  - MIT
73
118
  metadata: {}
@@ -87,7 +132,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
132
  version: '0'
88
133
  requirements: []
89
134
  rubyforge_project:
90
- rubygems_version: 2.0.14
135
+ rubygems_version: 2.2.2
91
136
  signing_key:
92
137
  specification_version: 4
93
138
  summary: VikingIO command line toolkit.