atduskgreg-rad 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (143) hide show
  1. data/History.txt +104 -0
  2. data/License.txt +282 -0
  3. data/Manifest.txt +142 -0
  4. data/README.rdoc +55 -0
  5. data/Rakefile +142 -0
  6. data/bin/hello_world_test/Makefile +436 -0
  7. data/bin/hello_world_test/hello_world.cpp +23 -0
  8. data/bin/rad +302 -0
  9. data/lib/examples/add_hysteresis.rb +13 -0
  10. data/lib/examples/basic_blink.rb +10 -0
  11. data/lib/examples/blink_m_address_assignment.rb +104 -0
  12. data/lib/examples/blink_m_hello.rb +14 -0
  13. data/lib/examples/blink_m_multi.rb +61 -0
  14. data/lib/examples/blink_with_serial.rb +16 -0
  15. data/lib/examples/configure_pa_lcd_boot.rb +91 -0
  16. data/lib/examples/debounce_methods.rb +49 -0
  17. data/lib/examples/external_variable_fu.rb +26 -0
  18. data/lib/examples/external_variables.rb +32 -0
  19. data/lib/examples/first_sound.rb +23 -0
  20. data/lib/examples/frequency_generator.rb +30 -0
  21. data/lib/examples/hello_array.rb +48 -0
  22. data/lib/examples/hello_array2.rb +79 -0
  23. data/lib/examples/hello_array_eeprom.rb +59 -0
  24. data/lib/examples/hello_clock.rb +84 -0
  25. data/lib/examples/hello_eeprom.rb +51 -0
  26. data/lib/examples/hello_eeprom_lcdpa.rb +81 -0
  27. data/lib/examples/hello_format_print.rb +94 -0
  28. data/lib/examples/hello_lcd_charset.rb +75 -0
  29. data/lib/examples/hello_pa_lcd.rb +59 -0
  30. data/lib/examples/hello_servos.rb +88 -0
  31. data/lib/examples/hello_spectra_sound.rb +38 -0
  32. data/lib/examples/hello_world.rb +11 -0
  33. data/lib/examples/hello_xbee.rb +12 -0
  34. data/lib/examples/hysteresis_duel.rb +39 -0
  35. data/lib/examples/i2c_with_clock_chip.rb +124 -0
  36. data/lib/examples/midi_beat_box.rb +86 -0
  37. data/lib/examples/midi_scales.rb +94 -0
  38. data/lib/examples/motor_knob.rb +30 -0
  39. data/lib/examples/servo_buttons.rb +23 -0
  40. data/lib/examples/servo_calibrate_continuous.rb +92 -0
  41. data/lib/examples/servo_throttle.rb +40 -0
  42. data/lib/examples/software_serial.rb +10 -0
  43. data/lib/examples/sparkfun_lcd.rb +48 -0
  44. data/lib/examples/spectra_soft_pot.rb +34 -0
  45. data/lib/examples/times_method.rb +8 -0
  46. data/lib/examples/toggle.rb +10 -0
  47. data/lib/examples/twitter.rb +57 -0
  48. data/lib/examples/two_wire.rb +14 -0
  49. data/lib/libraries/AFSoftSerial/AFSoftSerial.cpp +321 -0
  50. data/lib/libraries/AFSoftSerial/AFSoftSerial.h +61 -0
  51. data/lib/libraries/AFSoftSerial/keywords.txt +18 -0
  52. data/lib/libraries/AF_XPort/AF_XPort.cpp +166 -0
  53. data/lib/libraries/AF_XPort/AF_XPort.h +48 -0
  54. data/lib/libraries/DS1307/DS1307.cpp +162 -0
  55. data/lib/libraries/DS1307/DS1307.h +66 -0
  56. data/lib/libraries/DS1307/keywords.txt +18 -0
  57. data/lib/libraries/FrequencyTimer2/FrequencyTimer2.cpp +144 -0
  58. data/lib/libraries/FrequencyTimer2/FrequencyTimer2.h +42 -0
  59. data/lib/libraries/FrequencyTimer2/keywords.txt +22 -0
  60. data/lib/libraries/I2CEEPROM/I2CEEPROM.cpp +120 -0
  61. data/lib/libraries/I2CEEPROM/I2CEEPROM.h +70 -0
  62. data/lib/libraries/I2CEEPROM/keywords.txt +21 -0
  63. data/lib/libraries/LoopTimer/LoopTimer.cpp +35 -0
  64. data/lib/libraries/LoopTimer/LoopTimer.h +34 -0
  65. data/lib/libraries/LoopTimer/keywords.txt +27 -0
  66. data/lib/libraries/OneWire/OneWire.cpp +194 -0
  67. data/lib/libraries/OneWire/OneWire.h +63 -0
  68. data/lib/libraries/OneWire/keywords.txt +35 -0
  69. data/lib/libraries/OneWire/readme.txt +13 -0
  70. data/lib/libraries/SWSerLCDpa/SWSerLCDpa.cpp +296 -0
  71. data/lib/libraries/SWSerLCDpa/SWSerLCDpa.h +69 -0
  72. data/lib/libraries/SWSerLCDsf/SWSerLCDsf.cpp +311 -0
  73. data/lib/libraries/SWSerLCDsf/SWSerLCDsf.h +67 -0
  74. data/lib/libraries/Servo/Servo.cpp +192 -0
  75. data/lib/libraries/Servo/Servo.h +61 -0
  76. data/lib/libraries/Stepper/Stepper.cpp +220 -0
  77. data/lib/libraries/Stepper/Stepper.h +86 -0
  78. data/lib/libraries/Stepper/keywords.txt +28 -0
  79. data/lib/libraries/Wire/Wire.cpp +262 -0
  80. data/lib/libraries/Wire/Wire.h +67 -0
  81. data/lib/libraries/Wire/keywords.txt +31 -0
  82. data/lib/libraries/Wire/twi.h +57 -0
  83. data/lib/libraries/Wire/utility/twi.c +449 -0
  84. data/lib/libraries/Wire/utility/twi.h +57 -0
  85. data/lib/plugins/bitwise_ops.rb +54 -0
  86. data/lib/plugins/blink.rb +25 -0
  87. data/lib/plugins/blink_m.rb +356 -0
  88. data/lib/plugins/debounce.rb +138 -0
  89. data/lib/plugins/debug_output_to_lcd.rb +71 -0
  90. data/lib/plugins/hysteresis.rb +52 -0
  91. data/lib/plugins/input_output_state.rb +84 -0
  92. data/lib/plugins/lcd_padding.rb +58 -0
  93. data/lib/plugins/mem_test.rb +37 -0
  94. data/lib/plugins/midi.rb +60 -0
  95. data/lib/plugins/parallax_ping.rb +50 -0
  96. data/lib/plugins/servo_pulse.rb +31 -0
  97. data/lib/plugins/servo_setup.rb +86 -0
  98. data/lib/plugins/smoother.rb +54 -0
  99. data/lib/plugins/spark_fun_serial_lcd.rb +100 -0
  100. data/lib/plugins/spectra_symbol.rb +79 -0
  101. data/lib/plugins/twitter_connect.rb +145 -0
  102. data/lib/rad.rb +5 -0
  103. data/lib/rad/README.rdoc +5 -0
  104. data/lib/rad/arduino_plugin.rb +246 -0
  105. data/lib/rad/arduino_sketch.rb +627 -0
  106. data/lib/rad/generators/makefile/makefile.erb +243 -0
  107. data/lib/rad/generators/makefile/makefile.rb +38 -0
  108. data/lib/rad/hardware_library.rb +813 -0
  109. data/lib/rad/init.rb +14 -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/scripts/txt2html +67 -0
  122. data/setup.rb +1585 -0
  123. data/spec/examples/hello_world.rb +11 -0
  124. data/spec/examples/serial_motor.rb +12 -0
  125. data/spec/models/arduino_sketch_spec.rb +82 -0
  126. data/spec/models/sketch_compiler_spec.rb +96 -0
  127. data/spec/models/spec_helper.rb +2 -0
  128. data/spec/sim/hello_world_spec.rb +42 -0
  129. data/spec/spec.opts +1 -0
  130. data/test/test_array_processing.rb +179 -0
  131. data/test/test_plugin_loading.rb +151 -0
  132. data/test/test_translation_post_processing.rb +185 -0
  133. data/test/test_variable_processing.rb +238 -0
  134. data/website/examples/assembler_test.rb.html +73 -0
  135. data/website/examples/gps_reader.rb.html +39 -0
  136. data/website/examples/hello_world.rb.html +38 -0
  137. data/website/examples/serial_motor.rb.html +41 -0
  138. data/website/index.html +178 -0
  139. data/website/index.txt +64 -0
  140. data/website/javascripts/rounded_corners_lite.inc.js +285 -0
  141. data/website/stylesheets/screen.css +169 -0
  142. data/website/template.rhtml +48 -0
  143. metadata +217 -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,217 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: atduskgreg-rad
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.5
5
+ platform: ruby
6
+ authors:
7
+ - Greg Borenstein
8
+ - "plugins+: JD Barnhart"
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2008-08-18 00:00:00 -07:00
14
+ default_executable: rad
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: mime-types
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: RubyToC
27
+ version_requirement:
28
+ version_requirements: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 1.0.0
33
+ version:
34
+ description: "Ruby Arduino Development: a framework for programming the Arduino physcial computing platform using Ruby"
35
+ email: greg@grabb.it
36
+ executables:
37
+ - rad
38
+ extensions: []
39
+
40
+ extra_rdoc_files:
41
+ - History.txt
42
+ - Manifest.txt
43
+ - README.rdoc
44
+ files:
45
+ - History.txt
46
+ - License.txt
47
+ - Manifest.txt
48
+ - README.rdoc
49
+ - Rakefile
50
+ - bin/hello_world_test/Makefile
51
+ - bin/hello_world_test/hello_world.cpp
52
+ - bin/rad
53
+ - lib/examples/add_hysteresis.rb
54
+ - lib/examples/basic_blink.rb
55
+ - lib/examples/blink_m_address_assignment.rb
56
+ - lib/examples/blink_m_hello.rb
57
+ - lib/examples/blink_m_multi.rb
58
+ - lib/examples/blink_with_serial.rb
59
+ - lib/examples/configure_pa_lcd_boot.rb
60
+ - lib/examples/debounce_methods.rb
61
+ - lib/examples/external_variable_fu.rb
62
+ - lib/examples/external_variables.rb
63
+ - lib/examples/first_sound.rb
64
+ - lib/examples/frequency_generator.rb
65
+ - lib/examples/hello_array.rb
66
+ - lib/examples/hello_array2.rb
67
+ - lib/examples/hello_array_eeprom.rb
68
+ - lib/examples/hello_clock.rb
69
+ - lib/examples/hello_eeprom.rb
70
+ - lib/examples/hello_eeprom_lcdpa.rb
71
+ - lib/examples/hello_format_print.rb
72
+ - lib/examples/hello_lcd_charset.rb
73
+ - lib/examples/hello_pa_lcd.rb
74
+ - lib/examples/hello_servos.rb
75
+ - lib/examples/hello_spectra_sound.rb
76
+ - lib/examples/hello_world.rb
77
+ - lib/examples/hello_xbee.rb
78
+ - lib/examples/hysteresis_duel.rb
79
+ - lib/examples/i2c_with_clock_chip.rb
80
+ - lib/examples/midi_beat_box.rb
81
+ - lib/examples/midi_scales.rb
82
+ - lib/examples/motor_knob.rb
83
+ - lib/examples/servo_buttons.rb
84
+ - lib/examples/servo_calibrate_continuous.rb
85
+ - lib/examples/servo_throttle.rb
86
+ - lib/examples/software_serial.rb
87
+ - lib/examples/sparkfun_lcd.rb
88
+ - lib/examples/spectra_soft_pot.rb
89
+ - lib/examples/times_method.rb
90
+ - lib/examples/toggle.rb
91
+ - lib/examples/twitter.rb
92
+ - lib/examples/two_wire.rb
93
+ - lib/libraries/AFSoftSerial/AFSoftSerial.cpp
94
+ - lib/libraries/AFSoftSerial/AFSoftSerial.h
95
+ - lib/libraries/AFSoftSerial/keywords.txt
96
+ - lib/libraries/AF_XPort/AF_XPort.cpp
97
+ - lib/libraries/AF_XPort/AF_XPort.h
98
+ - lib/libraries/DS1307/DS1307.cpp
99
+ - lib/libraries/DS1307/DS1307.h
100
+ - lib/libraries/DS1307/keywords.txt
101
+ - lib/libraries/FrequencyTimer2/FrequencyTimer2.cpp
102
+ - lib/libraries/FrequencyTimer2/FrequencyTimer2.h
103
+ - lib/libraries/FrequencyTimer2/keywords.txt
104
+ - lib/libraries/I2CEEPROM/I2CEEPROM.cpp
105
+ - lib/libraries/I2CEEPROM/I2CEEPROM.h
106
+ - lib/libraries/I2CEEPROM/keywords.txt
107
+ - lib/libraries/LoopTimer/LoopTimer.cpp
108
+ - lib/libraries/LoopTimer/LoopTimer.h
109
+ - lib/libraries/LoopTimer/keywords.txt
110
+ - lib/libraries/OneWire/OneWire.cpp
111
+ - lib/libraries/OneWire/OneWire.h
112
+ - lib/libraries/OneWire/keywords.txt
113
+ - lib/libraries/OneWire/readme.txt
114
+ - lib/libraries/SWSerLCDpa/SWSerLCDpa.cpp
115
+ - lib/libraries/SWSerLCDpa/SWSerLCDpa.h
116
+ - lib/libraries/SWSerLCDsf/SWSerLCDsf.cpp
117
+ - lib/libraries/SWSerLCDsf/SWSerLCDsf.h
118
+ - lib/libraries/Servo/Servo.cpp
119
+ - lib/libraries/Servo/Servo.h
120
+ - lib/libraries/Stepper/Stepper.cpp
121
+ - lib/libraries/Stepper/Stepper.h
122
+ - lib/libraries/Stepper/keywords.txt
123
+ - lib/libraries/Wire/Wire.cpp
124
+ - lib/libraries/Wire/Wire.h
125
+ - lib/libraries/Wire/keywords.txt
126
+ - lib/libraries/Wire/twi.h
127
+ - lib/libraries/Wire/utility/twi.c
128
+ - lib/libraries/Wire/utility/twi.h
129
+ - lib/plugins/bitwise_ops.rb
130
+ - lib/plugins/blink.rb
131
+ - lib/plugins/blink_m.rb
132
+ - lib/plugins/debounce.rb
133
+ - lib/plugins/debug_output_to_lcd.rb
134
+ - lib/plugins/hysteresis.rb
135
+ - lib/plugins/input_output_state.rb
136
+ - lib/plugins/lcd_padding.rb
137
+ - lib/plugins/mem_test.rb
138
+ - lib/plugins/midi.rb
139
+ - lib/plugins/parallax_ping.rb
140
+ - lib/plugins/servo_pulse.rb
141
+ - lib/plugins/servo_setup.rb
142
+ - lib/plugins/smoother.rb
143
+ - lib/plugins/spark_fun_serial_lcd.rb
144
+ - lib/plugins/spectra_symbol.rb
145
+ - lib/plugins/twitter_connect.rb
146
+ - lib/rad.rb
147
+ - lib/rad/README.rdoc
148
+ - lib/rad/arduino_plugin.rb
149
+ - lib/rad/arduino_sketch.rb
150
+ - lib/rad/generators/makefile/makefile.erb
151
+ - lib/rad/generators/makefile/makefile.rb
152
+ - lib/rad/hardware_library.rb
153
+ - lib/rad/init.rb
154
+ - lib/rad/progressbar.rb
155
+ - lib/rad/rad_processor.rb
156
+ - lib/rad/rad_rewriter.rb
157
+ - lib/rad/rad_type_checker.rb
158
+ - lib/rad/sim/arduino_sketch.rb
159
+ - lib/rad/sketch_compiler.rb
160
+ - lib/rad/tasks/build_and_make.rake
161
+ - lib/rad/tasks/rad.rb
162
+ - lib/rad/todo.txt
163
+ - lib/rad/variable_processing.rb
164
+ - lib/rad/version.rb
165
+ - scripts/txt2html
166
+ - setup.rb
167
+ - spec/examples/hello_world.rb
168
+ - spec/examples/serial_motor.rb
169
+ - spec/models/arduino_sketch_spec.rb
170
+ - spec/models/sketch_compiler_spec.rb
171
+ - spec/models/spec_helper.rb
172
+ - spec/sim/hello_world_spec.rb
173
+ - spec/spec.opts
174
+ - test/test_array_processing.rb
175
+ - test/test_plugin_loading.rb
176
+ - test/test_translation_post_processing.rb
177
+ - test/test_variable_processing.rb
178
+ - website/index.html
179
+ - website/index.txt
180
+ - website/javascripts/rounded_corners_lite.inc.js
181
+ - website/stylesheets/screen.css
182
+ - website/template.rhtml
183
+ - website/examples/assembler_test.rb.html
184
+ - website/examples/gps_reader.rb.html
185
+ - website/examples/hello_world.rb.html
186
+ - website/examples/serial_motor.rb.html
187
+ - bin/Makefile
188
+ - bin/hello_world.cpp
189
+ has_rdoc: true
190
+ homepage: http://github.com/atduskreg/rad
191
+ post_install_message:
192
+ rdoc_options:
193
+ - --main
194
+ - README.rdoc
195
+ require_paths:
196
+ - lib
197
+ required_ruby_version: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - ">="
200
+ - !ruby/object:Gem::Version
201
+ version: "0"
202
+ version:
203
+ required_rubygems_version: !ruby/object:Gem::Requirement
204
+ requirements:
205
+ - - ">="
206
+ - !ruby/object:Gem::Version
207
+ version: "0"
208
+ version:
209
+ requirements: []
210
+
211
+ rubyforge_project: rad
212
+ rubygems_version: 1.2.0
213
+ signing_key:
214
+ specification_version: 2
215
+ summary: "RAD: Ruby Arduino Development - 0.2.5.5"
216
+ test_files: []
217
+