guard-unity 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b0424c5d432c2737edc36c1cbb6c62dfa5aed6f0
4
+ data.tar.gz: 825d7daa8855a0316acb1fbb4db2676512e7621a
5
+ SHA512:
6
+ metadata.gz: 7577f9e58649041681e6915b7ee59513b8c6ac094837701ec0884fdcbe8726366a81cec3d7dad38d36d820ccc5d377a310c4efec2942a14186568a4bc5e5c745
7
+ data.tar.gz: 0d3116182af9e123463afc97fce893cc17334b07ecaf103ce35a1665e8c89c93bd8c98ea39a1863e02210926a85e2090ee76dfc758efefda22c427b63e2b05a6
@@ -0,0 +1,7 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ coverage
5
+ .DS_Store
6
+ .idea
7
+ *.sublime-project
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format progress
@@ -0,0 +1,8 @@
1
+ rvm:
2
+ - 1.9.3
3
+ - 2.0.0
4
+ - 2.1.0
5
+ before_script:
6
+ - 'echo ''gem: --no-ri --no-rdoc'' > ~/.gemrc'
7
+ - bundle install --path .bundle
8
+ script: COVERALLS_REPO_TOKEN=qEPkECH88Mc7N5gukyrXLoEyNxXubC4hO bundle exec rspec
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in guard-unity.gemspec
4
+ gemspec
5
+
6
+ gem 'coveralls', require: false
7
+ gem 'simplecov', require: false, group: :test
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Thomas Muntaner
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,99 @@
1
+ [![Coverage Status](https://coveralls.io/repos/rubyrainbows/guard-unity/badge.png)](https://coveralls.io/r/rubyrainbows/guard-unity)
2
+ [![Build Status](https://travis-ci.org/rubyrainbows/guard-unity.png)](https://travis-ci.org/rubyrainbows/guard-unity)
3
+
4
+ # Guard::Unity
5
+
6
+ Guard::Unity is a plugin for the ruby gem [Guard](https://github.com/guard/guard) that will run your **Unity Test Tools** tests on file changes.
7
+
8
+ **Note 1:** I have only tested this on mac so far, but it should also work on windows.
9
+
10
+ **Note 2:** I have not introduced testing for a single file on file system changes yet, but I plan to do so in the future.
11
+ ## Installation
12
+
13
+ ### Ruby
14
+
15
+ In order to run guard, you will need ruby installed on your system. I have no experience running ruby on a windows computer, but on a mac and linux, you have three choices: [RVM](http://rvm.io/), [Rbenv](https://github.com/sstephenson/rbenv) (I use rbenv myself), and [source](http://ruby-lang.org/).
16
+
17
+ **Note:** If you are using a mac, read [this article](https://github.com/guard/guard/wiki/Add-Readline-support-to-Ruby-on-Mac-OS-X) first to install readline support so that notifications work. Otherwise, you may have to reinstall ruby.
18
+
19
+ ### Gemfile
20
+ Create a file named `Gemfile` (no extension) at the root of your project and add the following lines.
21
+
22
+ ```ruby
23
+ source 'https://rubygems.org'
24
+
25
+ gem 'guard-unity'
26
+ ```
27
+
28
+ ### Notifications
29
+
30
+ If you are running mac and would like notifications, you will need readline support. See the [article on guard's wiki](https://github.com/guard/guard/wiki/Add-Readline-support-to-Ruby-on-Mac-OS-X) for more help.
31
+
32
+ You will also need a gem for displaying notifications on mac. You can read about this on the [wiki](https://github.com/guard/guard/wiki/System-notifications) as well.
33
+
34
+ If you are using Mac OS X 10.8 or above, you can add the following lines to your `Gemfile` for system notifications.
35
+
36
+ ```ruby
37
+ group :development do
38
+ gem 'terminal-notifier-guard'
39
+ end
40
+ ```
41
+
42
+ ### Bundle Install
43
+
44
+ When you added all your gems to your `Gemfile`, run `bundle install` in your terminal.
45
+
46
+ ```
47
+ $ bundle install
48
+ ```
49
+
50
+ ### Creating your Guardfile
51
+
52
+ Run the following command in your terminal.
53
+
54
+ ```
55
+ $ bundle exec guard init
56
+ ```
57
+
58
+ You will now have a file `Guardfile` in your project's root directory with similar contents to the following.
59
+
60
+ ```ruby
61
+ guard :unity do
62
+ watch(%r{^.*\.cs$})
63
+ end
64
+ ```
65
+
66
+ The watch function within the `guard :unity do`block is given a regular expression for which files to watch. The expression above will watch all `.cs` files and run the tests any time a `.cs` file is changed.
67
+
68
+ ## Configuration
69
+
70
+ Guard::Unity is configured to work with a basic Mac development environment without any changes. If you are using windows or have a different setup, you may need to make some configuration changes.
71
+
72
+ Here are the configuration options for Guard::Unity with their defaults.
73
+
74
+ ```ruby
75
+ {
76
+ test_on_start: true, # whether or not to run the tests when you start guard
77
+ project_path: Dir.pwd # the working directory for the unity project (if you supply a string, don't escape the spaces),
78
+ unity: '/Applications/Unity/Unity.app/Contents/MacOS/Unity' # the path to unity,
79
+ results_path: Dir.pwd + '/UnitTestResults.xml' # the path to the Unity Test Tools results xml file.
80
+ }
81
+ ```
82
+
83
+ You can add the configuration variables to the `Guardfile` like the following example.
84
+
85
+ ```ruby
86
+ guard :unity, test_on_start: true, project_path: '/Users/unity/Projects/MyAwesomeGame', results_path: '/Users/unity/Projects/MyAwesomeGame/UnitTestResults.xml' do
87
+ watch(%r{^.*\.cs$})
88
+ end
89
+ ```
90
+
91
+ ## Running the Tests
92
+
93
+ run `bundle exec guard` from the terminal and hope everything works.
94
+
95
+ ```
96
+ $ bundle exec guard
97
+ ```
98
+
99
+ You can press enter any time you have `[1] guard(main)>` displayed in your terminal to run the tests again.
@@ -0,0 +1,6 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,455 @@
1
+ {
2
+ "auto_complete":
3
+ {
4
+ "selected_items":
5
+ [
6
+ [
7
+ "Unit",
8
+ "UnitTestResults"
9
+ ],
10
+ [
11
+ "suce",
12
+ "success"
13
+ ],
14
+ [
15
+ "res",
16
+ "results_success"
17
+ ],
18
+ [
19
+ "di",
20
+ "display_line"
21
+ ],
22
+ [
23
+ "sub",
24
+ "subject"
25
+ ],
26
+ [
27
+ "su",
28
+ "subject"
29
+ ],
30
+ [
31
+ "test",
32
+ "test_cases"
33
+ ],
34
+ [
35
+ "add",
36
+ "add_filter"
37
+ ],
38
+ [
39
+ "req",
40
+ "require"
41
+ ],
42
+ [
43
+ "par",
44
+ "parse"
45
+ ],
46
+ [
47
+ "shoul",
48
+ "should_receive"
49
+ ],
50
+ [
51
+ "cu",
52
+ "current"
53
+ ],
54
+ [
55
+ "_g",
56
+ "_getXMLFile"
57
+ ],
58
+ [
59
+ "resu",
60
+ "results_path"
61
+ ],
62
+ [
63
+ "pro",
64
+ "project_path"
65
+ ],
66
+ [
67
+ "for",
68
+ "foreman"
69
+ ],
70
+ [
71
+ "ruby",
72
+ "ruby_rainbows"
73
+ ],
74
+ [
75
+ "group",
76
+ "group_users"
77
+ ],
78
+ [
79
+ "min",
80
+ "minY"
81
+ ],
82
+ [
83
+ "_s",
84
+ "_sprite"
85
+ ],
86
+ [
87
+ "new",
88
+ "newHitRect"
89
+ ],
90
+ [
91
+ "Han",
92
+ "Handle_scoresButtonSignalPress"
93
+ ],
94
+ [
95
+ "_sc",
96
+ "_scoresButton"
97
+ ],
98
+ [
99
+ "Hand",
100
+ "Handle_profileButtonSignalPress"
101
+ ],
102
+ [
103
+ "A",
104
+ "add"
105
+ ],
106
+ [
107
+ "_b",
108
+ "_buttons"
109
+ ],
110
+ [
111
+ "mus",
112
+ "museo_24"
113
+ ],
114
+ [
115
+ "museo_",
116
+ "museo_32"
117
+ ],
118
+ [
119
+ "half",
120
+ "halfHeight"
121
+ ],
122
+ [
123
+ "w",
124
+ "width"
125
+ ],
126
+ [
127
+ "ad",
128
+ "AddChild"
129
+ ],
130
+ [
131
+ "ha",
132
+ "halfWidth"
133
+ ],
134
+ [
135
+ "sc",
136
+ "screen"
137
+ ],
138
+ [
139
+ "an",
140
+ "anchorY"
141
+ ],
142
+ [
143
+ "addB",
144
+ "addButton"
145
+ ],
146
+ [
147
+ "but",
148
+ "button"
149
+ ],
150
+ [
151
+ "_bu",
152
+ "_buttonY"
153
+ ],
154
+ [
155
+ "Men",
156
+ "MenuButton"
157
+ ],
158
+ [
159
+ "hal",
160
+ "halfHeight"
161
+ ],
162
+ [
163
+ "Game",
164
+ "GameScreen"
165
+ ],
166
+ [
167
+ "Sc",
168
+ "Screen"
169
+ ],
170
+ [
171
+ "param",
172
+ "param_string"
173
+ ],
174
+ [
175
+ "Menu",
176
+ "MenuUI"
177
+ ],
178
+ [
179
+ "MEn",
180
+ "MenuUI"
181
+ ]
182
+ ]
183
+ },
184
+ "buffers":
185
+ [
186
+ ],
187
+ "build_system": "Packages/Unity3D Build System/Unity.sublime-build",
188
+ "command_palette":
189
+ {
190
+ "height": 107.0,
191
+ "selected_items":
192
+ [
193
+ [
194
+ "insta",
195
+ "Package Control: Install Package"
196
+ ],
197
+ [
198
+ "inst",
199
+ "Package Control: Install Package"
200
+ ],
201
+ [
202
+ "isnta",
203
+ "Package Control: Install Package"
204
+ ],
205
+ [
206
+ "rem",
207
+ "Package Control: Remove Package"
208
+ ]
209
+ ],
210
+ "width": 620.0
211
+ },
212
+ "console":
213
+ {
214
+ "height": 126.0,
215
+ "history":
216
+ [
217
+ "import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); open(os.path.join(ipp, pf), 'wb').write(urllib.request.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ','%20')).read())"
218
+ ]
219
+ },
220
+ "distraction_free":
221
+ {
222
+ "menu_visible": true,
223
+ "show_minimap": false,
224
+ "show_open_files": false,
225
+ "show_tabs": false,
226
+ "side_bar_visible": false,
227
+ "status_bar_visible": false
228
+ },
229
+ "file_history":
230
+ [
231
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/lib/guard/unity.rb",
232
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/lib/guard/unity/runner.rb",
233
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/spec/guard/unity_test_spec.rb",
234
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/lib/guard/unity/options.rb",
235
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/guard-unity.gemspec",
236
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/lib/guard/unity/file_system_helper.rb",
237
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/README.md",
238
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/.travis.yml",
239
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/lib/guard/unity/file_system.rb",
240
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/spec/spec_helper.rb",
241
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/spec/guard/unity-test/runner_spec.rb",
242
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/spec/guard/unity-test/parser_spec.rb",
243
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/spec/guard/unity-test/options_spec.rb",
244
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/spec/guard/unity-test/notifier_spec.rb",
245
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/spec/guard/unity-test/notifier/cli_spec.rb",
246
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/spec/guard/unity-test/notifier/alert_spec.rb",
247
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/lib/guard/unity/notifier/alert.rb",
248
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/lib/guard/unity/version.rb",
249
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/lib/guard/unity/notifier/cli.rb",
250
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/lib/guard/unity/templates/Guardfile",
251
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/lib/guard/unity/notifier.rb",
252
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/lib/guard/unity/parser.rb",
253
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/Gemfile",
254
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/guard-unity.sublime-project",
255
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/spec/fixtures/UnitTestResults.xml",
256
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/lib/guard/unity-test/notifier/alert.rb",
257
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/spec/guard/codeception/notifier_spec.rb",
258
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/spec/guard/codeception/notifier/cli_spec.rb",
259
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/lib/guard/unity-test/notifier/cli.rb",
260
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/spec/guard/codeception/notifier/alert_spec.rb",
261
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/lib/guard/unity-test/notifier.rb",
262
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/lib/guard/unity-test/parser.rb",
263
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/spec/guard/codeception/parser_spec.rb",
264
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/guard-codeception.gemspec",
265
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/lib/guard/unity-test/runner.rb",
266
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/spec/guard/codeception/runner_spec.rb",
267
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/Rakefile",
268
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/lib/guard/unity-test/options.rb",
269
+ "/Users/thomasmuntaner/Projects/Games/Deutsche Grammatik Trainer/UnitTestResults.xml",
270
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test/.gitignore",
271
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test-tools/lib/guard/unity-test/options.rb",
272
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test-tools/spec/guard/codeception/runner_spec.rb",
273
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test-tools/guard-codeception.gemspec",
274
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test-tools/spec/spec_helper.rb",
275
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test-tools/lib/guard/unity-test.rb",
276
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test-tools/spec/guard/unity_test_spec.rb",
277
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test-tools/lib/guard/unity-test/version.rb",
278
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test-tools/lib/guard/unity-test/runner.rb",
279
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test-tools/lib/guard/unity-test/parser.rb",
280
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test-tools/lib/guard/unity-test/notifier.rb",
281
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test-tools/spec/guard/codeception/parser_spec.rb",
282
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test-tools/spec/guard/codeception/options_spec.rb",
283
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test-tools/spec/guard/codeception/notifier_spec.rb",
284
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test-tools/LICENSE.txt",
285
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test-tools/lib/guard/unity-test/templates/Guardfile",
286
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test-tools/.travis.yml",
287
+ "/Users/thomasmuntaner/Projects/Ruby/guard-unity-test-tools/Gemfile",
288
+ "/Users/thomasmuntaner/.gitconfig",
289
+ "/Users/thomasmuntaner/.git-certs/philasearch.pem",
290
+ "/Users/thomasmuntaner/tmp/test/README.md",
291
+ "/Users/thomasmuntaner/tmp/test/README",
292
+ "/Users/thomasmuntaner/Library/Application Support/Sublime Text 3/Packages/Default/Preferences.sublime-settings",
293
+ "/Users/thomasmuntaner/tmp/test/untitled",
294
+ "/Users/thomasmuntaner/tmp/test/.gitignore",
295
+ "/Users/thomasmuntaner/tmp/test/sdfsf.#sdf",
296
+ "/Users/thomasmuntaner/tmp/test/test/sdfsf.#sdf",
297
+ "/Users/thomasmuntaner/Projects/Libraries/completion/build/Makefile",
298
+ "/Users/thomasmuntaner/Projects/Libraries/completion/Makefile"
299
+ ],
300
+ "find":
301
+ {
302
+ "height": 23.0
303
+ },
304
+ "find_in_files":
305
+ {
306
+ "height": 93.0,
307
+ "where_history":
308
+ [
309
+ ""
310
+ ]
311
+ },
312
+ "find_state":
313
+ {
314
+ "case_sensitive": false,
315
+ "find_history":
316
+ [
317
+ "codeception",
318
+ "\\t",
319
+ "/\\t/",
320
+ ";",
321
+ "SCHMIDT RAINER",
322
+ "PHILASEARCH.COM GMBH",
323
+ "compass",
324
+ "layout",
325
+ "hitRect",
326
+ "hitrect",
327
+ "DrawTexture",
328
+ "hitRect",
329
+ "rock",
330
+ "mime",
331
+ "mimetypes",
332
+ "mimety",
333
+ "handleAction",
334
+ "file",
335
+ "handleAction",
336
+ "File",
337
+ "media",
338
+ "handleAction",
339
+ "media",
340
+ "no url",
341
+ "uploaded",
342
+ "success",
343
+ "file",
344
+ "image",
345
+ "save",
346
+ "success",
347
+ "savesuccess",
348
+ "save",
349
+ "url(",
350
+ "{\n"
351
+ ],
352
+ "highlight": true,
353
+ "in_selection": false,
354
+ "preserve_case": false,
355
+ "regex": true,
356
+ "replace_history":
357
+ [
358
+ ","
359
+ ],
360
+ "reverse": false,
361
+ "show_context": true,
362
+ "use_buffer2": true,
363
+ "whole_word": false,
364
+ "wrap": true
365
+ },
366
+ "groups":
367
+ [
368
+ {
369
+ "sheets":
370
+ [
371
+ ]
372
+ }
373
+ ],
374
+ "incremental_find":
375
+ {
376
+ "height": 23.0
377
+ },
378
+ "input":
379
+ {
380
+ "height": 31.0
381
+ },
382
+ "layout":
383
+ {
384
+ "cells":
385
+ [
386
+ [
387
+ 0,
388
+ 0,
389
+ 1,
390
+ 1
391
+ ]
392
+ ],
393
+ "cols":
394
+ [
395
+ 0.0,
396
+ 1.0
397
+ ],
398
+ "rows":
399
+ [
400
+ 0.0,
401
+ 1.0
402
+ ]
403
+ },
404
+ "menu_visible": true,
405
+ "output.exec":
406
+ {
407
+ "height": 100.0
408
+ },
409
+ "output.find_results":
410
+ {
411
+ "height": 0.0
412
+ },
413
+ "project": "guard-unity-test.sublime-project",
414
+ "replace":
415
+ {
416
+ "height": 42.0
417
+ },
418
+ "save_all_on_build": true,
419
+ "select_file":
420
+ {
421
+ "height": 0.0,
422
+ "selected_items":
423
+ [
424
+ ],
425
+ "width": 0.0
426
+ },
427
+ "select_project":
428
+ {
429
+ "height": 0.0,
430
+ "selected_items":
431
+ [
432
+ ],
433
+ "width": 0.0
434
+ },
435
+ "select_symbol":
436
+ {
437
+ "height": 0.0,
438
+ "selected_items":
439
+ [
440
+ ],
441
+ "width": 0.0
442
+ },
443
+ "settings":
444
+ {
445
+ },
446
+ "show_minimap": true,
447
+ "show_open_files": false,
448
+ "show_tabs": true,
449
+ "side_bar_visible": true,
450
+ "side_bar_width": 227.0,
451
+ "status_bar_visible": true,
452
+ "template_settings":
453
+ {
454
+ }
455
+ }