neo_rad 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (146) hide show
  1. checksums.yaml +7 -0
  2. data/History.txt +112 -0
  3. data/License.txt +282 -0
  4. data/Manifest.txt +144 -0
  5. data/README.rdoc +1 -0
  6. data/Rakefile +142 -0
  7. data/bin/rad +302 -0
  8. data/lib/examples/add_hysteresis.rb +13 -0
  9. data/lib/examples/basic_blink.rb +10 -0
  10. data/lib/examples/blink_m_address_assignment.rb +104 -0
  11. data/lib/examples/blink_m_hello.rb +14 -0
  12. data/lib/examples/blink_m_multi.rb +61 -0
  13. data/lib/examples/blink_with_serial.rb +16 -0
  14. data/lib/examples/configure_pa_lcd_boot.rb +91 -0
  15. data/lib/examples/debounce_methods.rb +49 -0
  16. data/lib/examples/external_variable_fu.rb +26 -0
  17. data/lib/examples/external_variables.rb +32 -0
  18. data/lib/examples/first_sound.rb +23 -0
  19. data/lib/examples/frequency_generator.rb +30 -0
  20. data/lib/examples/hello_array.rb +48 -0
  21. data/lib/examples/hello_array2.rb +112 -0
  22. data/lib/examples/hello_array_eeprom.rb +59 -0
  23. data/lib/examples/hello_clock.rb +84 -0
  24. data/lib/examples/hello_eeprom.rb +51 -0
  25. data/lib/examples/hello_eeprom_lcdpa.rb +81 -0
  26. data/lib/examples/hello_format_print.rb +94 -0
  27. data/lib/examples/hello_lcd_charset.rb +75 -0
  28. data/lib/examples/hello_pa_lcd.rb +59 -0
  29. data/lib/examples/hello_servos.rb +88 -0
  30. data/lib/examples/hello_spectra_sound.rb +38 -0
  31. data/lib/examples/hello_world.rb +11 -0
  32. data/lib/examples/hello_xbee.rb +12 -0
  33. data/lib/examples/hysteresis_duel.rb +39 -0
  34. data/lib/examples/i2c_with_clock_chip.rb +124 -0
  35. data/lib/examples/midi_beat_box.rb +86 -0
  36. data/lib/examples/midi_scales.rb +94 -0
  37. data/lib/examples/motor_knob.rb +30 -0
  38. data/lib/examples/servo_buttons.rb +23 -0
  39. data/lib/examples/servo_calibrate_continuous.rb +92 -0
  40. data/lib/examples/servo_throttle.rb +40 -0
  41. data/lib/examples/software_serial.rb +10 -0
  42. data/lib/examples/sparkfun_lcd.rb +48 -0
  43. data/lib/examples/spectra_soft_pot.rb +34 -0
  44. data/lib/examples/times_method.rb +8 -0
  45. data/lib/examples/toggle.rb +10 -0
  46. data/lib/examples/twitter.rb +57 -0
  47. data/lib/examples/two_wire.rb +14 -0
  48. data/lib/libraries/AFSoftSerial/AFSoftSerial.cpp +321 -0
  49. data/lib/libraries/AFSoftSerial/AFSoftSerial.h +61 -0
  50. data/lib/libraries/AFSoftSerial/keywords.txt +18 -0
  51. data/lib/libraries/AF_XPort/AF_XPort.cpp +166 -0
  52. data/lib/libraries/AF_XPort/AF_XPort.h +48 -0
  53. data/lib/libraries/DS1307/DS1307.cpp +162 -0
  54. data/lib/libraries/DS1307/DS1307.h +66 -0
  55. data/lib/libraries/DS1307/keywords.txt +18 -0
  56. data/lib/libraries/FrequencyTimer2/FrequencyTimer2.cpp +144 -0
  57. data/lib/libraries/FrequencyTimer2/FrequencyTimer2.h +42 -0
  58. data/lib/libraries/FrequencyTimer2/keywords.txt +22 -0
  59. data/lib/libraries/I2CEEPROM/I2CEEPROM.cpp +120 -0
  60. data/lib/libraries/I2CEEPROM/I2CEEPROM.h +70 -0
  61. data/lib/libraries/I2CEEPROM/keywords.txt +21 -0
  62. data/lib/libraries/LoopTimer/LoopTimer.cpp +35 -0
  63. data/lib/libraries/LoopTimer/LoopTimer.h +34 -0
  64. data/lib/libraries/LoopTimer/keywords.txt +27 -0
  65. data/lib/libraries/OneWire/OneWire.cpp +194 -0
  66. data/lib/libraries/OneWire/OneWire.h +63 -0
  67. data/lib/libraries/OneWire/keywords.txt +35 -0
  68. data/lib/libraries/OneWire/readme.txt +13 -0
  69. data/lib/libraries/SWSerLCDpa/SWSerLCDpa.cpp +296 -0
  70. data/lib/libraries/SWSerLCDpa/SWSerLCDpa.h +69 -0
  71. data/lib/libraries/SWSerLCDsf/SWSerLCDsf.cpp +311 -0
  72. data/lib/libraries/SWSerLCDsf/SWSerLCDsf.h +67 -0
  73. data/lib/libraries/Servo/Servo.cpp +192 -0
  74. data/lib/libraries/Servo/Servo.h +61 -0
  75. data/lib/libraries/Stepper/Stepper.cpp +220 -0
  76. data/lib/libraries/Stepper/Stepper.h +86 -0
  77. data/lib/libraries/Stepper/keywords.txt +28 -0
  78. data/lib/libraries/Wire/Wire.cpp +262 -0
  79. data/lib/libraries/Wire/Wire.h +67 -0
  80. data/lib/libraries/Wire/keywords.txt +31 -0
  81. data/lib/libraries/Wire/twi.h +57 -0
  82. data/lib/libraries/Wire/utility/twi.c +449 -0
  83. data/lib/libraries/Wire/utility/twi.h +57 -0
  84. data/lib/plugins/bitwise_ops.rb +54 -0
  85. data/lib/plugins/blink.rb +25 -0
  86. data/lib/plugins/blink_m.rb +356 -0
  87. data/lib/plugins/debounce.rb +138 -0
  88. data/lib/plugins/debug_output_to_lcd.rb +71 -0
  89. data/lib/plugins/hysteresis.rb +52 -0
  90. data/lib/plugins/input_output_state.rb +84 -0
  91. data/lib/plugins/lcd_padding.rb +58 -0
  92. data/lib/plugins/mem_test.rb +37 -0
  93. data/lib/plugins/midi.rb +60 -0
  94. data/lib/plugins/parallax_ping.rb +50 -0
  95. data/lib/plugins/servo_pulse.rb +31 -0
  96. data/lib/plugins/servo_setup.rb +86 -0
  97. data/lib/plugins/smoother.rb +54 -0
  98. data/lib/plugins/spark_fun_serial_lcd.rb +100 -0
  99. data/lib/plugins/spectra_symbol.rb +79 -0
  100. data/lib/plugins/twitter_connect.rb +145 -0
  101. data/lib/rad/README.rdoc +5 -0
  102. data/lib/rad/arduino_plugin.rb +246 -0
  103. data/lib/rad/arduino_sketch.rb +628 -0
  104. data/lib/rad/darwin_installer.rb +23 -0
  105. data/lib/rad/generators/makefile/makefile.erb +243 -0
  106. data/lib/rad/generators/makefile/makefile.rb +38 -0
  107. data/lib/rad/hardware_library.rb +813 -0
  108. data/lib/rad/init.rb +15 -0
  109. data/lib/rad/linux_installer.rb +132 -0
  110. data/lib/rad/progressbar.rb +236 -0
  111. data/lib/rad/rad_processor.rb +128 -0
  112. data/lib/rad/rad_rewriter.rb +94 -0
  113. data/lib/rad/rad_type_checker.rb +26 -0
  114. data/lib/rad/sim/arduino_sketch.rb +57 -0
  115. data/lib/rad/sketch_compiler.rb +47 -0
  116. data/lib/rad/tasks/build_and_make.rake +210 -0
  117. data/lib/rad/tasks/rad.rb +2 -0
  118. data/lib/rad/todo.txt +13 -0
  119. data/lib/rad/variable_processing.rb +153 -0
  120. data/lib/rad/version.rb +9 -0
  121. data/lib/rad.rb +5 -0
  122. data/scripts/txt2html +67 -0
  123. data/setup.rb +1585 -0
  124. data/spec/examples/hello_world.rb +11 -0
  125. data/spec/examples/serial_motor.rb +12 -0
  126. data/spec/models/arduino_sketch_spec.rb +82 -0
  127. data/spec/models/sketch_compiler_spec.rb +96 -0
  128. data/spec/models/spec_helper.rb +2 -0
  129. data/spec/sim/hello_world_spec.rb +42 -0
  130. data/spec/spec.opts +1 -0
  131. data/test/hello_world_test/Makefile +436 -0
  132. data/test/hello_world_test/hello_world.cpp +23 -0
  133. data/test/test_array_processing.rb +179 -0
  134. data/test/test_plugin_loading.rb +151 -0
  135. data/test/test_translation_post_processing.rb +185 -0
  136. data/test/test_variable_processing.rb +238 -0
  137. data/website/examples/assembler_test.rb.html +73 -0
  138. data/website/examples/gps_reader.rb.html +39 -0
  139. data/website/examples/hello_world.rb.html +38 -0
  140. data/website/examples/serial_motor.rb.html +41 -0
  141. data/website/index.html +178 -0
  142. data/website/index.txt +64 -0
  143. data/website/javascripts/rounded_corners_lite.inc.js +285 -0
  144. data/website/stylesheets/screen.css +169 -0
  145. data/website/template.rhtml +48 -0
  146. metadata +222 -0
