smalruby-editor 0.1.8 → 0.1.9

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.

Potentially problematic release.


This version of smalruby-editor might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 032387aebf20ab1d3322fee20c1c06c0f6715988
4
- data.tar.gz: 185a9bd5170dbda9f028fd4a682d8267964ca3d3
3
+ metadata.gz: d8d5ab843f8a432e8108763ec89bd5b0520c3556
4
+ data.tar.gz: 54b2b1b9a7bb8fc2405f3a4049add162607d3438
5
5
  SHA512:
6
- metadata.gz: 730c2543f0f661896aa7933077bbfe2835629e333271cda184bd48666459e205b18c6a345caec524eb6792ea03e1101b96fb4d6e6414386fe4a58409a3d5b382
7
- data.tar.gz: 7106464d406aaf3a4417d7bdfda48419b56884e9e9c4658c7536f2faba0aff045b11f58be001f83ac3281303d8b00f728d9adc5ad357547042f803ff3e687caf
6
+ metadata.gz: 8c40aae6f0d3b0fd68026e09fb8b7221bfd95040f35da58ab355eb34c0804ba2f86d404db44d072d319298d133bf9dc6d20863b9c3a5adedc6172bb5c095e4b0
7
+ data.tar.gz: e5c67482737a76c20f56db74961861832fd12fffd9c6e515e6d2181cb4f2fe7253aec7c53d840253d26c9a696b870413a4bbab0598f486a189c8c1a0699b2984
@@ -4,6 +4,6 @@ class EditorController < ApplicationController
4
4
  end
5
5
 
6
6
  def demo
7
- @filename = (File.basename(params[:filename]) || 'default') + '.rb.xml'
7
+ @filename = (File.basename(params[:filename]) || 'car_chase') + '.rb.xml'
8
8
  end
9
9
  end
@@ -24,12 +24,12 @@ class SourceCodesController < ApplicationController
24
24
  # TODO: XMLから情報を抽出する
25
25
  res[:demoPrograms] << {
26
26
  title: '車のおいかけっこ',
27
- filename: 'default.rb',
27
+ filename: 'car_chase.rb',
28
28
  imageUrl: '/smalruby/assets/car2.png',
29
29
  }
30
30
  res[:demoPrograms] << {
31
31
  title: 'ライトをぴかっとさせるでよ',
32
- filename: 'rgb_led_anode.rb',
32
+ filename: 'hardware_led.rb',
33
33
  imageUrl: '/smalruby/assets/frog1.png',
34
34
  }
35
35
 
@@ -6,10 +6,8 @@
6
6
  data = $('<div>').html(data).text();
7
7
  Smalruby.loadXml(data);
8
8
 
9
- <% if @filename != 'default.xml' %>
10
- var filename = $('<div>').html('<%= escape_javascript(@filename.sub(/\.xml$/, '.rb')) %>').text();
9
+ var filename = $('<div>').html('<%= escape_javascript(@filename.sub(/\.rb\.xml$/, '.rb')) %>').text();
11
10
  $('#filename').val(filename)
12
- <% end %>
13
11
 
14
12
  window.changed = false;
15
13
  });
data/config/routes.rb CHANGED
@@ -3,7 +3,7 @@ SmalrubyEditor::Application.routes.draw do
3
3
  root 'editor#index'
4
4
 
5
5
  match '/demo(/:filename)' => 'editor#demo',
6
- defaults: { filename: 'default' }, via: :get
6
+ defaults: { filename: 'car_chase' }, via: :get
7
7
 
8
8
  resources :source_codes, only: [:create, :index]
9
9
  post 'source_codes/check'
File without changes
@@ -0,0 +1,76 @@
1
+ <xml xmlns="http://www.w3.org/1999/xhtml">
2
+ <character name="frog1" y="191" x="261" costumes="frog1.png" angle="0" />
3
+ <block type="hardware_init_hardware" y="6" x="40" />
4
+ <block type="character_new" y="50" x="45">
5
+ <field name="NAME">frog1</field>
6
+ <statement name="DO">
7
+ <block type="events_on_click">
8
+ <statement name="DO">
9
+ <block type="looks_say" inline="true">
10
+ <value name="TEXT">
11
+ <block type="text">
12
+ <field name="TEXT">ライトをぴかっとさせるでよ♪</field>
13
+ </block>
14
+ </value>
15
+ <next>
16
+ <block type="hardware_led_on">
17
+ <field name="PIN">D2</field>
18
+ <next>
19
+ <block type="control_sleep" inline="true">
20
+ <value name="SEC">
21
+ <block type="math_number">
22
+ <field name="NUM">1</field>
23
+ </block>
24
+ </value>
25
+ <next>
26
+ <block type="hardware_led_off">
27
+ <field name="PIN">D2</field>
28
+ <next>
29
+ <block type="control_sleep" inline="true">
30
+ <value name="SEC">
31
+ <block type="math_number">
32
+ <field name="NUM">1</field>
33
+ </block>
34
+ </value>
35
+ <next>
36
+ <block type="hardware_led_on">
37
+ <field name="PIN">D13</field>
38
+ <next>
39
+ <block type="control_sleep" inline="true">
40
+ <value name="SEC">
41
+ <block type="math_number">
42
+ <field name="NUM">1</field>
43
+ </block>
44
+ </value>
45
+ <next>
46
+ <block type="hardware_led_off">
47
+ <field name="PIN">D13</field>
48
+ <next>
49
+ <block type="looks_say" inline="true">
50
+ <value name="TEXT">
51
+ <block type="text">
52
+ <field name="TEXT" />
53
+ </block>
54
+ </value>
55
+ </block>
56
+ </next>
57
+ </block>
58
+ </next>
59
+ </block>
60
+ </next>
61
+ </block>
62
+ </next>
63
+ </block>
64
+ </next>
65
+ </block>
66
+ </next>
67
+ </block>
68
+ </next>
69
+ </block>
70
+ </next>
71
+ </block>
72
+ </statement>
73
+ </block>
74
+ </statement>
75
+ </block>
76
+ </xml>
@@ -1,3 +1,3 @@
1
1
  module SmalrubyEditor
2
- VERSION = '0.1.8'
2
+ VERSION = '0.1.9'
3
3
  end
@@ -191,7 +191,7 @@ a:focus {
191
191
  padding: 4px;
192
192
  background-color: #fff;
193
193
  border: 1px solid #ccc;
194
- border: 1px solid rgba(0, 0, 0, 0.20000000298023224); }
194
+ border: 1px solid rgba(0, 0, 0, 0.2); }
195
195
 
196
196
  .row {
197
197
  margin-left: -20px;
@@ -303,120 +303,120 @@ a:focus {
303
303
  -moz-box-sizing: border-box;
304
304
  box-sizing: border-box;
305
305
  float: left;
306
- margin-left: 2.127660036087036%;
307
- *margin-left: 2.074470043182373%; }
306
+ margin-left: 2.12766%;
307
+ *margin-left: 2.07447%; }
308
308
  .row-fluid [class*="span"]:first-child {
309
309
  margin-left: 0; }
