u3d 0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (124) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +2 -0
  3. data/.licenses.json +19 -0
  4. data/.rspec +1 -0
  5. data/.rubocop.yml +43 -0
  6. data/Gemfile +5 -0
  7. data/Gemfile.lock +98 -0
  8. data/LICENSE +21 -0
  9. data/LICENSE.fastlane +22 -0
  10. data/LOG_RULES.md +170 -0
  11. data/README.md +72 -0
  12. data/Rakefile +28 -0
  13. data/TODO.md +15 -0
  14. data/build.sh +5 -0
  15. data/config/log_rules.json +230 -0
  16. data/examples/Example1/.gitignore +19 -0
  17. data/examples/Example1/Assets/Editor.meta +9 -0
  18. data/examples/Example1/Assets/Editor/EditorRun.cs +23 -0
  19. data/examples/Example1/Assets/Editor/EditorRun.cs.meta +12 -0
  20. data/examples/Example1/Assets/Editor/FileSystemUtil.cs +26 -0
  21. data/examples/Example1/Assets/Editor/FileSystemUtil.cs.meta +12 -0
  22. data/examples/Example1/Assets/Scene1.unity +264 -0
  23. data/examples/Example1/Assets/Scene1.unity.meta +8 -0
  24. data/examples/Example1/Gemfile +8 -0
  25. data/examples/Example1/Gemfile.lock +165 -0
  26. data/examples/Example1/ProjectSettings/AudioManager.asset +16 -0
  27. data/examples/Example1/ProjectSettings/ClusterInputManager.asset +6 -0
  28. data/examples/Example1/ProjectSettings/DynamicsManager.asset +18 -0
  29. data/examples/Example1/ProjectSettings/EditorBuildSettings.asset +7 -0
  30. data/examples/Example1/ProjectSettings/EditorSettings.asset +14 -0
  31. data/examples/Example1/ProjectSettings/GraphicsSettings.asset +61 -0
  32. data/examples/Example1/ProjectSettings/InputManager.asset +295 -0
  33. data/examples/Example1/ProjectSettings/NavMeshAreas.asset +89 -0
  34. data/examples/Example1/ProjectSettings/NetworkManager.asset +8 -0
  35. data/examples/Example1/ProjectSettings/Physics2DSettings.asset +35 -0
  36. data/examples/Example1/ProjectSettings/ProjectSettings.asset +591 -0
  37. data/examples/Example1/ProjectSettings/ProjectVersion.txt +1 -0
  38. data/examples/Example1/ProjectSettings/QualitySettings.asset +180 -0
  39. data/examples/Example1/ProjectSettings/TagManager.asset +43 -0
  40. data/examples/Example1/ProjectSettings/TimeManager.asset +9 -0
  41. data/examples/Example1/ProjectSettings/UnityConnectSettings.asset +32 -0
  42. data/examples/Example1/README.md +5 -0
  43. data/examples/Example1/Rakefile +5 -0
  44. data/examples/Example1/fastlane/Fastfile +4 -0
  45. data/examples/Example1/fastlane/Pluginfile +1 -0
  46. data/examples/Example1/run.sh +1 -0
  47. data/examples/Example2/.gitignore +20 -0
  48. data/examples/Example2/Assets/Editor.meta +9 -0
  49. data/examples/Example2/Assets/Editor/EditorRun.cs +33 -0
  50. data/examples/Example2/Assets/Editor/EditorRun.cs.meta +12 -0
  51. data/examples/Example2/Assets/Editor/PostprocessBuildPlayer.cs +92 -0
  52. data/examples/Example2/Assets/Editor/PostprocessBuildPlayer.cs.meta +8 -0
  53. data/examples/Example2/Assets/Editor/PostprocessBuildPlayer_log.sh +31 -0
  54. data/examples/Example2/Assets/Editor/PostprocessBuildPlayer_log.sh.meta +8 -0
  55. data/examples/Example2/Assets/Editor/SimpleBuildSetup.cs +20 -0
  56. data/examples/Example2/Assets/Editor/SimpleBuildSetup.cs.meta +12 -0
  57. data/examples/Example2/Assets/Scene.unity +278 -0
  58. data/examples/Example2/Assets/Scene.unity.meta +8 -0
  59. data/examples/Example2/Gemfile +8 -0
  60. data/examples/Example2/Gemfile.lock +165 -0
  61. data/examples/Example2/ProjectSettings/AudioManager.asset +17 -0
  62. data/examples/Example2/ProjectSettings/ClusterInputManager.asset +6 -0
  63. data/examples/Example2/ProjectSettings/DynamicsManager.asset +19 -0
  64. data/examples/Example2/ProjectSettings/EditorBuildSettings.asset +10 -0
  65. data/examples/Example2/ProjectSettings/EditorSettings.asset +14 -0
  66. data/examples/Example2/ProjectSettings/GraphicsSettings.asset +63 -0
  67. data/examples/Example2/ProjectSettings/InputManager.asset +295 -0
  68. data/examples/Example2/ProjectSettings/NavMeshAreas.asset +89 -0
  69. data/examples/Example2/ProjectSettings/NetworkManager.asset +8 -0
  70. data/examples/Example2/ProjectSettings/Physics2DSettings.asset +36 -0
  71. data/examples/Example2/ProjectSettings/ProjectSettings.asset +591 -0
  72. data/examples/Example2/ProjectSettings/ProjectVersion.txt +1 -0
  73. data/examples/Example2/ProjectSettings/QualitySettings.asset +193 -0
  74. data/examples/Example2/ProjectSettings/TagManager.asset +43 -0
  75. data/examples/Example2/ProjectSettings/TimeManager.asset +9 -0
  76. data/examples/Example2/ProjectSettings/UnityConnectSettings.asset +34 -0
  77. data/examples/Example2/README.md +10 -0
  78. data/examples/Example2/fastlane/Fastfile +4 -0
  79. data/examples/Example2/fastlane/Pluginfile +1 -0
  80. data/exe/u3d +7 -0
  81. data/fastlane-plugin-u3d/.gitignore +10 -0
  82. data/fastlane-plugin-u3d/.licenses.json +9 -0
  83. data/fastlane-plugin-u3d/.rspec +3 -0
  84. data/fastlane-plugin-u3d/.rubocop.yml +253 -0
  85. data/fastlane-plugin-u3d/.travis.yml +4 -0
  86. data/fastlane-plugin-u3d/Gemfile +6 -0
  87. data/fastlane-plugin-u3d/LICENSE +21 -0
  88. data/fastlane-plugin-u3d/README.md +52 -0
  89. data/fastlane-plugin-u3d/Rakefile +9 -0
  90. data/fastlane-plugin-u3d/circle.yml +9 -0
  91. data/fastlane-plugin-u3d/fastlane-plugin-u3d.gemspec +31 -0
  92. data/fastlane-plugin-u3d/fastlane/Fastfile +3 -0
  93. data/fastlane-plugin-u3d/fastlane/Pluginfile +1 -0
  94. data/fastlane-plugin-u3d/lib/fastlane/plugin/u3d.rb +38 -0
  95. data/fastlane-plugin-u3d/lib/fastlane/plugin/u3d/actions/u3d_action.rb +80 -0
  96. data/fastlane-plugin-u3d/lib/fastlane/plugin/u3d/helper/u3d_helper.rb +34 -0
  97. data/fastlane-plugin-u3d/lib/fastlane/plugin/u3d/version.rb +27 -0
  98. data/fastlane-plugin-u3d/spec/spec_helper.rb +32 -0
  99. data/lib/u3d.rb +33 -0
  100. data/lib/u3d/cache.rb +120 -0
  101. data/lib/u3d/commands.rb +307 -0
  102. data/lib/u3d/commands_generator.rb +163 -0
  103. data/lib/u3d/downloader.rb +363 -0
  104. data/lib/u3d/iniparser.rb +83 -0
  105. data/lib/u3d/installer.rb +445 -0
  106. data/lib/u3d/log_analyzer.rb +221 -0
  107. data/lib/u3d/unity_version_number.rb +71 -0
  108. data/lib/u3d/unity_versions.rb +207 -0
  109. data/lib/u3d/utils.rb +121 -0
  110. data/lib/u3d/version.rb +31 -0
  111. data/lib/u3d_core.rb +30 -0
  112. data/lib/u3d_core/command_executor.rb +134 -0
  113. data/lib/u3d_core/command_runner.rb +93 -0
  114. data/lib/u3d_core/credentials.rb +116 -0
  115. data/lib/u3d_core/globals.rb +84 -0
  116. data/lib/u3d_core/helper.rb +149 -0
  117. data/lib/u3d_core/ui/disable_colors.rb +40 -0
  118. data/lib/u3d_core/ui/implementations/shell.rb +157 -0
  119. data/lib/u3d_core/ui/interface.rb +182 -0
  120. data/lib/u3d_core/ui/ui.rb +49 -0
  121. data/local_gem_install.sh +6 -0
  122. data/scripts/be +14 -0
  123. data/u3d.gemspec +41 -0
  124. metadata +388 -0
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: 74d4601976d5e4839b32d67941dca3f9
3
+ MonoImporter:
4
+ serializedVersion: 2
5
+ defaultReferences: []
6
+ executionOrder: 0
7
+ icon: {instanceID: 0}
8
+ userData:
@@ -0,0 +1,31 @@
1
+ #!/bin/bash
2
+ #
3
+ # a simple script to troubleshoot the PostProcessingBuildPlayer arguments
4
+ #
5
+ # change this value to non 0 to enable logging
6
+ debug=1
7
+
8
+ install_path=$1
9
+ dir=`dirname $install_path`
10
+ file=$dir/PostprocessBuildPlayer.log
11
+
12
+ if [ $debug -eq 0 ]; then
13
+ exit 0
14
+ fi
15
+
16
+ echo "$0"
17
+ if [ -f $file ]; then
18
+ rm $file
19
+ fi
20
+ date >> $file
21
+ echo 0 $0 >> $file
22
+ echo 1 $1 >> $file
23
+ echo 2 $2 >> $file
24
+ echo 3 $3 >> $file
25
+ echo 4 $4 >> $file
26
+ echo 5 $5 >> $file
27
+ echo 6 $6 >> $file
28
+ echo 7 $7 >> $file
29
+ echo 8 $8 >> $file
30
+ echo 9 $9 >> $file
31
+ echo all \"$1\" \"$2\" \"$3\" \"$4\" \"$5\" \"$6\" \"$7\" \"$8\" \"$9\" >> $file
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: f5f512d880554457184127264124e5ab
3
+ timeCreated: 1500638365
4
+ licenseType: Pro
5
+ DefaultImporter:
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -0,0 +1,20 @@
1
+ using UnityEngine;
2
+ using UnityEditor;
3
+ using System.Collections;
4
+
5
+ namespace WWTK {
6
+ [InitializeOnLoad]
7
+ public class SimpleBuildSetup {
8
+
9
+ static SimpleBuildSetup()
10
+ {
11
+ Run();
12
+ }
13
+
14
+ public static void Run () {
15
+ Debug.Log("Forcing SerializationMode.ForceText and Visible Meta Files");
16
+ EditorSettings.externalVersionControl = "Visible Meta Files";
17
+ EditorSettings.serializationMode = SerializationMode.ForceText;
18
+ }
19
+ }
20
+ }
@@ -0,0 +1,12 @@
1
+ fileFormatVersion: 2
2
+ guid: c19502ed660bb41b0aea5b90a14ee48e
3
+ timeCreated: 1500557048
4
+ licenseType: Pro
5
+ MonoImporter:
6
+ serializedVersion: 2
7
+ defaultReferences: []
8
+ executionOrder: 0
9
+ icon: {instanceID: 0}
10
+ userData:
11
+ assetBundleName:
12
+ assetBundleVariant:
@@ -0,0 +1,278 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!29 &1
4
+ OcclusionCullingSettings:
5
+ m_ObjectHideFlags: 0
6
+ serializedVersion: 2
7
+ m_OcclusionBakeSettings:
8
+ smallestOccluder: 5
9
+ smallestHole: 0.25
10
+ backfaceThreshold: 100
11
+ m_SceneGUID: 00000000000000000000000000000000
12
+ m_OcclusionCullingData: {fileID: 0}
13
+ --- !u!104 &2
14
+ RenderSettings:
15
+ m_ObjectHideFlags: 0
16
+ serializedVersion: 8
17
+ m_Fog: 0
18
+ m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
19
+ m_FogMode: 3
20
+ m_FogDensity: 0.01
21
+ m_LinearFogStart: 0
22
+ m_LinearFogEnd: 300
23
+ m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
24
+ m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
25
+ m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
26
+ m_AmbientIntensity: 1
27
+ m_AmbientMode: 0
28
+ m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
29
+ m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0}
30
+ m_HaloStrength: 0.5
31
+ m_FlareStrength: 1
32
+ m_FlareFadeSpeed: 3
33
+ m_HaloTexture: {fileID: 0}
34
+ m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
35
+ m_DefaultReflectionMode: 0
36
+ m_DefaultReflectionResolution: 128
37
+ m_ReflectionBounces: 1
38
+ m_ReflectionIntensity: 1
39
+ m_CustomReflection: {fileID: 0}
40
+ m_Sun: {fileID: 0}
41
+ m_IndirectSpecularColor: {r: 0.44659364, g: 0.4964301, b: 0.5748256, a: 1}
42
+ --- !u!157 &3
43
+ LightmapSettings:
44
+ m_ObjectHideFlags: 0
45
+ serializedVersion: 11
46
+ m_GIWorkflowMode: 0
47
+ m_GISettings:
48
+ serializedVersion: 2
49
+ m_BounceScale: 1
50
+ m_IndirectOutputScale: 1
51
+ m_AlbedoBoost: 1
52
+ m_TemporalCoherenceThreshold: 1
53
+ m_EnvironmentLightingMode: 0
54
+ m_EnableBakedLightmaps: 1
55
+ m_EnableRealtimeLightmaps: 1
56
+ m_LightmapEditorSettings:
57
+ serializedVersion: 9
58
+ m_Resolution: 2
59
+ m_BakeResolution: 40
60
+ m_TextureWidth: 1024
61
+ m_TextureHeight: 1024
62
+ m_AO: 0
63
+ m_AOMaxDistance: 1
64
+ m_CompAOExponent: 1
65
+ m_CompAOExponentDirect: 0
66
+ m_Padding: 2
67
+ m_LightmapParameters: {fileID: 0}
68
+ m_LightmapsBakeMode: 1
69
+ m_TextureCompression: 1
70
+ m_FinalGather: 0
71
+ m_FinalGatherFiltering: 1
72
+ m_FinalGatherRayCount: 256
73
+ m_ReflectionCompression: 2
74
+ m_MixedBakeMode: 2
75
+ m_BakeBackend: 0
76
+ m_PVRSampling: 1
77
+ m_PVRDirectSampleCount: 32
78
+ m_PVRSampleCount: 500
79
+ m_PVRBounces: 2
80
+ m_PVRFiltering: 0
81
+ m_PVRFilteringMode: 1
82
+ m_PVRCulling: 1
83
+ m_PVRFilteringGaussRadiusDirect: 1
84
+ m_PVRFilteringGaussRadiusIndirect: 5
85
+ m_PVRFilteringGaussRadiusAO: 2
86
+ m_PVRFilteringAtrousColorSigma: 1
87
+ m_PVRFilteringAtrousNormalSigma: 1
88
+ m_PVRFilteringAtrousPositionSigma: 1
89
+ m_LightingDataAsset: {fileID: 0}
90
+ m_UseShadowmask: 1
91
+ --- !u!196 &4
92
+ NavMeshSettings:
93
+ serializedVersion: 2
94
+ m_ObjectHideFlags: 0
95
+ m_BuildSettings:
96
+ serializedVersion: 2
97
+ agentTypeID: 0
98
+ agentRadius: 0.5
99
+ agentHeight: 2
100
+ agentSlope: 45
101
+ agentClimb: 0.4
102
+ ledgeDropHeight: 0
103
+ maxJumpAcrossDistance: 0
104
+ minRegionArea: 2
105
+ manualCellSize: 0
106
+ cellSize: 0.16666667
107
+ manualTileSize: 0
108
+ tileSize: 256
109
+ accuratePlacement: 0
110
+ m_NavMeshData: {fileID: 0}
111
+ --- !u!1 &409021093
112
+ GameObject:
113
+ m_ObjectHideFlags: 0
114
+ m_PrefabParentObject: {fileID: 0}
115
+ m_PrefabInternal: {fileID: 0}
116
+ serializedVersion: 5
117
+ m_Component:
118
+ - component: {fileID: 409021095}
119
+ - component: {fileID: 409021094}
120
+ m_Layer: 0
121
+ m_Name: Directional Light
122
+ m_TagString: Untagged
123
+ m_Icon: {fileID: 0}
124
+ m_NavMeshLayer: 0
125
+ m_StaticEditorFlags: 0
126
+ m_IsActive: 1
127
+ --- !u!108 &409021094
128
+ Light:
129
+ m_ObjectHideFlags: 0
130
+ m_PrefabParentObject: {fileID: 0}
131
+ m_PrefabInternal: {fileID: 0}
132
+ m_GameObject: {fileID: 409021093}
133
+ m_Enabled: 1
134
+ serializedVersion: 8
135
+ m_Type: 1
136
+ m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1}
137
+ m_Intensity: 1
138
+ m_Range: 10
139
+ m_SpotAngle: 30
140
+ m_CookieSize: 10
141
+ m_Shadows:
142
+ m_Type: 2
143
+ m_Resolution: -1
144
+ m_CustomResolution: -1
145
+ m_Strength: 1
146
+ m_Bias: 0.05
147
+ m_NormalBias: 0.4
148
+ m_NearPlane: 0.2
149
+ m_Cookie: {fileID: 0}
150
+ m_DrawHalo: 0
151
+ m_Flare: {fileID: 0}
152
+ m_RenderMode: 0
153
+ m_CullingMask:
154
+ serializedVersion: 2
155
+ m_Bits: 4294967295
156
+ m_Lightmapping: 4
157
+ m_AreaSize: {x: 1, y: 1}
158
+ m_BounceIntensity: 1
159
+ m_FalloffTable:
160
+ m_Table[0]: 0
161
+ m_Table[1]: 0
162
+ m_Table[2]: 0
163
+ m_Table[3]: 0
164
+ m_Table[4]: 0
165
+ m_Table[5]: 0
166
+ m_Table[6]: 0
167
+ m_Table[7]: 0
168
+ m_Table[8]: 0
169
+ m_Table[9]: 0
170
+ m_Table[10]: 0
171
+ m_Table[11]: 0
172
+ m_Table[12]: 0
173
+ m_ColorTemperature: 6570
174
+ m_UseColorTemperature: 0
175
+ m_ShadowRadius: 0
176
+ m_ShadowAngle: 0
177
+ --- !u!4 &409021095
178
+ Transform:
179
+ m_ObjectHideFlags: 0
180
+ m_PrefabParentObject: {fileID: 0}
181
+ m_PrefabInternal: {fileID: 0}
182
+ m_GameObject: {fileID: 409021093}
183
+ m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261}
184
+ m_LocalPosition: {x: 0, y: 3, z: 0}
185
+ m_LocalScale: {x: 1, y: 1, z: 1}
186
+ m_Children: []
187
+ m_Father: {fileID: 0}
188
+ m_RootOrder: 1
189
+ m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0}
190
+ --- !u!1 &725172584
191
+ GameObject:
192
+ m_ObjectHideFlags: 0
193
+ m_PrefabParentObject: {fileID: 0}
194
+ m_PrefabInternal: {fileID: 0}
195
+ serializedVersion: 5
196
+ m_Component:
197
+ - component: {fileID: 725172589}
198
+ - component: {fileID: 725172588}
199
+ - component: {fileID: 725172587}
200
+ - component: {fileID: 725172586}
201
+ - component: {fileID: 725172585}
202
+ m_Layer: 0
203
+ m_Name: Main Camera
204
+ m_TagString: MainCamera
205
+ m_Icon: {fileID: 0}
206
+ m_NavMeshLayer: 0
207
+ m_StaticEditorFlags: 0
208
+ m_IsActive: 1
209
+ --- !u!81 &725172585
210
+ AudioListener:
211
+ m_ObjectHideFlags: 0
212
+ m_PrefabParentObject: {fileID: 0}
213
+ m_PrefabInternal: {fileID: 0}
214
+ m_GameObject: {fileID: 725172584}
215
+ m_Enabled: 1
216
+ --- !u!124 &725172586
217
+ Behaviour:
218
+ m_ObjectHideFlags: 0
219
+ m_PrefabParentObject: {fileID: 0}
220
+ m_PrefabInternal: {fileID: 0}
221
+ m_GameObject: {fileID: 725172584}
222
+ m_Enabled: 1
223
+ --- !u!92 &725172587
224
+ Behaviour:
225
+ m_ObjectHideFlags: 0
226
+ m_PrefabParentObject: {fileID: 0}
227
+ m_PrefabInternal: {fileID: 0}
228
+ m_GameObject: {fileID: 725172584}
229
+ m_Enabled: 1
230
+ --- !u!20 &725172588
231
+ Camera:
232
+ m_ObjectHideFlags: 0
233
+ m_PrefabParentObject: {fileID: 0}
234
+ m_PrefabInternal: {fileID: 0}
235
+ m_GameObject: {fileID: 725172584}
236
+ m_Enabled: 1
237
+ serializedVersion: 2
238
+ m_ClearFlags: 1
239
+ m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0}
240
+ m_NormalizedViewPortRect:
241
+ serializedVersion: 2
242
+ x: 0
243
+ y: 0
244
+ width: 1
245
+ height: 1
246
+ near clip plane: 0.3
247
+ far clip plane: 1000
248
+ field of view: 60
249
+ orthographic: 0
250
+ orthographic size: 5
251
+ m_Depth: -1
252
+ m_CullingMask:
253
+ serializedVersion: 2
254
+ m_Bits: 4294967295
255
+ m_RenderingPath: -1
256
+ m_TargetTexture: {fileID: 0}
257
+ m_TargetDisplay: 0
258
+ m_TargetEye: 3
259
+ m_HDR: 1
260
+ m_AllowMSAA: 1
261
+ m_ForceIntoRT: 0
262
+ m_OcclusionCulling: 1
263
+ m_StereoConvergence: 10
264
+ m_StereoSeparation: 0.022
265
+ m_StereoMirrorMode: 0
266
+ --- !u!4 &725172589
267
+ Transform:
268
+ m_ObjectHideFlags: 0
269
+ m_PrefabParentObject: {fileID: 0}
270
+ m_PrefabInternal: {fileID: 0}
271
+ m_GameObject: {fileID: 725172584}
272
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
273
+ m_LocalPosition: {x: 0, y: 1, z: -10}
274
+ m_LocalScale: {x: 1, y: 1, z: 1}
275
+ m_Children: []
276
+ m_Father: {fileID: 0}
277
+ m_RootOrder: 0
278
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: 841dff53209ef4c12b8c52a02d59af82
3
+ timeCreated: 1500637485
4
+ licenseType: Pro
5
+ DefaultImporter:
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -0,0 +1,8 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'fastlane'
4
+ REPO_ROOT = File.expand_path(File.join('..', '..'))
5
+ gem 'u3d', path: REPO_ROOT
6
+
7
+ plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
8
+ eval(File.read(plugins_path), binding) if File.exist?(plugins_path)
@@ -0,0 +1,165 @@
1
+ PATH
2
+ remote: /Users/lacostej/Code/WWTK/FastGame/fastlane-plugin-u3d
3
+ specs:
4
+ fastlane-plugin-u3d (0.1.0)
5
+ u3d (~> 0.9)
6
+
7
+ PATH
8
+ remote: /Users/lacostej/Code/WWTK/FastGame
9
+ specs:
10
+ u3d (0.9)
11
+ colored (>= 1.2, < 2.0.0)
12
+ commander (>= 4.4.0, < 5.0.0)
13
+ file-tail (>= 1.2.0)
14
+ filesize (>= 0.1.1)
15
+ inifile (>= 3.0.0, < 4.0.0)
16
+ plist (>= 3.1.0, < 4.0.0)
17
+ security (= 0.1.3)
18
+
19
+ GEM
20
+ remote: https://rubygems.org/
21
+ specs:
22
+ CFPropertyList (2.3.5)
23
+ addressable (2.5.1)
24
+ public_suffix (~> 2.0, >= 2.0.2)
25
+ babosa (1.0.2)
26
+ claide (1.0.2)
27
+ colored (1.2)
28
+ colored2 (3.1.2)
29
+ commander (4.4.3)
30
+ highline (~> 1.7.2)
31
+ commander-fastlane (4.4.5)
32
+ highline (~> 1.7.2)
33
+ declarative (0.0.9)
34
+ declarative-option (0.1.0)
35
+ domain_name (0.5.20170404)
36
+ unf (>= 0.0.5, < 1.0.0)
37
+ dotenv (2.2.1)
38
+ excon (0.57.1)
39
+ faraday (0.12.1)
40
+ multipart-post (>= 1.2, < 3)
41
+ faraday-cookie_jar (0.0.6)
42
+ faraday (>= 0.7.4)
43
+ http-cookie (~> 1.0.0)
44
+ faraday_middleware (0.11.0.1)
45
+ faraday (>= 0.7.4, < 1.0)
46
+ fastimage (2.1.0)
47
+ fastlane (2.47.0)
48
+ CFPropertyList (>= 2.3, < 3.0.0)
49
+ addressable (>= 2.3, < 3.0.0)
50
+ babosa (>= 1.0.2, < 2.0.0)
51
+ bundler (>= 1.12.0, < 2.0.0)
52
+ colored
53
+ commander-fastlane (>= 4.4.5, < 5.0.0)
54
+ dotenv (>= 2.1.1, < 3.0.0)
55
+ excon (>= 0.45.0, < 1.0.0)
56
+ faraday (~> 0.9)
57
+ faraday-cookie_jar (~> 0.0.6)
58
+ faraday_middleware (~> 0.9)
59
+ fastimage (>= 2.1.0, < 3.0.0)
60
+ gh_inspector (>= 1.0.1, < 2.0.0)
61
+ google-api-client (>= 0.12.0, < 0.13.0)
62
+ highline (>= 1.7.2, < 2.0.0)
63
+ json (< 3.0.0)
64
+ mini_magick (~> 4.5.1)
65
+ multi_json
66
+ multi_xml (~> 0.5)
67
+ multipart-post (~> 2.0.0)
68
+ plist (>= 3.1.0, < 4.0.0)
69
+ rubyzip (>= 1.1.0, < 2.0.0)
70
+ security (= 0.1.3)
71
+ slack-notifier (>= 1.3, < 2.0.0)
72
+ terminal-notifier (>= 1.6.2, < 2.0.0)
73
+ terminal-table (>= 1.4.5, < 2.0.0)
74
+ tty-screen (~> 0.5.0)
75
+ word_wrap (~> 1.0.0)
76
+ xcodeproj (>= 1.4.4, < 2.0.0)
77
+ xcpretty (>= 0.2.4, < 1.0.0)
78
+ xcpretty-travis-formatter (>= 0.0.3)
79
+ file-tail (1.2.0)
80
+ tins (~> 1.0)
81
+ filesize (0.1.1)
82
+ gh_inspector (1.0.3)
83
+ google-api-client (0.12.0)
84
+ addressable (~> 2.5, >= 2.5.1)
85
+ googleauth (~> 0.5)
86
+ httpclient (>= 2.8.1, < 3.0)
87
+ mime-types (~> 3.0)
88
+ representable (~> 3.0)
89
+ retriable (>= 2.0, < 4.0)
90
+ googleauth (0.5.2)
91
+ faraday (~> 0.12)
92
+ jwt (~> 1.4)
93
+ logging (~> 2.0)
94
+ memoist (~> 0.12)
95
+ multi_json (~> 1.11)
96
+ os (~> 0.9)
97
+ signet (~> 0.7)
98
+ highline (1.7.8)
99
+ http-cookie (1.0.3)
100
+ domain_name (~> 0.5)
101
+ httpclient (2.8.3)
102
+ inifile (3.0.0)
103
+ json (2.1.0)
104
+ jwt (1.5.6)
105
+ little-plugger (1.1.4)
106
+ logging (2.2.2)
107
+ little-plugger (~> 1.1)
108
+ multi_json (~> 1.10)
109
+ memoist (0.16.0)
110
+ mime-types (3.1)
111
+ mime-types-data (~> 3.2015)
112
+ mime-types-data (3.2016.0521)
113
+ mini_magick (4.5.1)
114
+ multi_json (1.12.1)
115
+ multi_xml (0.6.0)
116
+ multipart-post (2.0.0)
117
+ nanaimo (0.2.3)
118
+ os (0.9.6)
119
+ plist (3.3.0)
120
+ public_suffix (2.0.5)
121
+ representable (3.0.4)
122
+ declarative (< 0.1.0)
123
+ declarative-option (< 0.2.0)
124
+ uber (< 0.2.0)
125
+ retriable (3.0.2)
126
+ rouge (2.0.7)
127
+ rubyzip (1.2.1)
128
+ security (0.1.3)
129
+ signet (0.7.3)
130
+ addressable (~> 2.3)
131
+ faraday (~> 0.9)
132
+ jwt (~> 1.5)
133
+ multi_json (~> 1.10)
134
+ slack-notifier (1.5.1)
135
+ terminal-notifier (1.8.0)
136
+ terminal-table (1.8.0)
137
+ unicode-display_width (~> 1.1, >= 1.1.1)
138
+ tins (1.15.0)
139
+ tty-screen (0.5.0)
140
+ uber (0.1.0)
141
+ unf (0.1.4)
142
+ unf_ext
143
+ unf_ext (0.0.7.4)
144
+ unicode-display_width (1.3.0)
145
+ word_wrap (1.0.0)
146
+ xcodeproj (1.5.1)
147
+ CFPropertyList (~> 2.3.3)
148
+ claide (>= 1.0.2, < 2.0)
149
+ colored2 (~> 3.1)
150
+ nanaimo (~> 0.2.3)
151
+ xcpretty (0.2.8)
152
+ rouge (~> 2.0.7)
153
+ xcpretty-travis-formatter (0.0.4)
154
+ xcpretty (~> 0.2, >= 0.0.7)
155
+
156
+ PLATFORMS
157
+ ruby
158
+
159
+ DEPENDENCIES
160
+ fastlane
161
+ fastlane-plugin-u3d!
162
+ u3d!
163
+
164
+ BUNDLED WITH
165
+ 1.15.2