@@ -0,0 +1,169 @@
1
+ body {
2
+ background-color: #E1D1F1;
3
+ font-family: "Georgia", sans-serif;
4
+ font-size: 16px;
5
+ line-height: 1.6em;
6
+ padding: 1.6em 0 0 0;
7
+ color: #333;
8
+ }
9
+ h1, h2, h3, h4, h5, h6 {
10
+ color: #444;
11
+ }
12
+ h1 {
13
+ font-family: sans-serif;
14
+ font-weight: normal;
15
+ font-size: 4em;
16
+ line-height: 0.8em;
17
+ letter-spacing: -0.1ex;
18
+ margin: 5px;
19
+ }
20
+ li {
21
+ padding: 0;
22
+ margin: 0;
23
+ list-style-type: square;
24
+ }
25
+ a {
26
+ color: #5E5AFF;
27
+ background-color: #DAC;
28
+ font-weight: normal;
29
+ text-decoration: underline;
30
+ }
31
+ blockquote {
32
+ font-size: 90%;
33
+ font-style: italic;
34
+ border-left: 1px solid #111;
35
+ padding-left: 1em;
36
+ }
37
+
38
+ #buy-arduino {
39
+ float:left;
40
+ margin-right: 10px;
41
+ border: 8px solid #000;
42
+ background-color: #fff;
43
+ padding: 5px;
44
+ text-align:center;
45
+ }
46
+
47
+ #buy-arduino h4{
48
+ font-size: 12px;
49
+ margin: 0;
50
+ }
51
+
52
+ #buy-arduino a {
53
+ background-color: #fff;
54
+ }
55
+
56
+ #buy-arduino img{
57
+ width: 190px;
58
+ border: none;
59
+ }
60
+
61
+ .caps {
62
+ font-size: 80%;
63
+ }
64
+
65
+ #main {
66
+ width: 45em;
67
+ padding: 0;
68
+ margin: 0 auto;
69
+ }
70
+ .coda {
71
+ text-align: right;
72
+ color: #77f;
73
+ font-size: smaller;
74
+ }
75
+
76
+ table {
77
+ font-size: 90%;
78
+ line-height: 1.4em;
79
+ color: #ff8;
80
+ background-color: #111;
81
+ padding: 2px 10px 2px 10px;
82
+ border-style: dashed;
83
+ }
84
+
85
+ th {
86
+ color: #fff;
87
+ }
88
+
89
+ td {
90
+ padding: 2px 10px 2px 10px;
91
+ }
92
+
93
+ .success {
94
+ color: #0CC52B;
95
+ }
96
+
97
+ .failed {
98
+ color: #E90A1B;
99
+ }
100
+
101
+ .unknown {
102
+ color: #995000;
103
+ }
104
+ pre, code {
105
+ font-family: monospace;
106
+ font-size: 90%;
107
+ line-height: 1.4em;
108
+ color: #ff8;
109
+ background-color: #111;
110
+ padding: 2px 10px 2px 10px;
111
+ }
112
+ .comment { color: #aaa; font-style: italic; }
113
+ .keyword { color: #eff; font-weight: bold; }
114
+ .punct { color: #eee; font-weight: bold; }
115
+ .symbol { color: #0bb; }
116
+ .string { color: #6b4; }
117
+ .ident { color: #ff8; }
118
+ .constant { color: #66f; }
119
+ .regex { color: #ec6; }
120
+ .number { color: #F99; }
121
+ .expr { color: #227; }
122
+
123
+ #metadata {
124
+ float: left;
125
+ margin-right: 20px;
126
+ }
127
+
128
+ #version {
129
+ width:210px;
130
+ text-align: right;
131
+ font-family: sans-serif;
132
+ font-weight: normal;
133
+ background-color: #B3ABFF;
134
+ color: #141331;
135
+ padding: 15px 20px 10px 20px;
136
+ margin: 0 auto;
137
+ margin-top: 15px;
138
+ border: 3px solid #141331;
139
+ margin-bottom: 20px;
140
+
141
+ }
142
+
143
+ #version .numbers {
144
+ display: block;
145
+ font-size: 4em;
146
+ line-height: 0.8em;
147
+ letter-spacing: -0.1ex;
148
+ margin-bottom: 15px;
149
+ }
150
+
151
+ #version p {
152
+ text-decoration: none;
153
+ color: #141331;
154
+ background-color: #B3ABFF;
155
+ margin: 0;
156
+ padding: 0;
157
+ }
158
+
159
+ #version a {
160
+ text-decoration: none;
161
+ color: #141331;
162
+ background-color: #B3ABFF;
163
+ }
164
+
165
+ .clickable {
166
+ cursor: pointer;
167
+ cursor: hand;
168
+ }
169
+
@@ -0,0 +1,48 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <link rel="stylesheet" href="stylesheets/screen.css" type="text/css" media="screen" />
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
+ <title>
8
+ <%= title %>
9
+ </title>
10
+ <script src="javascripts/rounded_corners_lite.inc.js" type="text/javascript"></script>
11
+ <style>
12
+
13
+ </style>
14
+ <script type="text/javascript">
15
+ window.onload = function() {
16
+ settings = {
17
+ tl: { radius: 10 },
18
+ tr: { radius: 10 },
19
+ bl: { radius: 10 },
20
+ br: { radius: 10 },
21
+ antiAlias: true,
22
+ autoPad: true,
23
+ validTags: ["div"]
24
+ }
25
+ var versionBox = new curvyCorners(settings, document.getElementById("version"));
26
+ versionBox.applyCornersToAll();
27
+ }
28
+ </script>
29
+ </head>
30
+ <body>
31
+ <div id="main">
32
+
33
+ <h1><%= title %></h1>
34
+ <div id="version" class="clickable" onclick='document.location = "<%= download %>"; return false'>
35
+ <p>Get Version</p>
36
+ <a href="<%= download %>" class="numbers"><%= version %></a>
37
+ </div>
38
+ <%= body %>
39
+ <p class="coda">
40
+ <a href="mailto:drnicwilliams@gmail.com">Dr Nic</a>, <%= modified.pretty %><br>
41
+ Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
42
+ </p>
43
+ </div>
44
+
45
+ <!-- insert site tracking codes here, like Google Urchin -->
46
+
47
+ </body>
48
+ </html>
metadata ADDED
@@ -0,0 +1,222 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: neo_rad
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.4.0
5
+ platform: ruby
6
+ authors:
7
+ - Greg Borenstein
8
+ - Mason Meirs
9
+ - 'plugins+: JD Barnhart'
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2023-04-23 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: mime-types
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ">"
20
+ - !ruby/object:Gem::Version
21
+ version: 0.0.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ">"
27
+ - !ruby/object:Gem::Version
28
+ version: 0.0.0
29
+ - !ruby/object:Gem::Dependency
30
+ name: RubyToC
31
+ requirement: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: 1.0.0
36
+ type: :runtime
37
+ prerelease: false
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 1.0.0
43
+ description: 'Ruby Arduino Development: a framework for programming the Arduino physcial
44
+ computing platform using Ruby'
45
+ email: snwy@snwy.me
46
+ executables:
47
+ - rad
48
+ extensions: []
49
+ extra_rdoc_files:
50
+ - History.txt
51
+ - Manifest.txt
52
+ - README.rdoc
53
+ files:
54
+ - History.txt
55
+ - License.txt
56
+ - Manifest.txt
57
+ - README.rdoc
58
+ - Rakefile
59
+ - bin/rad
60
+ - lib/examples/add_hysteresis.rb
61
+ - lib/examples/basic_blink.rb
62
+ - lib/examples/blink_m_address_assignment.rb
63
+ - lib/examples/blink_m_hello.rb
64
+ - lib/examples/blink_m_multi.rb
65
+ - lib/examples/blink_with_serial.rb
66
+ - lib/examples/configure_pa_lcd_boot.rb
67
+ - lib/examples/debounce_methods.rb
68
+ - lib/examples/external_variable_fu.rb
69
+ - lib/examples/external_variables.rb
70
+ - lib/examples/first_sound.rb
71
+ - lib/examples/frequency_generator.rb
72
+ - lib/examples/hello_array.rb
73
+ - lib/examples/hello_array2.rb
74
+ - lib/examples/hello_array_eeprom.rb
75
+ - lib/examples/hello_clock.rb
76
+ - lib/examples/hello_eeprom.rb
77
+ - lib/examples/hello_eeprom_lcdpa.rb
78
+ - lib/examples/hello_format_print.rb
79
+ - lib/examples/hello_lcd_charset.rb
80
+ - lib/examples/hello_pa_lcd.rb
81
+ - lib/examples/hello_servos.rb
82
+ - lib/examples/hello_spectra_sound.rb
83
+ - lib/examples/hello_world.rb
84
+ - lib/examples/hello_xbee.rb
85
+ - lib/examples/hysteresis_duel.rb
86
+ - lib/examples/i2c_with_clock_chip.rb
87
+ - lib/examples/midi_beat_box.rb
88
+ - lib/examples/midi_scales.rb
89
+ - lib/examples/motor_knob.rb
90
+ - lib/examples/servo_buttons.rb
91
+ - lib/examples/servo_calibrate_continuous.rb
92
+ - lib/examples/servo_throttle.rb
93
+ - lib/examples/software_serial.rb
94
+ - lib/examples/sparkfun_lcd.rb
95
+ - lib/examples/spectra_soft_pot.rb
96
+ - lib/examples/times_method.rb
97
+ - lib/examples/toggle.rb
98
+ - lib/examples/twitter.rb
99
+ - lib/examples/two_wire.rb
100
+ - lib/libraries/AFSoftSerial/AFSoftSerial.cpp
101
+ - lib/libraries/AFSoftSerial/AFSoftSerial.h
102
+ - lib/libraries/AFSoftSerial/keywords.txt
103
+ - lib/libraries/AF_XPort/AF_XPort.cpp
104
+ - lib/libraries/AF_XPort/AF_XPort.h
105
+ - lib/libraries/DS1307/DS1307.cpp
106
+ - lib/libraries/DS1307/DS1307.h
107
+ - lib/libraries/DS1307/keywords.txt
108
+ - lib/libraries/FrequencyTimer2/FrequencyTimer2.cpp
109
+ - lib/libraries/FrequencyTimer2/FrequencyTimer2.h
110
+ - lib/libraries/FrequencyTimer2/keywords.txt
111
+ - lib/libraries/I2CEEPROM/I2CEEPROM.cpp
112
+ - lib/libraries/I2CEEPROM/I2CEEPROM.h
113
+ - lib/libraries/I2CEEPROM/keywords.txt
114
+ - lib/libraries/LoopTimer/LoopTimer.cpp
115
+ - lib/libraries/LoopTimer/LoopTimer.h
116
+ - lib/libraries/LoopTimer/keywords.txt
117
+ - lib/libraries/OneWire/OneWire.cpp
118
+ - lib/libraries/OneWire/OneWire.h
119
+ - lib/libraries/OneWire/keywords.txt
120
+ - lib/libraries/OneWire/readme.txt
121
+ - lib/libraries/SWSerLCDpa/SWSerLCDpa.cpp
122
+ - lib/libraries/SWSerLCDpa/SWSerLCDpa.h
123
+ - lib/libraries/SWSerLCDsf/SWSerLCDsf.cpp
124
+ - lib/libraries/SWSerLCDsf/SWSerLCDsf.h
125
+ - lib/libraries/Servo/Servo.cpp
126
+ - lib/libraries/Servo/Servo.h
127
+ - lib/libraries/Stepper/Stepper.cpp
128
+ - lib/libraries/Stepper/Stepper.h
129
+ - lib/libraries/Stepper/keywords.txt
130
+ - lib/libraries/Wire/Wire.cpp
131
+ - lib/libraries/Wire/Wire.h
132
+ - lib/libraries/Wire/keywords.txt
133
+ - lib/libraries/Wire/twi.h
134
+ - lib/libraries/Wire/utility/twi.c
135
+ - lib/libraries/Wire/utility/twi.h
136
+ - lib/plugins/bitwise_ops.rb
137
+ - lib/plugins/blink.rb
138
+ - lib/plugins/blink_m.rb
139
+ - lib/plugins/debounce.rb
140
+ - lib/plugins/debug_output_to_lcd.rb
141
+ - lib/plugins/hysteresis.rb
142
+ - lib/plugins/input_output_state.rb
143
+ - lib/plugins/lcd_padding.rb
144
+ - lib/plugins/mem_test.rb
145
+ - lib/plugins/midi.rb
146
+ - lib/plugins/parallax_ping.rb
147
+ - lib/plugins/servo_pulse.rb
148
+ - lib/plugins/servo_setup.rb
149
+ - lib/plugins/smoother.rb
150
+ - lib/plugins/spark_fun_serial_lcd.rb
151
+ - lib/plugins/spectra_symbol.rb
152
+ - lib/plugins/twitter_connect.rb
153
+ - lib/rad.rb
154
+ - lib/rad/README.rdoc
155
+ - lib/rad/arduino_plugin.rb
156
+ - lib/rad/arduino_sketch.rb
157
+ - lib/rad/darwin_installer.rb
158
+ - lib/rad/generators/makefile/makefile.erb
159
+ - lib/rad/generators/makefile/makefile.rb
160
+ - lib/rad/hardware_library.rb
161
+ - lib/rad/init.rb
162
+ - lib/rad/linux_installer.rb
163
+ - lib/rad/progressbar.rb
164
+ - lib/rad/rad_processor.rb
165
+ - lib/rad/rad_rewriter.rb
166
+ - lib/rad/rad_type_checker.rb
167
+ - lib/rad/sim/arduino_sketch.rb
168
+ - lib/rad/sketch_compiler.rb
169
+ - lib/rad/tasks/build_and_make.rake
170
+ - lib/rad/tasks/rad.rb
171
+ - lib/rad/todo.txt
172
+ - lib/rad/variable_processing.rb
173
+ - lib/rad/version.rb
174
+ - scripts/txt2html
175
+ - setup.rb
176
+ - spec/examples/hello_world.rb
177
+ - spec/examples/serial_motor.rb
178
+ - spec/models/arduino_sketch_spec.rb
179
+ - spec/models/sketch_compiler_spec.rb
180
+ - spec/models/spec_helper.rb
181
+ - spec/sim/hello_world_spec.rb
182
+ - spec/spec.opts
183
+ - test/hello_world_test/Makefile
184
+ - test/hello_world_test/hello_world.cpp
185
+ - test/test_array_processing.rb
186
+ - test/test_plugin_loading.rb
187
+ - test/test_translation_post_processing.rb
188
+ - test/test_variable_processing.rb
189
+ - website/examples/assembler_test.rb.html
190
+ - website/examples/gps_reader.rb.html
191
+ - website/examples/hello_world.rb.html
192
+ - website/examples/serial_motor.rb.html
193
+ - website/index.html
194
+ - website/index.txt
195
+ - website/javascripts/rounded_corners_lite.inc.js
196
+ - website/stylesheets/screen.css
197
+ - website/template.rhtml
198
+ homepage: http://github.com/snoglobe/rad
199
+ licenses: []
200
+ metadata: {}
201
+ post_install_message:
202
+ rdoc_options:
203
+ - "--main"
204
+ - README.rdoc
205
+ require_paths:
206
+ - lib
207
+ required_ruby_version: !ruby/object:Gem::Requirement
208
+ requirements:
209
+ - - ">="
210
+ - !ruby/object:Gem::Version
211
+ version: '0'
212
+ required_rubygems_version: !ruby/object:Gem::Requirement
213
+ requirements:
214
+ - - ">="
215
+ - !ruby/object:Gem::Version
216
+ version: '0'
217
+ requirements: []
218
+ rubygems_version: 3.0.3.1
219
+ signing_key:
220
+ specification_version: 2
221
+ summary: 'Neo RAD: Ruby Arduino Development - 0.4.0'
222
+ test_files: []