310
310
  .row-fluid .controls-row [class*="span"] + [class*="span"] {
311
- margin-left: 2.127660036087036%; }
311
+ margin-left: 2.12766%; }
312
312
  .row-fluid .span12 {
313
313
  width: 100%;
314
- *width: 99.94680786132812%; }
314
+ *width: 99.94681%; }
315
315
  .row-fluid .span11 {
316
- width: 91.4893569946289%;
317
- *width: 91.43617248535156%; }
316
+ width: 91.48936%;
317
+ *width: 91.43617%; }
318
318
  .row-fluid .span10 {
319
- width: 82.97872161865234%;
320
- *width: 82.92552947998047%; }
319
+ width: 82.97872%;
320
+ *width: 82.92553%; }
321
321
  .row-fluid .span9 {
322
- width: 74.46808624267578%;
323
- *width: 74.41490173339844%; }
322
+ width: 74.46809%;
323
+ *width: 74.41489%; }
324
324
  .row-fluid .span8 {
325
- width: 65.95745086669922%;
326
- *width: 65.90425872802734%; }
325
+ width: 65.95745%;
326
+ *width: 65.90426%; }
327
327
  .row-fluid .span7 {
328
- width: 57.44681167602539%;
329
- *width: 57.393619537353516%; }
328
+ width: 57.44681%;
329
+ *width: 57.39362%; }
330
330
  .row-fluid .span6 {
331
- width: 48.9361686706543%;
332
- *width: 48.88298034667969%; }
331
+ width: 48.93617%;
332
+ *width: 48.88298%; }
333
333
  .row-fluid .span5 {
334
- width: 40.42552947998047%;
335
- *width: 40.37234115600586%; }
334
+ width: 40.42553%;
335
+ *width: 40.37234%; }
336
336
  .row-fluid .span4 {
337
- width: 31.914899826049805%;
338
- *width: 31.8617000579834%; }
337
+ width: 31.91489%;
338
+ *width: 31.8617%; }
339
339
  .row-fluid .span3 {
340
- width: 23.404260635375977%;
341
- *width: 23.351070404052734%; }
340
+ width: 23.40426%;
341
+ *width: 23.35106%; }
342
342
  .row-fluid .span2 {
343
- width: 14.893619537353516%;
344
- *width: 14.84043025970459%; }
343
+ width: 14.89362%;
344
+ *width: 14.84043%; }
345
345
  .row-fluid .span1 {
346
- width: 6.382979869842529%;
347
- *width: 6.329790115356445%; }
346
+ width: 6.38298%;
347
+ *width: 6.32979%; }
348
348
  .row-fluid .offset12 {
349
- margin-left: 104.25531768798828%;
350
- *margin-left: 104.14893341064453%; }
349
+ margin-left: 104.25532%;
350
+ *margin-left: 104.14894%; }
351
351
  .row-fluid .offset12:first-child {
352
- margin-left: 102.1276626586914%;
353
- *margin-left: 102.02127838134766%; }
352
+ margin-left: 102.12766%;
353
+ *margin-left: 102.02128%; }
354
354
  .row-fluid .offset11 {
355
- margin-left: 95.74468231201172%;
356
- *margin-left: 95.63829803466797%; }
355
+ margin-left: 95.74468%;
356
+ *margin-left: 95.6383%; }
357
357
  .row-fluid .offset11:first-child {
358
- margin-left: 93.61702728271484%;
359
- *margin-left: 93.5106430053711%; }
358
+ margin-left: 93.61702%;
359
+ *margin-left: 93.51064%; }
360
360
  .row-fluid .offset10 {
361
- margin-left: 87.23403930664062%;
362
- *margin-left: 87.1276626586914%; }
361
+ margin-left: 87.23404%;
362
+ *margin-left: 87.12766%; }
363
363
  .row-fluid .offset10:first-child {
364
- margin-left: 85.10637664794922%;
365
- *margin-left: 85%; }
364
+ margin-left: 85.10638%;
365
+ *margin-left: 85.0%; }
366
366
  .row-fluid .offset9 {
367
- margin-left: 78.7234115600586%;
368
- *margin-left: 78.61701965332031%; }
367
+ margin-left: 78.7234%;
368
+ *margin-left: 78.61702%; }
369
369
  .row-fluid .offset9:first-child {
370
- margin-left: 76.59574890136719%;
371
- *margin-left: 76.48937225341797%; }
370
+ margin-left: 76.59574%;
371
+ *margin-left: 76.48936%; }
372
372
  .row-fluid .offset8 {
373
- margin-left: 70.2127685546875%;
374
- *margin-left: 70.10639190673828%; }
373
+ margin-left: 70.21277%;
374
+ *margin-left: 70.10638%; }
375
375
  .row-fluid .offset8:first-child {
376
- margin-left: 68.08512115478516%;
377
- *margin-left: 67.97872924804688%; }
376
+ margin-left: 68.08511%;
377
+ *margin-left: 67.97872%; }
378
378
  .row-fluid .offset7 {
379
- margin-left: 61.70212936401367%;
380
- *margin-left: 61.595741271972656%; }
379
+ margin-left: 61.70213%;
380
+ *margin-left: 61.59574%; }
381
381
  .row-fluid .offset7:first-child {
382
- margin-left: 59.57447052001953%;
383
- *margin-left: 59.46807861328125%; }
382
+ margin-left: 59.57447%;
383
+ *margin-left: 59.46809%; }
384
384
  .row-fluid .offset6 {
385
- margin-left: 53.191490173339844%;
386
- *margin-left: 53.08510971069336%; }
385
+ margin-left: 53.19149%;
386
+ *margin-left: 53.08511%; }
387
387
  .row-fluid .offset6:first-child {
388
- margin-left: 51.0638313293457%;
389
- *margin-left: 50.95745086669922%; }
388
+ margin-left: 51.06383%;
389
+ *margin-left: 50.95745%; }
390
390
  .row-fluid .offset5 {
391
- margin-left: 44.680850982666016%;
392
- *margin-left: 44.57447052001953%; }
391
+ margin-left: 44.68085%;
392
+ *margin-left: 44.57447%; }
393
393
  .row-fluid .offset5:first-child {
394
- margin-left: 42.55318832397461%;
395
- *margin-left: 42.44681167602539%; }
394
+ margin-left: 42.55319%;
395
+ *margin-left: 42.44681%; }
396
396
  .row-fluid .offset4 {
397
- margin-left: 36.17021179199219%;
398
- *margin-left: 36.0638313293457%; }
397
+ margin-left: 36.17021%;
398
+ *margin-left: 36.06383%; }
399
399
  .row-fluid .offset4:first-child {
400
- margin-left: 34.04254913330078%;
401
- *margin-left: 33.9361686706543%; }
400
+ margin-left: 34.04255%;
401
+ *margin-left: 33.93617%; }
402
402
  .row-fluid .offset3 {
403
- margin-left: 27.65958023071289%;
404
- *margin-left: 27.553190231323242%; }
403
+ margin-left: 27.65957%;
404
+ *margin-left: 27.55319%; }
405
405
  .row-fluid .offset3:first-child {
406
- margin-left: 25.531919479370117%;
407
- *margin-left: 25.42552947998047%; }
406
+ margin-left: 25.53191%;
407
+ *margin-left: 25.42553%; }
408
408
  .row-fluid .offset2 {
409
- margin-left: 19.14893913269043%;
410
- *margin-left: 19.04254913330078%; }
409
+ margin-left: 19.14894%;
410
+ *margin-left: 19.04255%; }
411
411
  .row-fluid .offset2:first-child {
412
- margin-left: 17.02128028869629%;
413
- *margin-left: 16.91489028930664%; }
412
+ margin-left: 17.02128%;
413
+ *margin-left: 16.91489%; }
414
414
  .row-fluid .offset1 {
415
- margin-left: 10.638299942016602%;
416
- *margin-left: 10.531920433044434%; }
415
+ margin-left: 10.6383%;
416
+ *margin-left: 10.53191%; }
417
417
  .row-fluid .offset1:first-child {
418
- margin-left: 8.510640144348145%;
419
- *margin-left: 8.40425968170166%; }
418
+ margin-left: 8.51064%;
419
+ *margin-left: 8.40426%; }
420
420
 
421
421
  [class*="span"].hide,
422
422
  .row-fluid [class*="span"].hide {
@@ -546,7 +546,7 @@ h5 {
546
546
  font-size: 14px; }
547
547
 
548
548
  h6 {
549
- font-size: 11.899999618530273px; }
549
+ font-size: 11.9px; }
550
550
 
551
551
  h1 small {
552
552
  font-size: 24.5px; }
@@ -710,7 +710,7 @@ pre {
710
710
  white-space: pre-wrap;
711
711
  background-color: #f5f5f5;
712
712
  border: 1px solid #ccc;
713
- border: 1px solid rgba(0, 0, 0, 0.15000000596046448); }
713
+ border: 1px solid rgba(0, 0, 0, 0.15); }
714
714
  pre.prettyprint {
715
715
  margin-bottom: 20px; }
716
716
  pre code {
@@ -826,10 +826,10 @@ input[type="color"],
826
826
  .uneditable-input {
827
827
  background-color: white;
828
828
  border: 1px solid #cccccc;
829
- -webkit-transition: border linear 0.20000000298023224s, box-shadow linear 0.20000000298023224s;
830
- -moz-transition: border linear 0.20000000298023224s, box-shadow linear 0.20000000298023224s;
831
- -o-transition: border linear 0.20000000298023224s, box-shadow linear 0.20000000298023224s;
832
- transition: border linear 0.20000000298023224s, box-shadow linear 0.20000000298023224s; }
829
+ -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
830
+ -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
831
+ -o-transition: border linear 0.2s, box-shadow linear 0.2s;
832
+ transition: border linear 0.2s, box-shadow linear 0.2s; }
833
833
  textarea:focus,
834
834
  input[type="text"]:focus,
835
835
  input[type="password"]:focus,
@@ -846,7 +846,7 @@ input[type="color"],
846
846
  input[type="tel"]:focus,
847
847
  input[type="color"]:focus,
848
848
  .uneditable-input:focus {
849
- border-color: rgba(82, 168, 236, 0.800000011920929);
849
+ border-color: rgba(82, 168, 236, 0.8);
850
850
  outline: 0;
851
851
  outline: thin dotted \9;
852
852
  /* IE6-9 */ }
@@ -2627,7 +2627,7 @@ ul.icons {
2627
2627
  list-style: none;
2628
2628
  background-color: white;
2629
2629
  border: 1px solid #ccc;
2630
- border: 1px solid rgba(0, 0, 0, 0.20000000298023224);
2630
+ border: 1px solid rgba(0, 0, 0, 0.2);
2631
2631
  *border-right-width: 2px;
2632
2632
  *border-bottom-width: 2px;
2633
2633
  -webkit-background-clip: padding-box;
@@ -2758,7 +2758,7 @@ ul.icons {
2758
2758
  border: 1px solid #e3e3e3; }
2759
2759
  .well blockquote {
2760
2760
  border-color: #ddd;
2761
- border-color: rgba(0, 0, 0, 0.15000000596046448); }
2761
+ border-color: rgba(0, 0, 0, 0.15); }
2762
2762
 
2763
2763
  .well-large {
2764
2764
  padding: 24px; }
@@ -2768,10 +2768,10 @@ ul.icons {
2768
2768
 
2769
2769
  .fade {
2770
2770
  opacity: 0;
2771
- -webkit-transition: opacity 0.15000000596046448s linear;
2772
- -moz-transition: opacity 0.15000000596046448s linear;
2773
- -o-transition: opacity 0.15000000596046448s linear;
2774
- transition: opacity 0.15000000596046448s linear; }
2771
+ -webkit-transition: opacity 0.15s linear;
2772
+ -moz-transition: opacity 0.15s linear;
2773
+ -o-transition: opacity 0.15s linear;
2774
+ transition: opacity 0.15s linear; }
2775
2775
  .fade.in {
2776
2776
  opacity: 1; }
2777
2777
 
@@ -2779,10 +2779,10 @@ ul.icons {
2779
2779
  position: relative;
2780
2780
  height: 0;
2781
2781
  overflow: hidden;
2782
- -webkit-transition: height 0.3499999940395355s ease;
2783
- -moz-transition: height 0.3499999940395355s ease;
2784
- -o-transition: height 0.3499999940395355s ease;
2785
- transition: height 0.3499999940395355s ease; }
2782
+ -webkit-transition: height 0.35s ease;
2783
+ -moz-transition: height 0.35s ease;
2784
+ -o-transition: height 0.35s ease;
2785
+ transition: height 0.35s ease; }
2786
2786
  .collapse.in {
2787
2787
  height: auto; }
2788
2788
 
@@ -2793,13 +2793,13 @@ ul.icons {
2793
2793
  line-height: 20px;
2794
2794
  color: black;
2795
2795
  text-shadow: 0 1px 0 white;
2796
- opacity: 0.20000000298023224;
2796
+ opacity: 0.2;
2797
2797
  filter: alpha(opacity=20); }
2798
2798
  .close:hover, .close:focus {
2799
2799
  color: black;
2800
2800
  text-decoration: none;
2801
2801
  cursor: pointer;
2802
- opacity: 0.4000000059604645;
2802
+ opacity: 0.4;
2803
2803
  filter: alpha(opacity=40); }
2804
2804
 
2805
2805
  button.close {
@@ -2825,7 +2825,7 @@ button.close {
2825
2825
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
2826
2826
  background-color: whitesmoke;
2827
2827
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
2828
- border-color: rgba(0, 0, 0, 0.10000000149011612) rgba(0, 0, 0, 0.10000000149011612) rgba(0, 0, 0, 0.25);
2828
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2829
2829
  *background-color: #e6e6e6;
2830
2830
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2831
2831
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
@@ -2855,7 +2855,7 @@ button.close {
2855
2855
  .btn.disabled, .btn[disabled] {
2856
2856
  cursor: default;
2857
2857
  background-image: none;
2858
- opacity: 0.6499999761581421;
2858
+ opacity: 0.65;
2859
2859
  filter: alpha(opacity=65); }
2860
2860
 
2861
2861
  .btn-large {
@@ -2868,7 +2868,7 @@ button.close {
2868
2868
 
2869
2869
  .btn-small {
2870
2870
  padding: 2px 10px;
2871
- font-size: 11.899999618530273px; }
2871
+ font-size: 11.9px; }
2872
2872
 
2873
2873
  .btn-small [class^="icon-"],
2874
2874
  .btn-small [class*=" icon-"] {
@@ -2911,15 +2911,15 @@ input[type="button"].btn-block {
2911
2911
  color: white;
2912
2912
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2913
2913
  background-color: #006ccc;
2914
- border-color: #0044cc #0044cc #002b80;
2915
- border-color: rgba(0, 0, 0, 0.10000000149011612) rgba(0, 0, 0, 0.10000000149011612) rgba(0, 0, 0, 0.25);
2914
+ border-color: #0044cc #0044cc #002a80;
2915
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2916
2916
  *background-color: #0044cc;
2917
2917
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2918
2918
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
2919
2919
  .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
2920
2920
  color: white;
2921
2921
  background-color: #0044cc;
2922
- *background-color: #003cb3; }
2922
+ *background-color: #003bb3; }
2923
2923
  .btn-primary:active, .btn-primary.active {
2924
2924
  background-color: #003399 \9; }
2925
2925
 
@@ -2928,7 +2928,7 @@ input[type="button"].btn-block {
2928
2928
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2929
2929
  background-color: #f9a732;
2930
2930
  border-color: #f89406 #f89406 #ad6704;
2931
- border-color: rgba(0, 0, 0, 0.10000000149011612) rgba(0, 0, 0, 0.10000000149011612) rgba(0, 0, 0, 0.25);
2931
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2932
2932
  *background-color: #f89406;
2933
2933
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2934
2934
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
@@ -2944,7 +2944,7 @@ input[type="button"].btn-block {
2944
2944
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2945
2945
  background-color: #da4e49;
2946
2946
  border-color: #bd362f #bd362f #802420;
2947
- border-color: rgba(0, 0, 0, 0.10000000149011612) rgba(0, 0, 0, 0.10000000149011612) rgba(0, 0, 0, 0.25);
2947
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2948
2948
  *background-color: #bd362f;
2949
2949
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2950
2950
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
@@ -2960,7 +2960,7 @@ input[type="button"].btn-block {
2960
2960
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2961
2961
  background-color: #5bb65b;
2962
2962
  border-color: #51a351 #51a351 #387038;
2963
- border-color: rgba(0, 0, 0, 0.10000000149011612) rgba(0, 0, 0, 0.10000000149011612) rgba(0, 0, 0, 0.25);
2963
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2964
2964
  *background-color: #51a351;
2965
2965
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2966
2966
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
@@ -2976,7 +2976,7 @@ input[type="button"].btn-block {
2976
2976
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2977
2977
  background-color: #49afcd;
2978
2978
  border-color: #2f96b4 #2f96b4 #1f6377;
2979
- border-color: rgba(0, 0, 0, 0.10000000149011612) rgba(0, 0, 0, 0.10000000149011612) rgba(0, 0, 0, 0.25);
2979
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2980
2980
  *background-color: #2f96b4;
2981
2981
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2982
2982
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
@@ -2992,7 +2992,7 @@ input[type="button"].btn-block {
2992
2992
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2993
2993
  background-color: #363636;
2994
2994
  border-color: #222222 #222222 black;
2995
- border-color: rgba(0, 0, 0, 0.10000000149011612) rgba(0, 0, 0, 0.10000000149011612) rgba(0, 0, 0, 0.25);
2995
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2996
2996
  *background-color: #222222;
2997
2997
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2998
2998
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
@@ -3086,7 +3086,7 @@ input[type="submit"].btn {
3086
3086
  font-size: 10.5px; }
3087
3087
 
3088
3088
  .btn-group > .btn-small {
3089
- font-size: 11.899999618530273px; }
3089
+ font-size: 11.9px; }
3090
3090
 
3091
3091
  .btn-group > .btn-large {
3092
3092
  font-size: 17.5px; }
@@ -3128,9 +3128,9 @@ input[type="submit"].btn {
3128
3128
  .btn-group > .btn + .dropdown-toggle {
3129
3129
  padding-left: 8px;
3130
3130
  padding-right: 8px;
3131
- -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.20000000298023224), 0 1px 2px rgba(0, 0, 0, 0.05000000074505806);
3132
- -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.20000000298023224), 0 1px 2px rgba(0, 0, 0, 0.05000000074505806);
3133
- box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.20000000298023224), 0 1px 2px rgba(0, 0, 0, 0.05000000074505806);
3131
+ -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
3132
+ -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
3133
+ box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
3134
3134
  *padding-top: 5px;
3135
3135
  *padding-bottom: 5px; }
3136
3136
 
@@ -3320,7 +3320,7 @@ input[type="submit"].btn {
3320
3320
  .nav-list > .active > a:hover,
3321
3321
  .nav-list > .active > a:focus {
3322
3322
  color: white;
3323
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.20000000298023224);
3323
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
3324
3324
  background-color: #0088cc; }
3325
3325
 
3326
3326
  .nav-list [class^="icon-"],
@@ -3753,7 +3753,7 @@ input[type="submit"].btn {
3753
3753
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3754
3754
  background-color: #ededed;
3755
3755
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
3756
- border-color: rgba(0, 0, 0, 0.10000000149011612) rgba(0, 0, 0, 0.10000000149011612) rgba(0, 0, 0, 0.25);
3756
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3757
3757
  *background-color: #e6e6e6;
3758
3758
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
3759
3759
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
@@ -3779,7 +3779,7 @@ input[type="submit"].btn {
3779
3779
  border-left: 7px solid transparent;
3780
3780
  border-right: 7px solid transparent;
3781
3781
  border-bottom: 7px solid #ccc;
3782
- border-bottom-color: rgba(0, 0, 0, 0.20000000298023224);
3782
+ border-bottom-color: rgba(0, 0, 0, 0.2);
3783
3783
  position: absolute;
3784
3784
  top: -7px;
3785
3785
  left: 9px; }
@@ -3795,7 +3795,7 @@ input[type="submit"].btn {
3795
3795
 
3796
3796
  .navbar-fixed-bottom .nav > li > .dropdown-menu:before {
3797
3797
  border-top: 7px solid #ccc;
3798
- border-top-color: rgba(0, 0, 0, 0.20000000298023224);
3798
+ border-top-color: rgba(0, 0, 0, 0.2);
3799
3799
  border-bottom: 0;
3800
3800
  bottom: -7px;
3801
3801
  top: auto; }
@@ -3919,7 +3919,7 @@ input[type="submit"].btn {
3919
3919
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3920
3920
  background-color: #0e0e0e;
3921
3921
  border-color: #040404 #040404 black;
3922
- border-color: rgba(0, 0, 0, 0.10000000149011612) rgba(0, 0, 0, 0.10000000149011612) rgba(0, 0, 0, 0.25);
3922
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3923
3923
  *background-color: #040404;
3924
3924
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
3925
3925
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
@@ -4008,7 +4008,7 @@ input[type="submit"].btn {
4008
4008
  .pagination-small ul > li > a,
4009
4009
  .pagination-small ul > li > span {
4010
4010
  padding: 2px 10px;
4011
- font-size: 11.899999618530273px; }
4011
+ font-size: 11.9px; }
4012
4012
 
4013
4013
  .pagination-mini ul > li > a,
4014
4014
  .pagination-mini ul > li > span {
@@ -4071,7 +4071,7 @@ input[type="submit"].btn {
4071
4071
 
4072
4072
  .modal-backdrop,
4073
4073
  .modal-backdrop.fade.in {
4074
- opacity: 0.800000011920929;
4074
+ opacity: 0.8;
4075
4075
  filter: alpha(opacity=80); }
4076
4076
 
4077
4077
  .modal {
@@ -4083,7 +4083,7 @@ input[type="submit"].btn {
4083
4083
  margin-left: -280px;
4084
4084
  background-color: white;
4085
4085
  border: 1px solid #999;
4086
- border: 1px solid rgba(0, 0, 0, 0.30000001192092896);
4086
+ border: 1px solid rgba(0, 0, 0, 0.3);
4087
4087
  *border: 1px solid #999;
4088
4088
  /* IE6-7 */
4089
4089
  -webkit-background-clip: padding-box;
@@ -4091,10 +4091,10 @@ input[type="submit"].btn {
4091
4091
  background-clip: padding-box;
4092
4092
  outline: none; }
4093
4093
  .modal.fade {
4094
- -webkit-transition: opacity 0.30000001192092896s linear, top 0.30000001192092896s ease-out;
4095
- -moz-transition: opacity 0.30000001192092896s linear, top 0.30000001192092896s ease-out;
4096
- -o-transition: opacity 0.30000001192092896s linear, top 0.30000001192092896s ease-out;
4097
- transition: opacity 0.30000001192092896s linear, top 0.30000001192092896s ease-out;
4094
+ -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
4095
+ -moz-transition: opacity 0.3s linear, top 0.3s ease-out;
4096
+ -o-transition: opacity 0.3s linear, top 0.3s ease-out;
4097
+ transition: opacity 0.3s linear, top 0.3s ease-out;
4098
4098
  top: -25%; }
4099
4099
  .modal.fade.in {
4100
4100
  top: 10%; }
@@ -4148,7 +4148,7 @@ input[type="submit"].btn {
4148
4148
  opacity: 0;
4149
4149
  filter: alpha(opacity=0); }
4150
4150
  .tooltip.in {
4151
- opacity: 0.800000011920929;
4151
+ opacity: 0.8;
4152
4152
  filter: alpha(opacity=80); }
4153
4153
  .tooltip.top {
4154
4154
  margin-top: -3px;
@@ -4217,7 +4217,7 @@ input[type="submit"].btn {
4217
4217
  -moz-background-clip: padding;
4218
4218
  background-clip: padding-box;
4219
4219
  border: 1px solid #ccc;
4220
- border: 1px solid rgba(0, 0, 0, 0.20000000298023224);
4220
+ border: 1px solid rgba(0, 0, 0, 0.2);
4221
4221
  white-space: normal; }
4222
4222
  .popover.top {
4223
4223
  margin-top: -10px; }
@@ -4331,10 +4331,10 @@ input[type="submit"].btn {
4331
4331
  padding: 4px;
4332
4332
  line-height: 20px;
4333
4333
  border: 1px solid #ddd;
4334
- -webkit-transition: all 0.20000000298023224s ease-in-out;
4335
- -moz-transition: all 0.20000000298023224s ease-in-out;
4336
- -o-transition: all 0.20000000298023224s ease-in-out;
4337
- transition: all 0.20000000298023224s ease-in-out; }
4334
+ -webkit-transition: all 0.2s ease-in-out;
4335
+ -moz-transition: all 0.2s ease-in-out;
4336
+ -o-transition: all 0.2s ease-in-out;
4337
+ transition: all 0.2s ease-in-out; }
4338
4338
 
4339
4339
  a.thumbnail:hover,
4340
4340
  a.thumbnail:focus {
@@ -4383,7 +4383,7 @@ a.thumbnail:focus {
4383
4383
  .badge {
4384
4384
  display: inline-block;
4385
4385
  padding: 2px 4px;
4386
- font-size: 11.843999862670898px;
4386
+ font-size: 11.844px;
4387
4387
  font-weight: bold;
4388
4388
  line-height: 14px;
4389
4389
  color: white;
@@ -4527,10 +4527,10 @@ a.label:hover, a.label:focus, a.badge:hover, a.badge:focus {
4527
4527
  -webkit-box-sizing: border-box;
4528
4528
  -moz-box-sizing: border-box;
4529
4529
  box-sizing: border-box;
4530
- -webkit-transition: width 0.6000000238418579s ease;
4531
- -moz-transition: width 0.6000000238418579s ease;
4532
- -o-transition: width 0.6000000238418579s ease;
4533
- transition: width 0.6000000238418579s ease; }
4530
+ -webkit-transition: width 0.6s ease;
4531
+ -moz-transition: width 0.6s ease;
4532
+ -o-transition: width 0.6s ease;
4533
+ transition: width 0.6s ease; }
4534
4534
 
4535
4535
  .progress-striped .bar {
4536
4536
  background-color: #149bdf;
@@ -4604,10 +4604,10 @@ a.label:hover, a.label:focus, a.badge:hover, a.badge:focus {
4604
4604
  .carousel-inner > .item {
4605
4605
  display: none;
4606
4606
  position: relative;
4607
- -webkit-transition: 0.6000000238418579s ease-in-out left;
4608
- -moz-transition: 0.6000000238418579s ease-in-out left;
4609
- -o-transition: 0.6000000238418579s ease-in-out left;
4610
- transition: 0.6000000238418579s ease-in-out left; }
4607
+ -webkit-transition: 0.6s ease-in-out left;
4608
+ -moz-transition: 0.6s ease-in-out left;
4609
+ -o-transition: 0.6s ease-in-out left;
4610
+ transition: 0.6s ease-in-out left; }
4611
4611
  .carousel-inner > .item > img,
4612
4612
  .carousel-inner > .item > a > img {
4613
4613
  display: block;
@@ -4657,7 +4657,7 @@ a.label:hover, a.label:focus, a.badge:hover, a.badge:focus {
4657
4657
  .carousel-control:hover, .carousel-control:focus {
4658
4658
  color: white;
4659
4659
  text-decoration: none;
4660
- opacity: 0.8999999761581421;
4660
+ opacity: 0.9;
4661
4661
  filter: alpha(opacity=90); }
4662
4662
 
4663
4663
  .carousel-indicators {
@@ -5085,11 +5085,11 @@ html, body {
5085
5085
  #\:9 .blocklyTreeRow {
5086
5086
  padding-top: 0.25em;
5087
5087
  padding-bottom: 0.25em;
5088
- border-left: 0.75em solid #0089cc; }
5088
+ border-left: 0.75em solid #0088cc; }
5089
5089
  #\:9 .blocklyTreeRow.blocklyTreeSelected {
5090
5090
  color: white;
5091
5091
  font-weight: bold;
5092
- background-color: #00abff !important; }
5092
+ background-color: #00aaff !important; }
5093
5093
 
5094
5094
  #\:a .blocklyTreeRow {
5095
5095
  padding-top: 0.25em;
@@ -5121,11 +5121,11 @@ html, body {
5121
5121
  #\:d .blocklyTreeRow {
5122
5122
  padding-top: 0.25em;
5123
5123
  padding-bottom: 0.25em;
5124
- border-left: 0.75em solid #cc0045; }
5124
+ border-left: 0.75em solid #cc0044; }
5125
5125
  #\:d .blocklyTreeRow.blocklyTreeSelected {
5126
5126
  color: white;
5127
5127
  font-weight: bold;
5128
- background-color: #ff0056 !important; }
5128
+ background-color: #ff0055 !important; }
5129
5129
 
5130
5130
  #\:e .blocklyTreeRow {
5131
5131
  padding-top: 0.25em;
@@ -1 +1 @@
1
- {"files":{"default-5d1886100d7c8961e9962bbc4bb0c714.xml":{"logical_path":"default.xml","mtime":"2014-02-14T01:28:48+09:00","size":5017,"digest":"5d1886100d7c8961e9962bbc4bb0c714"},"rgb_led_anode-91225bef2a8b97f1cefee862a0619b91.xml":{"logical_path":"rgb_led_anode.xml","mtime":"2014-02-11T14:17:03+09:00","size":3805,"digest":"91225bef2a8b97f1cefee862a0619b91"},"favicon-a37c90b368fd8ed436cb8f9e9396465c.ico":{"logical_path":"favicon.ico","mtime":"2014-01-21T03:18:02+09:00","size":5430,"digest":"a37c90b368fd8ed436cb8f9e9396465c"},"application-735e172a0df828da16d22f5d3c26671f.js":{"logical_path":"application.js","mtime":"2014-02-19T18:22:09+09:00","size":1440213,"digest":"735e172a0df828da16d22f5d3c26671f"},"application-64a390efe879c386a5950515064f062d.css":{"logical_path":"application.css","mtime":"2014-02-19T14:32:55+09:00","size":119186,"digest":"64a390efe879c386a5950515064f062d"},"jquery-ui/animated-overlay-c48c87b7a95316f4698484e3b85ee4aa.gif":{"logical_path":"jquery-ui/animated-overlay.gif","mtime":"2014-02-04T09:35:48+09:00","size":1738,"digest":"c48c87b7a95316f4698484e3b85ee4aa"},"jquery-ui/ui-bg_flat_0_aaaaaa_40x100-58b63faadd031ca3db096dfdffd90224.png":{"logical_path":"jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png","mtime":"2014-02-04T09:35:48+09:00","size":180,"digest":"58b63faadd031ca3db096dfdffd90224"},"jquery-ui/ui-bg_flat_75_ffffff_40x100-937399e8b369d64aa075d13a82c00112.png":{"logical_path":"jquery-ui/ui-bg_flat_75_ffffff_40x100.png","mtime":"2014-02-04T09:35:48+09:00","size":178,"digest":"937399e8b369d64aa075d13a82c00112"},"jquery-ui/ui-bg_glass_55_fbf9ee_1x400-a8c503e0f42a081a92a473b0d30ac6cf.png":{"logical_path":"jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png","mtime":"2014-02-04T09:35:48+09:00","size":120,"digest":"a8c503e0f42a081a92a473b0d30ac6cf"},"jquery-ui/ui-bg_glass_65_ffffff_1x400-ddcbfe385abc3947937caa0b44e2f5d2.png":{"logical_path":"jquery-ui/ui-bg_glass_65_ffffff_1x400.png","mtime":"2014-02-04T09:35:48+09:00","size":105,"digest":"ddcbfe385abc3947937caa0b44e2f5d2"},"jquery-ui/ui-bg_glass_75_dadada_1x400-14dd4a9ad1f21d8c4c7e673ddfb0806f.png":{"logical_path":"jquery-ui/ui-bg_glass_75_dadada_1x400.png","mtime":"2014-02-04T09:35:48+09:00","size":111,"digest":"14dd4a9ad1f21d8c4c7e673ddfb0806f"},"jquery-ui/ui-bg_glass_75_e6e6e6_1x400-a43dfabb23b0a987b567b282bad68346.png":{"logical_path":"jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png","mtime":"2014-02-04T09:35:48+09:00","size":110,"digest":"a43dfabb23b0a987b567b282bad68346"},"jquery-ui/ui-bg_glass_95_fef1ec_1x400-31c0c791a756266043ee8ea61dacb36a.png":{"logical_path":"jquery-ui/ui-bg_glass_95_fef1ec_1x400.png","mtime":"2014-02-04T09:35:48+09:00","size":119,"digest":"31c0c791a756266043ee8ea61dacb36a"},"jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100-33edbdb0d2fcebd2a65c2041a28533da.png":{"logical_path":"jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png","mtime":"2014-02-04T09:35:48+09:00","size":101,"digest":"33edbdb0d2fcebd2a65c2041a28533da"},"jquery-ui/ui-icons_222222_256x240-890385424135de1513f00cbecfb7f990.png":{"logical_path":"jquery-ui/ui-icons_222222_256x240.png","mtime":"2014-02-04T09:35:48+09:00","size":4369,"digest":"890385424135de1513f00cbecfb7f990"},"jquery-ui/ui-icons_2e83ff_256x240-824705ca4aa2610434a358fe4018c9c6.png":{"logical_path":"jquery-ui/ui-icons_2e83ff_256x240.png","mtime":"2014-02-04T09:35:48+09:00","size":4369,"digest":"824705ca4aa2610434a358fe4018c9c6"},"jquery-ui/ui-icons_454545_256x240-254e054f6df453dfac49efbc8b78f79d.png":{"logical_path":"jquery-ui/ui-icons_454545_256x240.png","mtime":"2014-02-04T09:35:48+09:00","size":4369,"digest":"254e054f6df453dfac49efbc8b78f79d"},"jquery-ui/ui-icons_888888_256x240-57c441f87c4289a5372823f506c1182d.png":{"logical_path":"jquery-ui/ui-icons_888888_256x240.png","mtime":"2014-02-04T09:35:48+09:00","size":4369,"digest":"57c441f87c4289a5372823f506c1182d"},"jquery-ui/ui-icons_cd0a0a_256x240-261647ac915575f3981ded254ae8d43e.png":{"logical_path":"jquery-ui/ui-icons_cd0a0a_256x240.png","mtime":"2014-02-04T09:35:48+09:00","size":4369,"digest":"261647ac915575f3981ded254ae8d43e"},"loading-e8e6dd7833131c92a6c3b9c8ccc6a6ac.gif":{"logical_path":"loading.gif","mtime":"2014-01-03T14:44:55+09:00","size":3897,"digest":"e8e6dd7833131c92a6c3b9c8ccc6a6ac"},"progressbar-82023a146fba2a0f6d925629ed2b09c5.gif":{"logical_path":"progressbar.gif","mtime":"2014-01-03T14:44:55+09:00","size":3323,"digest":"82023a146fba2a0f6d925629ed2b09c5"},"application-0047adbc0fb7a529ef7a41b5e0e7d097.js":{"logical_path":"application.js","mtime":"2014-02-20T03:12:12+09:00","size":1441568,"digest":"0047adbc0fb7a529ef7a41b5e0e7d097"},"application-42aa660a3233c7738b7578d30ba040b3.js":{"logical_path":"application.js","mtime":"2014-02-22T15:25:11+09:00","size":1441708,"digest":"42aa660a3233c7738b7578d30ba040b3"},"application-66b65154e7b5dcfe67fa164db6fc5f51.js":{"logical_path":"application.js","mtime":"2014-02-23T21:53:43+09:00","size":1441898,"digest":"66b65154e7b5dcfe67fa164db6fc5f51"},"application-8bfffad1222d4e198f3c7ccc1cbd774f.js":{"logical_path":"application.js","mtime":"2014-02-27T01:28:32+09:00","size":1442504,"digest":"8bfffad1222d4e198f3c7ccc1cbd774f"},"application-4f747690ebc8ec4815ae36021fdb2c44.js":{"logical_path":"application.js","mtime":"2014-03-07T12:36:30+09:00","size":1447094,"digest":"4f747690ebc8ec4815ae36021fdb2c44"},"application-28b7bed56c5389dfa372e972c75b6676.css":{"logical_path":"application.css","mtime":"2014-03-07T10:27:39+09:00","size":119378,"digest":"28b7bed56c5389dfa372e972c75b6676"},"application-3ee566927dc437f1406e5e903da1baf5.js":{"logical_path":"application.js","mtime":"2014-03-29T11:33:25+09:00","size":1452218,"digest":"3ee566927dc437f1406e5e903da1baf5"},"application-5f1777e683ca5d3cf4e0f0374eab6fac.css":{"logical_path":"application.css","mtime":"2014-03-29T10:25:16+09:00","size":120345,"digest":"5f1777e683ca5d3cf4e0f0374eab6fac"}},"assets":{"default.xml":"default-5d1886100d7c8961e9962bbc4bb0c714.xml","rgb_led_anode.xml":"rgb_led_anode-91225bef2a8b97f1cefee862a0619b91.xml","favicon.ico":"favicon-a37c90b368fd8ed436cb8f9e9396465c.ico","application.js":"application-3ee566927dc437f1406e5e903da1baf5.js","application.css":"application-5f1777e683ca5d3cf4e0f0374eab6fac.css","jquery-ui/animated-overlay.gif":"jquery-ui/animated-overlay-c48c87b7a95316f4698484e3b85ee4aa.gif","jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png":"jquery-ui/ui-bg_flat_0_aaaaaa_40x100-58b63faadd031ca3db096dfdffd90224.png","jquery-ui/ui-bg_flat_75_ffffff_40x100.png":"jquery-ui/ui-bg_flat_75_ffffff_40x100-937399e8b369d64aa075d13a82c00112.png","jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png":"jquery-ui/ui-bg_glass_55_fbf9ee_1x400-a8c503e0f42a081a92a473b0d30ac6cf.png","jquery-ui/ui-bg_glass_65_ffffff_1x400.png":"jquery-ui/ui-bg_glass_65_ffffff_1x400-ddcbfe385abc3947937caa0b44e2f5d2.png","jquery-ui/ui-bg_glass_75_dadada_1x400.png":"jquery-ui/ui-bg_glass_75_dadada_1x400-14dd4a9ad1f21d8c4c7e673ddfb0806f.png","jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png":"jquery-ui/ui-bg_glass_75_e6e6e6_1x400-a43dfabb23b0a987b567b282bad68346.png","jquery-ui/ui-bg_glass_95_fef1ec_1x400.png":"jquery-ui/ui-bg_glass_95_fef1ec_1x400-31c0c791a756266043ee8ea61dacb36a.png","jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png":"jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100-33edbdb0d2fcebd2a65c2041a28533da.png","jquery-ui/ui-icons_222222_256x240.png":"jquery-ui/ui-icons_222222_256x240-890385424135de1513f00cbecfb7f990.png","jquery-ui/ui-icons_2e83ff_256x240.png":"jquery-ui/ui-icons_2e83ff_256x240-824705ca4aa2610434a358fe4018c9c6.png","jquery-ui/ui-icons_454545_256x240.png":"jquery-ui/ui-icons_454545_256x240-254e054f6df453dfac49efbc8b78f79d.png","jquery-ui/ui-icons_888888_256x240.png":"jquery-ui/ui-icons_888888_256x240-57c441f87c4289a5372823f506c1182d.png","jquery-ui/ui-icons_cd0a0a_256x240.png":"jquery-ui/ui-icons_cd0a0a_256x240-261647ac915575f3981ded254ae8d43e.png","loading.gif":"loading-e8e6dd7833131c92a6c3b9c8ccc6a6ac.gif","progressbar.gif":"progressbar-82023a146fba2a0f6d925629ed2b09c5.gif"}}
1
+ {"files":{"default-5d1886100d7c8961e9962bbc4bb0c714.xml":{"logical_path":"default.xml","mtime":"2014-02-14T01:28:48+09:00","size":5017,"digest":"5d1886100d7c8961e9962bbc4bb0c714"},"rgb_led_anode-91225bef2a8b97f1cefee862a0619b91.xml":{"logical_path":"rgb_led_anode.xml","mtime":"2014-02-11T14:17:03+09:00","size":3805,"digest":"91225bef2a8b97f1cefee862a0619b91"},"favicon-a37c90b368fd8ed436cb8f9e9396465c.ico":{"logical_path":"favicon.ico","mtime":"2014-01-21T03:18:02+09:00","size":5430,"digest":"a37c90b368fd8ed436cb8f9e9396465c"},"application-735e172a0df828da16d22f5d3c26671f.js":{"logical_path":"application.js","mtime":"2014-02-19T18:22:09+09:00","size":1440213,"digest":"735e172a0df828da16d22f5d3c26671f"},"application-64a390efe879c386a5950515064f062d.css":{"logical_path":"application.css","mtime":"2014-02-19T14:32:55+09:00","size":119186,"digest":"64a390efe879c386a5950515064f062d"},"jquery-ui/animated-overlay-c48c87b7a95316f4698484e3b85ee4aa.gif":{"logical_path":"jquery-ui/animated-overlay.gif","mtime":"2014-02-04T09:35:48+09:00","size":1738,"digest":"c48c87b7a95316f4698484e3b85ee4aa"},"jquery-ui/ui-bg_flat_0_aaaaaa_40x100-58b63faadd031ca3db096dfdffd90224.png":{"logical_path":"jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png","mtime":"2014-02-04T09:35:48+09:00","size":180,"digest":"58b63faadd031ca3db096dfdffd90224"},"jquery-ui/ui-bg_flat_75_ffffff_40x100-937399e8b369d64aa075d13a82c00112.png":{"logical_path":"jquery-ui/ui-bg_flat_75_ffffff_40x100.png","mtime":"2014-02-04T09:35:48+09:00","size":178,"digest":"937399e8b369d64aa075d13a82c00112"},"jquery-ui/ui-bg_glass_55_fbf9ee_1x400-a8c503e0f42a081a92a473b0d30ac6cf.png":{"logical_path":"jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png","mtime":"2014-02-04T09:35:48+09:00","size":120,"digest":"a8c503e0f42a081a92a473b0d30ac6cf"},"jquery-ui/ui-bg_glass_65_ffffff_1x400-ddcbfe385abc3947937caa0b44e2f5d2.png":{"logical_path":"jquery-ui/ui-bg_glass_65_ffffff_1x400.png","mtime":"2014-02-04T09:35:48+09:00","size":105,"digest":"ddcbfe385abc3947937caa0b44e2f5d2"},"jquery-ui/ui-bg_glass_75_dadada_1x400-14dd4a9ad1f21d8c4c7e673ddfb0806f.png":{"logical_path":"jquery-ui/ui-bg_glass_75_dadada_1x400.png","mtime":"2014-02-04T09:35:48+09:00","size":111,"digest":"14dd4a9ad1f21d8c4c7e673ddfb0806f"},"jquery-ui/ui-bg_glass_75_e6e6e6_1x400-a43dfabb23b0a987b567b282bad68346.png":{"logical_path":"jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png","mtime":"2014-02-04T09:35:48+09:00","size":110,"digest":"a43dfabb23b0a987b567b282bad68346"},"jquery-ui/ui-bg_glass_95_fef1ec_1x400-31c0c791a756266043ee8ea61dacb36a.png":{"logical_path":"jquery-ui/ui-bg_glass_95_fef1ec_1x400.png","mtime":"2014-02-04T09:35:48+09:00","size":119,"digest":"31c0c791a756266043ee8ea61dacb36a"},"jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100-33edbdb0d2fcebd2a65c2041a28533da.png":{"logical_path":"jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png","mtime":"2014-02-04T09:35:48+09:00","size":101,"digest":"33edbdb0d2fcebd2a65c2041a28533da"},"jquery-ui/ui-icons_222222_256x240-890385424135de1513f00cbecfb7f990.png":{"logical_path":"jquery-ui/ui-icons_222222_256x240.png","mtime":"2014-02-04T09:35:48+09:00","size":4369,"digest":"890385424135de1513f00cbecfb7f990"},"jquery-ui/ui-icons_2e83ff_256x240-824705ca4aa2610434a358fe4018c9c6.png":{"logical_path":"jquery-ui/ui-icons_2e83ff_256x240.png","mtime":"2014-02-04T09:35:48+09:00","size":4369,"digest":"824705ca4aa2610434a358fe4018c9c6"},"jquery-ui/ui-icons_454545_256x240-254e054f6df453dfac49efbc8b78f79d.png":{"logical_path":"jquery-ui/ui-icons_454545_256x240.png","mtime":"2014-02-04T09:35:48+09:00","size":4369,"digest":"254e054f6df453dfac49efbc8b78f79d"},"jquery-ui/ui-icons_888888_256x240-57c441f87c4289a5372823f506c1182d.png":{"logical_path":"jquery-ui/ui-icons_888888_256x240.png","mtime":"2014-02-04T09:35:48+09:00","size":4369,"digest":"57c441f87c4289a5372823f506c1182d"},"jquery-ui/ui-icons_cd0a0a_256x240-261647ac915575f3981ded254ae8d43e.png":{"logical_path":"jquery-ui/ui-icons_cd0a0a_256x240.png","mtime":"2014-02-04T09:35:48+09:00","size":4369,"digest":"261647ac915575f3981ded254ae8d43e"},"loading-e8e6dd7833131c92a6c3b9c8ccc6a6ac.gif":{"logical_path":"loading.gif","mtime":"2014-01-03T14:44:55+09:00","size":3897,"digest":"e8e6dd7833131c92a6c3b9c8ccc6a6ac"},"progressbar-82023a146fba2a0f6d925629ed2b09c5.gif":{"logical_path":"progressbar.gif","mtime":"2014-01-03T14:44:55+09:00","size":3323,"digest":"82023a146fba2a0f6d925629ed2b09c5"},"application-0047adbc0fb7a529ef7a41b5e0e7d097.js":{"logical_path":"application.js","mtime":"2014-02-20T03:12:12+09:00","size":1441568,"digest":"0047adbc0fb7a529ef7a41b5e0e7d097"},"application-42aa660a3233c7738b7578d30ba040b3.js":{"logical_path":"application.js","mtime":"2014-02-22T15:25:11+09:00","size":1441708,"digest":"42aa660a3233c7738b7578d30ba040b3"},"application-66b65154e7b5dcfe67fa164db6fc5f51.js":{"logical_path":"application.js","mtime":"2014-02-23T21:53:43+09:00","size":1441898,"digest":"66b65154e7b5dcfe67fa164db6fc5f51"},"application-8bfffad1222d4e198f3c7ccc1cbd774f.js":{"logical_path":"application.js","mtime":"2014-02-27T01:28:32+09:00","size":1442504,"digest":"8bfffad1222d4e198f3c7ccc1cbd774f"},"application-4f747690ebc8ec4815ae36021fdb2c44.js":{"logical_path":"application.js","mtime":"2014-03-07T12:36:30+09:00","size":1447094,"digest":"4f747690ebc8ec4815ae36021fdb2c44"},"application-28b7bed56c5389dfa372e972c75b6676.css":{"logical_path":"application.css","mtime":"2014-03-07T10:27:39+09:00","size":119378,"digest":"28b7bed56c5389dfa372e972c75b6676"},"application-3ee566927dc437f1406e5e903da1baf5.js":{"logical_path":"application.js","mtime":"2014-04-30T00:15:32+09:00","size":1452218,"digest":"3ee566927dc437f1406e5e903da1baf5"},"application-5f1777e683ca5d3cf4e0f0374eab6fac.css":{"logical_path":"application.css","mtime":"2014-03-29T10:25:16+09:00","size":120345,"digest":"5f1777e683ca5d3cf4e0f0374eab6fac"},"application-53d651da3309caa498cc0ca6616dbead.css":{"logical_path":"application.css","mtime":"2014-04-30T00:23:14+09:00","size":118430,"digest":"53d651da3309caa498cc0ca6616dbead"}},"assets":{"default.xml":"default-5d1886100d7c8961e9962bbc4bb0c714.xml","rgb_led_anode.xml":"rgb_led_anode-91225bef2a8b97f1cefee862a0619b91.xml","favicon.ico":"favicon-a37c90b368fd8ed436cb8f9e9396465c.ico","application.js":"application-3ee566927dc437f1406e5e903da1baf5.js","application.css":"application-53d651da3309caa498cc0ca6616dbead.css","jquery-ui/animated-overlay.gif":"jquery-ui/animated-overlay-c48c87b7a95316f4698484e3b85ee4aa.gif","jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png":"jquery-ui/ui-bg_flat_0_aaaaaa_40x100-58b63faadd031ca3db096dfdffd90224.png","jquery-ui/ui-bg_flat_75_ffffff_40x100.png":"jquery-ui/ui-bg_flat_75_ffffff_40x100-937399e8b369d64aa075d13a82c00112.png","jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png":"jquery-ui/ui-bg_glass_55_fbf9ee_1x400-a8c503e0f42a081a92a473b0d30ac6cf.png","jquery-ui/ui-bg_glass_65_ffffff_1x400.png":"jquery-ui/ui-bg_glass_65_ffffff_1x400-ddcbfe385abc3947937caa0b44e2f5d2.png","jquery-ui/ui-bg_glass_75_dadada_1x400.png":"jquery-ui/ui-bg_glass_75_dadada_1x400-14dd4a9ad1f21d8c4c7e673ddfb0806f.png","jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png":"jquery-ui/ui-bg_glass_75_e6e6e6_1x400-a43dfabb23b0a987b567b282bad68346.png","jquery-ui/ui-bg_glass_95_fef1ec_1x400.png":"jquery-ui/ui-bg_glass_95_fef1ec_1x400-31c0c791a756266043ee8ea61dacb36a.png","jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png":"jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100-33edbdb0d2fcebd2a65c2041a28533da.png","jquery-ui/ui-icons_222222_256x240.png":"jquery-ui/ui-icons_222222_256x240-890385424135de1513f00cbecfb7f990.png","jquery-ui/ui-icons_2e83ff_256x240.png":"jquery-ui/ui-icons_2e83ff_256x240-824705ca4aa2610434a358fe4018c9c6.png","jquery-ui/ui-icons_454545_256x240.png":"jquery-ui/ui-icons_454545_256x240-254e054f6df453dfac49efbc8b78f79d.png","jquery-ui/ui-icons_888888_256x240.png":"jquery-ui/ui-icons_888888_256x240-57c441f87c4289a5372823f506c1182d.png","jquery-ui/ui-icons_cd0a0a_256x240.png":"jquery-ui/ui-icons_cd0a0a_256x240-261647ac915575f3981ded254ae8d43e.png","loading.gif":"loading-e8e6dd7833131c92a6c3b9c8ccc6a6ac.gif","progressbar.gif":"progressbar-82023a146fba2a0f6d925629ed2b09c5.gif"}}
@@ -68,7 +68,7 @@ Gem::Specification.new do |spec|
68
68
  ['launchy'],
69
69
  ['mime-types', '~> 1.16'],
70
70
  ['haml-rails'],
71
- ['smalruby', '~> 0.0.15'],
71
+ ['smalruby', '~> 0.0.16'],
72
72
  ]
73
73
  runtime_dependencies << ['therubyracer'] unless is_windows
74
74
  runtime_dependencies.each do |args|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smalruby-editor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouji Takao
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-04 00:00:00.000000000 Z
11
+ date: 2014-04-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -184,14 +184,14 @@ dependencies:
184
184
  requirements:
185
185
  - - ~>
186
186
  - !ruby/object:Gem::Version
187
- version: 0.0.15
187
+ version: 0.0.16
188
188
  type: :runtime
189
189
  prerelease: false
190
190
  version_requirements: !ruby/object:Gem::Requirement
191
191
  requirements:
192
192
  - - ~>
193
193
  - !ruby/object:Gem::Version
194
- version: 0.0.15
194
+ version: 0.0.16
195
195
  - !ruby/object:Gem::Dependency
196
196
  name: therubyracer
197
197
  requirement: !ruby/object:Gem::Requirement
@@ -403,7 +403,8 @@ files:
403
403
  - db/migrate/20131219045113_add_filename_to_source_code.rb
404
404
  - db/schema.rb
405
405
  - db/seeds.rb
406
- - demos/default.rb.xml
406
+ - demos/car_chase.rb.xml
407
+ - demos/hardware_led.rb.xml
407
408
  - demos/rgb_led_anode.rb.xml
408
409
  - lib/assets/.keep
409
410
  - lib/smalruby_editor.rb
@@ -588,8 +589,8 @@ files:
588
589
  - vendor/assets/stylesheets/.keep
589
590
  - public/assets/application-3ee566927dc437f1406e5e903da1baf5.js
590
591
  - public/assets/application-3ee566927dc437f1406e5e903da1baf5.js.gz
591
- - public/assets/application-5f1777e683ca5d3cf4e0f0374eab6fac.css
592
- - public/assets/application-5f1777e683ca5d3cf4e0f0374eab6fac.css.gz
592
+ - public/assets/application-53d651da3309caa498cc0ca6616dbead.css
593
+ - public/assets/application-53d651da3309caa498cc0ca6616dbead.css.gz
593
594
  - public/assets/favicon-a37c90b368fd8ed436cb8f9e9396465c.ico
594
595
  - public/assets/jquery-ui/animated-overlay-c48c87b7a95316f4698484e3b85ee4aa.gif
595
596
  - public/assets/jquery-ui/ui-bg_flat_0_aaaaaa_40x100-58b63faadd031ca3db096dfdffd90224.png