librarian-puppet 0.9.2 → 0.9.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4522) hide show
  1. data/.gitignore +3 -1
  2. data/README.md +3 -3
  3. data/lib/librarian/puppet/environment.rb +2 -1
  4. data/lib/librarian/puppet/source/git.rb +0 -29
  5. data/lib/librarian/puppet/version.rb +1 -1
  6. data/vendor/gems/ruby/1.8/bin/autospec +19 -0
  7. data/vendor/gems/ruby/1.8/bin/cucumber +19 -0
  8. data/vendor/gems/ruby/1.8/bin/facter +19 -0
  9. data/vendor/gems/ruby/1.8/bin/filebucket +19 -0
  10. data/vendor/gems/ruby/1.8/bin/htmldiff +21 -0
  11. data/vendor/gems/ruby/1.8/bin/ldiff +21 -0
  12. data/vendor/gems/ruby/1.8/bin/librarian-puppet +19 -0
  13. data/vendor/gems/ruby/1.8/bin/pi +19 -0
  14. data/vendor/gems/ruby/1.8/bin/puppet +19 -0
  15. data/vendor/gems/ruby/1.8/bin/puppetca +19 -0
  16. data/vendor/gems/ruby/1.8/bin/puppetd +19 -0
  17. data/vendor/gems/ruby/1.8/bin/puppetdoc +19 -0
  18. data/vendor/gems/ruby/1.8/bin/puppetmasterd +19 -0
  19. data/vendor/gems/ruby/1.8/bin/puppetqd +19 -0
  20. data/vendor/gems/ruby/1.8/bin/puppetrun +19 -0
  21. data/vendor/gems/ruby/1.8/bin/rake +19 -0
  22. data/vendor/gems/ruby/1.8/bin/rake2thor +19 -0
  23. data/vendor/gems/ruby/1.8/bin/ralsh +19 -0
  24. data/vendor/gems/ruby/1.8/bin/rspec +19 -0
  25. data/vendor/gems/ruby/1.8/bin/thor +19 -0
  26. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/Gemfile +10 -0
  27. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/History.md +220 -0
  28. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/LICENSE +20 -0
  29. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/README.md +172 -0
  30. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/Rakefile +25 -0
  31. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/aruba.gemspec +27 -0
  32. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/cucumber.yml +2 -0
  33. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/features/before_cmd_hooks.feature +61 -0
  34. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/features/exit_statuses.feature +42 -0
  35. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/features/file_system_commands.feature +157 -0
  36. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/features/flushing.feature +24 -0
  37. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/features/interactive.feature +40 -0
  38. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/features/no_clobber.feature +25 -0
  39. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/features/output.feature +248 -0
  40. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/features/step_definitions/aruba_dev_steps.rb +28 -0
  41. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/features/support/env.rb +5 -0
  42. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/lib/aruba.rb +1 -0
  43. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/lib/aruba/api.rb +441 -0
  44. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/lib/aruba/config.rb +44 -0
  45. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/lib/aruba/cucumber.rb +261 -0
  46. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/lib/aruba/cucumber/hooks.rb +56 -0
  47. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/lib/aruba/jruby.rb +7 -0
  48. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/lib/aruba/process.rb +81 -0
  49. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/lib/aruba/reporting.rb +122 -0
  50. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/spec/aruba/api_spec.rb +49 -0
  51. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/spec/aruba/hooks_spec.rb +18 -0
  52. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/spec/aruba/process_spec.rb +33 -0
  53. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/spec/spec_helper.rb +8 -0
  54. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/templates/css/console.css +24 -0
  55. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/templates/css/filesystem.css +42 -0
  56. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/templates/css/pygments-autumn.css +59 -0
  57. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/templates/files.erb +14 -0
  58. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/templates/images/LICENSE +22 -0
  59. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/templates/images/folder.png +0 -0
  60. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/templates/images/page_white.png +0 -0
  61. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/templates/images/page_white_gherkin.png +0 -0
  62. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/templates/images/page_white_ruby.png +0 -0
  63. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/templates/index.erb +20 -0
  64. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/templates/js/filesystem.js +5 -0
  65. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/templates/js/jquery-1.6.1.min.js +18 -0
  66. data/vendor/gems/ruby/1.8/gems/aruba-0.4.11/templates/main.erb +34 -0
  67. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/CHANGES +89 -0
  68. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/README +229 -0
  69. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/README.rdoc +232 -0
  70. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/Rakefile +296 -0
  71. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/TAGS +55364 -0
  72. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/doc/releases/builder-1.2.4.rdoc +31 -0
  73. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/doc/releases/builder-2.0.0.rdoc +46 -0
  74. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/doc/releases/builder-2.1.1.rdoc +58 -0
  75. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/lib/blankslate.rb +109 -0
  76. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/lib/builder.rb +13 -0
  77. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/lib/builder/blankslate.rb +23 -0
  78. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/lib/builder/xchar.rb +197 -0
  79. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/lib/builder/xmlbase.rb +160 -0
  80. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/lib/builder/xmlevents.rb +63 -0
  81. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/lib/builder/xmlmarkup.rb +334 -0
  82. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/test/performance.rb +40 -0
  83. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/test/preload.rb +39 -0
  84. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/test/test_blankslate.rb +225 -0
  85. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/test/test_cssbuilder.rb +125 -0
  86. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/test/test_eventbuilder.rb +150 -0
  87. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/test/test_markupbuilder.rb +546 -0
  88. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/test/test_namecollision.rb +39 -0
  89. data/vendor/gems/ruby/1.8/gems/builder-3.0.0/test/test_xchar.rb +77 -0
  90. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/Gemfile +4 -0
  91. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/LICENSE +20 -0
  92. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/README.md +71 -0
  93. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/Rakefile +62 -0
  94. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/childprocess.gemspec +27 -0
  95. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess.rb +177 -0
  96. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/abstract_io.rb +36 -0
  97. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/abstract_process.rb +168 -0
  98. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/errors.rb +26 -0
  99. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/jruby.rb +56 -0
  100. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/jruby/io.rb +16 -0
  101. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/jruby/process.rb +121 -0
  102. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/jruby/pump.rb +52 -0
  103. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/tools/generator.rb +146 -0
  104. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/unix.rb +9 -0
  105. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/unix/fork_exec_process.rb +64 -0
  106. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/unix/io.rb +21 -0
  107. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/unix/lib.rb +181 -0
  108. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/unix/platform/i386-linux.rb +12 -0
  109. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/unix/platform/i386-solaris.rb +11 -0
  110. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/unix/platform/x86_64-linux.rb +12 -0
  111. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/unix/platform/x86_64-macosx.rb +11 -0
  112. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/unix/posix_spawn_process.rb +140 -0
  113. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/unix/process.rb +70 -0
  114. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/version.rb +3 -0
  115. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/windows.rb +33 -0
  116. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/windows/handle.rb +89 -0
  117. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/windows/io.rb +25 -0
  118. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/windows/lib.rb +363 -0
  119. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/windows/process.rb +76 -0
  120. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/windows/process_builder.rb +179 -0
  121. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/lib/childprocess/windows/structs.rb +83 -0
  122. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/spec/abstract_io_spec.rb +12 -0
  123. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/spec/childprocess_spec.rb +192 -0
  124. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/spec/io_spec.rb +152 -0
  125. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/spec/jruby_spec.rb +24 -0
  126. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/spec/pid_behavior.rb +13 -0
  127. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/spec/spec_helper.rb +172 -0
  128. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/spec/unix_spec.rb +53 -0
  129. data/vendor/gems/ruby/1.8/gems/childprocess-0.3.5/spec/windows_spec.rb +23 -0
  130. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/Gemfile +4 -0
  131. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/History.md +1841 -0
  132. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/LICENSE +22 -0
  133. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/README.md +40 -0
  134. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/Rakefile +12 -0
  135. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/bin/cucumber +22 -0
  136. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/cucumber.gemspec +47 -0
  137. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/cucumber.yml +20 -0
  138. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/README.textile +3 -0
  139. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/Rakefile +33 -0
  140. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ar/Rakefile +6 -0
  141. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ar/features/addition.feature +17 -0
  142. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ar/features/step_definitons/calculator_steps.rb +24 -0
  143. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ar/lib/calculator.rb +11 -0
  144. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/bg/Rakefile +6 -0
  145. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/bg/features/addition.feature +12 -0
  146. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/bg/features/consecutive_calculations.feature +19 -0
  147. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/bg/features/division.feature +17 -0
  148. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/bg/features/step_definitons/calculator_steps.rb +24 -0
  149. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/bg/features/support/env.rb +5 -0
  150. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/bg/features/support/world.rb +8 -0
  151. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/bg/lib/calculator.rb +24 -0
  152. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ca/Rakefile +6 -0
  153. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ca/features/step_definitons/calculator_steps.rb +21 -0
  154. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ca/features/suma.feature +17 -0
  155. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ca/lib/calculadora.rb +16 -0
  156. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/da/Rakefile +6 -0
  157. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/da/features/sammenlaegning.feature +18 -0
  158. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/da/features/step_definitons/lommeregner_steps.rb +24 -0
  159. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/da/lib/lommeregner.rb +11 -0
  160. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/de/Rakefile +6 -0
  161. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/de/features/addition.feature +17 -0
  162. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/de/features/division.feature +10 -0
  163. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/de/features/step_definitons/calculator_steps.rb +24 -0
  164. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/de/lib/calculator.rb +14 -0
  165. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/en-lol/Rakefile +4 -0
  166. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb +16 -0
  167. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/en-lol/features/stuffing.feature +8 -0
  168. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/en-lol/features/support/env.rb +7 -0
  169. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/en-lol/lib/basket.rb +12 -0
  170. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/en-lol/lib/belly.rb +11 -0
  171. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/en/Rakefile +6 -0
  172. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/en/features/addition.feature +17 -0
  173. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/en/features/division.feature +10 -0
  174. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/en/features/step_definitons/calculator_steps.rb +24 -0
  175. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/en/lib/calculator.rb +14 -0
  176. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/eo/Rakefile +6 -0
  177. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/eo/features/adicio.feature +17 -0
  178. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/eo/features/divido.feature +10 -0
  179. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/eo/features/step_definitons/calculator_steps.rb +24 -0
  180. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/eo/lib/calculator.rb +14 -0
  181. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/es/Rakefile +6 -0
  182. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/es/features/adicion.feature +17 -0
  183. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/es/features/step_definitons/calculador_steps.rb +21 -0
  184. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/es/lib/calculador.rb +14 -0
  185. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/et/Rakefile +6 -0
  186. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/et/features/jagamine.feature +10 -0
  187. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/et/features/liitmine.feature +17 -0
  188. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/et/features/step_definitions/kalkulaator_steps.rb +24 -0
  189. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/et/lib/kalkulaator.rb +14 -0
  190. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/fi/Rakefile +6 -0
  191. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/fi/features/jakolasku.feature +10 -0
  192. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/fi/features/step_definitons/laskin_steps.rb +24 -0
  193. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/fi/features/yhteenlasku.feature +17 -0
  194. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/fi/lib/laskin.rb +14 -0
  195. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/fr/Rakefile +6 -0
  196. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/fr/features/addition.feature +18 -0
  197. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/fr/features/addition2.feature +17 -0
  198. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/fr/features/step_definitions/calculatrice_steps.rb +32 -0
  199. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/fr/features/support/env.rb +5 -0
  200. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/fr/lib/calculatrice.rb +10 -0
  201. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/he/Rakefile +6 -0
  202. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/he/features/addition.feature +17 -0
  203. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/he/features/division.feature +10 -0
  204. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/he/features/step_definitons/calculator_steps.rb +24 -0
  205. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/he/lib/calculator.rb +15 -0
  206. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/hu/Rakefile +6 -0
  207. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/hu/features/osszeadas.feature +17 -0
  208. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/hu/features/osztas.feature +10 -0
  209. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/hu/features/step_definitons/calculator_steps.rb +25 -0
  210. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/hu/lib/calculator.rb +14 -0
  211. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/id/Rakefile +6 -0
  212. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/id/features/addition.feature +17 -0
  213. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/id/features/division.feature +10 -0
  214. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/id/features/step_definitons/calculator_steps.rb +24 -0
  215. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/id/lib/calculator.rb +14 -0
  216. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/it/Rakefile +6 -0
  217. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/it/features/somma.feature +11 -0
  218. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/it/features/step_definitons/calcolatrice_steps.rb +24 -0
  219. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/it/lib/calcolatrice.rb +11 -0
  220. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ja/Rakefile +6 -0
  221. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ja/features/addition.feature +17 -0
  222. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ja/features/division.feature +10 -0
  223. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ja/features/step_definitons/calculator_steps.rb +19 -0
  224. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ja/features/support/env.rb +5 -0
  225. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ja/lib/calculator.rb +14 -0
  226. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ko/Rakefile +6 -0
  227. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ko/features/addition.feature +17 -0
  228. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ko/features/division.feature +11 -0
  229. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ko/features/step_definitons/calculator_steps.rb +24 -0
  230. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ko/lib/calculator.rb +14 -0
  231. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/lt/Rakefile +6 -0
  232. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/lt/features/addition.feature +17 -0
  233. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/lt/features/division.feature +10 -0
  234. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/lt/features/step_definitons/calculator_steps.rb +24 -0
  235. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/lt/lib/calculator.rb +14 -0
  236. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/lv/Rakefile +6 -0
  237. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/lv/features/addition.feature +17 -0
  238. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/lv/features/division.feature +10 -0
  239. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/lv/features/step_definitons/calculator_steps.rb +24 -0
  240. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/lv/lib/calculator.rb +14 -0
  241. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/no/Rakefile +6 -0
  242. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/no/features/step_definitons/kalkulator_steps.rb +17 -0
  243. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/no/features/summering.feature +19 -0
  244. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/no/features/support/env.rb +6 -0
  245. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/no/lib/kalkulator.rb +11 -0
  246. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/pl/Rakefile +6 -0
  247. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/pl/features/addition.feature +17 -0
  248. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/pl/features/division.feature +10 -0
  249. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/pl/features/step_definitons/calculator_steps.rb +24 -0
  250. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/pl/features/support/env.rb +5 -0
  251. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/pl/lib/calculator.rb +14 -0
  252. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/pt/Rakefile +6 -0
  253. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/pt/features/adicao.feature +11 -0
  254. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/pt/features/step_definitions/calculadora_steps.rb +20 -0
  255. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/pt/features/support/env.rb +5 -0
  256. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/pt/lib/calculadora.rb +10 -0
  257. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ro/Rakefile +6 -0
  258. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ro/features/adunare.feature +12 -0
  259. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ro/features/step_definitons/calculator_steps.rb +21 -0
  260. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ro/lib/calculator.rb +11 -0
  261. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ru/Rakefile +6 -0
  262. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ru/features/addition.feature +11 -0
  263. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ru/features/consecutive_calculations.feature +17 -0
  264. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ru/features/division.feature +16 -0
  265. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ru/features/step_definitons/calculator_steps.rb +19 -0
  266. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ru/features/support/env.rb +5 -0
  267. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ru/features/support/world.rb +8 -0
  268. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/ru/lib/calculator.rb +24 -0
  269. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/sk/Rakefile +6 -0
  270. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/sk/features/addition.feature +17 -0
  271. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/sk/features/division.feature +10 -0
  272. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/sk/features/step_definitons/calculator_steps.rb +24 -0
  273. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/sk/lib/calculator.rb +14 -0
  274. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/sr-Cyrl/Rakefile +6 -0
  275. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/sr-Cyrl/features/sabiranje.feature +18 -0
  276. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/sr-Cyrl/features/step_definitons/calculator_steps.rb +20 -0
  277. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/sr-Cyrl/features/support/env.rb +5 -0
  278. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/sr-Cyrl/lib/calculator.rb +12 -0
  279. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/sr-Latn/Rakefile +6 -0
  280. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/sr-Latn/features/sabiranje.feature +18 -0
  281. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/sr-Latn/features/step_definitons/calculator_steps.rb +24 -0
  282. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/sr-Latn/lib/calculator.rb +12 -0
  283. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/sv/Rakefile +6 -0
  284. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/sv/features/step_definitons/kalkulator_steps.rb +24 -0
  285. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/sv/features/summering.feature +18 -0
  286. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/sv/lib/kalkulator.rb +11 -0
  287. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/tr/Rakefile +6 -0
  288. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/tr/features/bolme.feature +10 -0
  289. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/tr/features/step_definitons/hesap_makinesi_adimlari.rb +24 -0
  290. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/tr/features/toplama.feature +18 -0
  291. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/tr/lib/hesap_makinesi.rb +15 -0
  292. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/uk/Rakefile +6 -0
  293. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/uk/features/addition.feature +11 -0
  294. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/uk/features/consecutive_calculations.feature +17 -0
  295. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/uk/features/division.feature +16 -0
  296. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/uk/features/step_definitons/calculator_steps.rb +19 -0
  297. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/uk/features/support/env.rb +5 -0
  298. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/uk/features/support/world.rb +8 -0
  299. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/uk/lib/calculator.rb +24 -0
  300. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/uz/Rakefile +6 -0
  301. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/uz/features/addition.feature +10 -0
  302. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/uz/features/consecutive_calculations.feature +17 -0
  303. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/uz/features/division.feature +17 -0
  304. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/uz/features/step_definitons/calculator_steps.rb +19 -0
  305. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/uz/features/support/env.rb +5 -0
  306. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/uz/features/support/world.rb +8 -0
  307. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/uz/lib/calculator.rb +24 -0
  308. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/zh-CN/Rakefile +4 -0
  309. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/zh-CN/features/addition.feature +18 -0
  310. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb +26 -0
  311. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/zh-CN/lib/calculator.rb +10 -0
  312. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/zh-TW/Rakefile +4 -0
  313. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/zh-TW/features/addition.feature +17 -0
  314. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/zh-TW/features/division.feature +11 -0
  315. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb +24 -0
  316. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/i18n/zh-TW/lib/calculator.rb +14 -0
  317. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/python/README.textile +7 -0
  318. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/python/Rakefile +4 -0
  319. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/python/features/fibonacci.feature +19 -0
  320. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/python/features/step_definitions/fib_steps.py +11 -0
  321. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/python/lib/fib.py +7 -0
  322. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/ramaze/README.textile +7 -0
  323. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/ramaze/Rakefile +6 -0
  324. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/ramaze/app.rb +21 -0
  325. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/ramaze/features/add.feature +11 -0
  326. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/ramaze/features/step_definitions/add_steps.rb +15 -0
  327. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/ramaze/features/support/env.rb +32 -0
  328. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/ramaze/layout/default.html.erb +8 -0
  329. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/ramaze/view/index.html.erb +5 -0
  330. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/rspec_doubles/Rakefile +4 -0
  331. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/rspec_doubles/features/mocking.feature +9 -0
  332. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/rspec_doubles/features/step_definitions/calvin_steps.rb +19 -0
  333. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/rspec_doubles/features/support/env.rb +12 -0
  334. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/ruby2python/README.textile +7 -0
  335. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/ruby2python/Rakefile +4 -0
  336. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/ruby2python/features/fibonacci.feature +19 -0
  337. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/ruby2python/features/step_definitions/fib_steps.rb +7 -0
  338. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/ruby2python/features/support/env.rb +21 -0
  339. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/ruby2python/lib/fib.py +7 -0
  340. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/sinatra/README.textile +13 -0
  341. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/sinatra/Rakefile +6 -0
  342. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/sinatra/app.rb +14 -0
  343. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/sinatra/features/add.feature +11 -0
  344. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/sinatra/features/step_definitions/add_steps.rb +15 -0
  345. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/sinatra/features/support/env.rb +10 -0
  346. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/sinatra/views/add.erb +7 -0
  347. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/sinatra/views/layout.erb +8 -0
  348. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/tcl/README.textile +11 -0
  349. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/tcl/Rakefile +6 -0
  350. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/tcl/features/fibonnacci.feature +17 -0
  351. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/tcl/features/step_definitions/fib_steps.rb +7 -0
  352. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/tcl/features/support/env.rb +6 -0
  353. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/tcl/src/fib.tcl +3 -0
  354. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/test_unit/Rakefile +6 -0
  355. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/test_unit/features/step_definitions/test_unit_steps.rb +23 -0
  356. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/test_unit/features/test_unit.feature +9 -0
  357. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/v8/Rakefile +6 -0
  358. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/v8/features/fibonacci.feature +43 -0
  359. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/v8/features/step_definitions/fib_steps.js +49 -0
  360. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/v8/features/support/env.js +14 -0
  361. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/v8/lib/fibonacci.js +19 -0
  362. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/watir/README.textile +16 -0
  363. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/watir/Rakefile +12 -0
  364. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/watir/cucumber.yml +1 -0
  365. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/watir/features/search.feature +12 -0
  366. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/watir/features/step_definitions/search_steps.rb +26 -0
  367. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/watir/features/support/env.rb +32 -0
  368. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/examples/watir/features/support/screenshots.rb +47 -0
  369. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/background.feature +498 -0
  370. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/backtraces.feature +36 -0
  371. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/bootstrap.feature +13 -0
  372. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/custom_formatter.feature +41 -0
  373. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/doc_strings.feature +73 -0
  374. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/drb_server_integration.feature +63 -0
  375. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/execute_with_tag_filter.feature +63 -0
  376. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/formatter_step_file_colon_line.feature +46 -0
  377. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/hooks.feature +59 -0
  378. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/iso-8859-1.feature +6 -0
  379. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/json_formatter.feature +248 -0
  380. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/nested_steps.feature +60 -0
  381. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/rerun_formatter.feature +35 -0
  382. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/run_specific_scenarios.feature +47 -0
  383. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/stats_formatters.feature +70 -0
  384. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/step_definitions/cucumber-features/cucumber_ruby_mappings.rb +197 -0
  385. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/step_definitions/cucumber_steps.rb +38 -0
  386. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/step_definitions/drb_steps.rb +3 -0
  387. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/step_definitions/iso-8859-1_steps.rb +24 -0
  388. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/support/env.rb +30 -0
  389. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/support/feature_factory.rb +50 -0
  390. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/tagged_hooks.feature +217 -0
  391. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/features/transforms.feature +63 -0
  392. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/json/features/background.feature +7 -0
  393. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/json/features/embed.feature +4 -0
  394. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/json/features/one_passing_one_failing.feature +11 -0
  395. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/json/features/step_definitions/steps.rb +32 -0
  396. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/json/features/tables.feature +13 -0
  397. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/junit/features/one_passing_one_failing.feature +8 -0
  398. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/junit/features/pending.feature +7 -0
  399. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/junit/features/scenario_outline.feature +9 -0
  400. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/junit/features/some_subdirectory/one_passing_one_failing.feature +8 -0
  401. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/junit/features/step_definitions/steps.rb +11 -0
  402. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/self_test/README.textile +6 -0
  403. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/self_test/Rakefile +6 -0
  404. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/self_test/features/call_undefined_step_from_step_def.feature +7 -0
  405. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/self_test/features/failing_expectation.feature +4 -0
  406. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/self_test/features/lots_of_undefined.feature +8 -0
  407. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/self_test/features/multiline_name.feature +27 -0
  408. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/self_test/features/outline_sample.feature +15 -0
  409. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/self_test/features/sample.feature +21 -0
  410. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/self_test/features/search_sample.feature +32 -0
  411. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/self_test/features/step_definitions/sample_steps.rb +84 -0
  412. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/self_test/features/support/bubble_256x256.png +0 -0
  413. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/self_test/features/support/env.rb +26 -0
  414. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/self_test/features/tags_sample.feature +17 -0
  415. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/self_test/features/tons_of_cukes.feature +52 -0
  416. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/self_test/features/undefined_multiline_args.feature +12 -0
  417. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/self_test/list-of-features.txt +1 -0
  418. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/steps_library/features/step_definitions/steps_lib1.rb +8 -0
  419. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/steps_library/features/step_definitions/steps_lib2.rb +8 -0
  420. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/Rakefile +20 -0
  421. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features.html +138 -0
  422. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/172.feature +28 -0
  423. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/177/1.feature +28 -0
  424. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/177/2.feature +20 -0
  425. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/177/3.feature +18 -0
  426. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/180.feature +7 -0
  427. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/229/tagged_hooks.feature +8 -0
  428. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/229/tagged_hooks.rb +14 -0
  429. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/236.feature +13 -0
  430. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/241.feature +12 -0
  431. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/246.feature +4 -0
  432. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/248.feature +11 -0
  433. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/270/back.feature +14 -0
  434. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/270/back.steps.rb +14 -0
  435. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/272/hooks.feature +26 -0
  436. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/272/hooks_steps.rb +53 -0
  437. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/279/py_string_indent.feature +25 -0
  438. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/279/py_string_indent.steps.rb +12 -0
  439. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/279/wrong.feature_ +11 -0
  440. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/301/filter_background_tagged_hooks.feature +6 -0
  441. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/301/filter_background_tagged_hooks_steps.rb +12 -0
  442. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/306/only_background.feature +4 -0
  443. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/around_timeout.feature +6 -0
  444. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/gherkin_67.feature +12 -0
  445. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/gherkin_68.feature +4 -0
  446. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/half_manual.feature +11 -0
  447. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/lib/eatting_machine.rb +18 -0
  448. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/lib/pantry.rb +20 -0
  449. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/scenario_outline.feature +95 -0
  450. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/step_definitons/246_steps.rb +3 -0
  451. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/step_definitons/248_steps.rb +15 -0
  452. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/step_definitons/around_timeout_steps.rb +9 -0
  453. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/step_definitons/half_manual_steps.rb +11 -0
  454. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/step_definitons/scenario_outline_steps.rb +42 -0
  455. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/step_definitons/tickets_steps.rb +88 -0
  456. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/table_diffing.feature +13 -0
  457. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/fixtures/tickets/features/tickets.feature +28 -0
  458. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/gem_tasks/contributors.rake +15 -0
  459. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/gem_tasks/cucumber.rake +28 -0
  460. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/gem_tasks/downloads.rb +7 -0
  461. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/gem_tasks/environment.rake +7 -0
  462. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/gem_tasks/examples.rake +11 -0
  463. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/gem_tasks/fix_cr_lf.rake +10 -0
  464. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/gem_tasks/flog.rake +4 -0
  465. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/gem_tasks/rspec.rake +8 -0
  466. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/gem_tasks/sass.rake +4 -0
  467. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/gem_tasks/stats +14 -0
  468. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/gem_tasks/versions.txt +74 -0
  469. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/gem_tasks/yard.rake +18 -0
  470. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/gem_tasks/yard/default/layout/html/bubble_32x32.png +0 -0
  471. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/gem_tasks/yard/default/layout/html/footer.erb +5 -0
  472. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/gem_tasks/yard/default/layout/html/index.erb +1 -0
  473. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/gem_tasks/yard/default/layout/html/layout.erb +25 -0
  474. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/gem_tasks/yard/default/layout/html/logo.erb +1 -0
  475. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/gem_tasks/yard/default/layout/html/setup.rb +4 -0
  476. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/announce.feature +152 -0
  477. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/api/list_step_defs_as_json.feature +50 -0
  478. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/api/run_cli_main_with_existing_runtime.feature +34 -0
  479. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/around_hooks.feature +232 -0
  480. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/bug_371.feature +32 -0
  481. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/bug_464.feature +16 -0
  482. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/bug_475.feature +42 -0
  483. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/bug_585_tab_indentation.feature +22 -0
  484. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/bug_600.feature +73 -0
  485. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/call_steps_from_stepdefs.feature +154 -0
  486. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/cucumber_cli.feature +584 -0
  487. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/cucumber_cli_outlines.feature +117 -0
  488. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/default_snippets.feature +43 -0
  489. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/diffing.feature +25 -0
  490. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/drb_server_integration.feature +174 -0
  491. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/exception_in_after_block.feature +127 -0
  492. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/exception_in_after_step_block.feature +104 -0
  493. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/exception_in_before_block.feature +98 -0
  494. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/exclude_files.feature +20 -0
  495. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/expand.feature +60 -0
  496. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/html_formatter.feature +8 -0
  497. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/html_formatter/a.html +561 -0
  498. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/junit_formatter.feature +214 -0
  499. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/language_from_header.feature +30 -0
  500. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/language_help.feature +79 -0
  501. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/listener_debugger_formatter.feature +42 -0
  502. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/multiline_names.feature +44 -0
  503. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/post_configuration_hook.feature +50 -0
  504. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/profiles.feature +126 -0
  505. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/rake_task.feature +152 -0
  506. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/report_called_undefined_steps.feature +34 -0
  507. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/rerun_formatter.feature +52 -0
  508. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/simplest.feature +11 -0
  509. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/snippet.feature +23 -0
  510. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/snippets_when_using_star_keyword.feature +37 -0
  511. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/step_definitions/cucumber_steps.rb +172 -0
  512. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/step_definitions/extra_steps.rb +2 -0
  513. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/step_definitions/simplest_steps.rb +3 -0
  514. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/step_definitions/wire_steps.rb +34 -0
  515. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/support/env.rb +157 -0
  516. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/support/env.rb.simplest +7 -0
  517. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/support/fake_wire_server.rb +77 -0
  518. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/table_diffing.feature +45 -0
  519. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/table_mapping.feature +34 -0
  520. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/transform.feature +245 -0
  521. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/unicode_table.feature +35 -0
  522. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/wire_protocol.feature +332 -0
  523. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/wire_protocol_erb.feature +57 -0
  524. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/wire_protocol_table_diffing.feature +119 -0
  525. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/wire_protocol_tags.feature +87 -0
  526. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/wire_protocol_timeouts.feature +63 -0
  527. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/legacy_features/work_in_progress.feature +156 -0
  528. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/README.rdoc +12 -0
  529. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/autotest/cucumber.rb +6 -0
  530. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/autotest/cucumber_mixin.rb +135 -0
  531. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/autotest/cucumber_rails.rb +6 -0
  532. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/autotest/cucumber_rails_rspec.rb +6 -0
  533. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/autotest/cucumber_rails_rspec2.rb +6 -0
  534. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/autotest/cucumber_rspec.rb +6 -0
  535. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/autotest/cucumber_rspec2.rb +6 -0
  536. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/autotest/discover.rb +9 -0
  537. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber.rb +28 -0
  538. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast.rb +30 -0
  539. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/background.rb +112 -0
  540. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/comment.rb +31 -0
  541. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/doc_string.rb +61 -0
  542. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/examples.rb +46 -0
  543. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/feature.rb +110 -0
  544. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/feature_element.rb +82 -0
  545. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/features.rb +35 -0
  546. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/multiline_argument.rb +30 -0
  547. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/names.rb +13 -0
  548. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/outline_table.rb +195 -0
  549. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/scenario.rb +119 -0
  550. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/scenario_outline.rb +125 -0
  551. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/step.rb +126 -0
  552. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/step_collection.rb +76 -0
  553. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/step_invocation.rb +193 -0
  554. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/table.rb +718 -0
  555. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/tags.rb +28 -0
  556. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/tree_walker.rb +183 -0
  557. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/ast/visitor.rb +11 -0
  558. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/broadcaster.rb +13 -0
  559. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/cli/configuration.rb +213 -0
  560. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/cli/drb_client.rb +43 -0
  561. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/cli/main.rb +79 -0
  562. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/cli/options.rb +429 -0
  563. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/cli/profile_loader.rb +91 -0
  564. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/configuration.rb +49 -0
  565. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/constantize.rb +34 -0
  566. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/core_ext/disable_mini_and_test_unit_autorun.rb +39 -0
  567. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/core_ext/instance_exec.rb +98 -0
  568. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/core_ext/proc.rb +34 -0
  569. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/core_ext/string.rb +9 -0
  570. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/errors.rb +40 -0
  571. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/feature_file.rb +101 -0
  572. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/ansicolor.rb +155 -0
  573. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/console.rb +188 -0
  574. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/cucumber.css +285 -0
  575. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/cucumber.sass +247 -0
  576. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/debug.rb +33 -0
  577. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/duration.rb +13 -0
  578. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/gherkin_formatter_adapter.rb +87 -0
  579. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/gpretty.rb +24 -0
  580. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/html.rb +655 -0
  581. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/interceptor.rb +62 -0
  582. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/io.rb +31 -0
  583. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/jquery-min.js +154 -0
  584. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/json.rb +19 -0
  585. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/json_pretty.rb +13 -0
  586. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/junit.rb +171 -0
  587. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/ordered_xml_markup.rb +24 -0
  588. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/pretty.rb +237 -0
  589. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/progress.rb +92 -0
  590. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/rerun.rb +91 -0
  591. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/stepdefs.rb +14 -0
  592. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/steps.rb +49 -0
  593. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/summary.rb +35 -0
  594. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/unicode.rb +79 -0
  595. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/formatter/usage.rb +127 -0
  596. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/js_support/js_dsl.js +57 -0
  597. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/js_support/js_language.rb +185 -0
  598. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/js_support/js_snippets.rb +27 -0
  599. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/language_support.rb +30 -0
  600. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/language_support/language_methods.rb +125 -0
  601. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/parser.rb +2 -0
  602. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/parser/gherkin_builder.rb +128 -0
  603. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/platform.rb +29 -0
  604. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/py_support/py_dsl.py +10 -0
  605. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/py_support/py_language.py +10 -0
  606. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/py_support/py_language.rb +80 -0
  607. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/rake/task.rb +221 -0
  608. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/rb_support/rb_dsl.rb +119 -0
  609. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/rb_support/rb_hook.rb +18 -0
  610. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/rb_support/rb_language.rb +181 -0
  611. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/rb_support/rb_step_definition.rb +94 -0
  612. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/rb_support/rb_transform.rb +57 -0
  613. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/rb_support/rb_world.rb +107 -0
  614. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/rb_support/regexp_argument_matcher.rb +21 -0
  615. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/rspec/disable_option_parser.rb +23 -0
  616. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/rspec/doubles.rb +16 -0
  617. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/runtime.rb +183 -0
  618. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/runtime/features_loader.rb +62 -0
  619. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/runtime/for_programming_languages.rb +67 -0
  620. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/runtime/results.rb +64 -0
  621. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/runtime/support_code.rb +198 -0
  622. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/runtime/user_interface.rb +81 -0
  623. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/step_definition_light.rb +20 -0
  624. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/step_definitions.rb +14 -0
  625. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/step_match.rb +114 -0
  626. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/step_mother.rb +10 -0
  627. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/term/ansicolor.rb +118 -0
  628. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/wire_support/configuration.rb +31 -0
  629. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/wire_support/connection.rb +55 -0
  630. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/wire_support/request_handler.rb +32 -0
  631. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/wire_support/wire_exception.rb +32 -0
  632. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/wire_support/wire_language.rb +54 -0
  633. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/wire_support/wire_packet.rb +32 -0
  634. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/wire_support/wire_protocol.rb +43 -0
  635. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/wire_support/wire_protocol/requests.rb +125 -0
  636. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/lib/cucumber/wire_support/wire_step_definition.rb +26 -0
  637. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/ast/background_spec.rb +115 -0
  638. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/ast/doc_string_spec.rb +40 -0
  639. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/ast/feature_factory.rb +62 -0
  640. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/ast/feature_spec.rb +63 -0
  641. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/ast/outline_table_spec.rb +21 -0
  642. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/ast/scenario_outline_spec.rb +68 -0
  643. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/ast/step_spec.rb +66 -0
  644. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/ast/table_spec.rb +518 -0
  645. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/ast/tree_walker_spec.rb +11 -0
  646. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/broadcaster_spec.rb +15 -0
  647. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/cli/configuration_spec.rb +437 -0
  648. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/cli/drb_client_spec.rb +76 -0
  649. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/cli/main_spec.rb +137 -0
  650. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/cli/options_spec.rb +364 -0
  651. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/cli/profile_loader_spec.rb +35 -0
  652. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/configuration_spec.rb +23 -0
  653. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/constantize_spec.rb +16 -0
  654. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/core_ext/proc_spec.rb +68 -0
  655. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/formatter/ansicolor_spec.rb +31 -0
  656. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/formatter/duration_spec.rb +22 -0
  657. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/formatter/html_spec.rb +257 -0
  658. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/formatter/interceptor_spec.rb +111 -0
  659. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/formatter/junit_spec.rb +141 -0
  660. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/formatter/progress_spec.rb +38 -0
  661. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/formatter/spec_helper.rb +52 -0
  662. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/rake/forked_spec.rb +62 -0
  663. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/rake/rcov_spec.rb +71 -0
  664. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/rb_support/rb_language_spec.rb +282 -0
  665. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/rb_support/rb_step_definition_spec.rb +114 -0
  666. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/rb_support/rb_transform_spec.rb +25 -0
  667. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/rb_support/regexp_argument_matcher_spec.rb +22 -0
  668. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/runtime/results_spec.rb +81 -0
  669. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/runtime/support_code_spec.rb +112 -0
  670. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/runtime_spec.rb +41 -0
  671. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/sell_cucumbers.feature +19 -0
  672. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/step_match_spec.rb +73 -0
  673. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/wire_support/configuration_spec.rb +51 -0
  674. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/wire_support/connection_spec.rb +46 -0
  675. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/wire_support/wire_exception_spec.rb +44 -0
  676. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/wire_support/wire_language_spec.rb +47 -0
  677. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/wire_support/wire_packet_spec.rb +40 -0
  678. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/wire_support/wire_step_definition_spec.rb +20 -0
  679. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/cucumber/world/pending_spec.rb +46 -0
  680. data/vendor/gems/ruby/1.8/gems/cucumber-1.2.1/spec/spec_helper.rb +36 -0
  681. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/History.rdoc +54 -0
  682. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/License.rdoc +38 -0
  683. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/Manifest.txt +27 -0
  684. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/README.rdoc +72 -0
  685. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/Rakefile +26 -0
  686. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/bin/htmldiff +32 -0
  687. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/bin/ldiff +6 -0
  688. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/diff-lcs.gemspec +51 -0
  689. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/docs/COPYING.txt +340 -0
  690. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/docs/artistic.html +289 -0
  691. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/lib/diff-lcs.rb +5 -0
  692. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/lib/diff/lcs.rb +1105 -0
  693. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/lib/diff/lcs/array.rb +21 -0
  694. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/lib/diff/lcs/block.rb +51 -0
  695. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/lib/diff/lcs/callbacks.rb +322 -0
  696. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/lib/diff/lcs/change.rb +169 -0
  697. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/lib/diff/lcs/htmldiff.rb +151 -0
  698. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/lib/diff/lcs/hunk.rb +242 -0
  699. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/lib/diff/lcs/ldiff.rb +210 -0
  700. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/lib/diff/lcs/string.rb +19 -0
  701. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/spec/diff_spec.rb +35 -0
  702. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/spec/lcs_spec.rb +36 -0
  703. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/spec/patch_spec.rb +390 -0
  704. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/spec/sdiff_spec.rb +204 -0
  705. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/spec/spec_helper.rb +284 -0
  706. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/spec/traverse_balanced_spec.rb +286 -0
  707. data/vendor/gems/ruby/1.8/gems/diff-lcs-1.1.3/spec/traverse_sequences_spec.rb +83 -0
  708. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/CHANGELOG +909 -0
  709. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/CONTRIBUTING.md +237 -0
  710. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/INSTALL +7 -0
  711. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/LICENSE +15 -0
  712. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/README.md +24 -0
  713. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/Rakefile +112 -0
  714. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/bin/facter +60 -0
  715. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/conf/osx/PackageInfo.plist +36 -0
  716. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/conf/osx/createpackage.sh +179 -0
  717. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/conf/osx/preflight +16 -0
  718. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/conf/redhat/facter.spec +200 -0
  719. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/conf/solaris/pkginfo +7 -0
  720. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/etc/facter.conf +5 -0
  721. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/install.rb +442 -0
  722. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter.rb +248 -0
  723. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/Cfkey.rb +42 -0
  724. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/application.rb +123 -0
  725. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/architecture.rb +37 -0
  726. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/arp.rb +28 -0
  727. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/augeasversion.rb +28 -0
  728. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/domain.rb +68 -0
  729. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/ec2.rb +34 -0
  730. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/facterversion.rb +12 -0
  731. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/fqdn.rb +22 -0
  732. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/hardwareisa.rb +15 -0
  733. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/hardwaremodel.rb +61 -0
  734. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/hostname.rb +33 -0
  735. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/id.rb +21 -0
  736. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/interfaces.rb +41 -0
  737. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/ipaddress.rb +160 -0
  738. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/ipaddress6.rb +72 -0
  739. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/iphostnumber.rb +29 -0
  740. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/kernel.rb +22 -0
  741. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/kernelmajversion.rb +15 -0
  742. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/kernelrelease.rb +34 -0
  743. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/kernelversion.rb +22 -0
  744. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/lsbdistcodename.rb +18 -0
  745. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/lsbdistdescription.rb +21 -0
  746. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/lsbdistid.rb +18 -0
  747. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/lsbdistrelease.rb +18 -0
  748. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/lsbmajdistrelease.rb +27 -0
  749. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/lsbrelease.rb +18 -0
  750. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/macaddress.rb +83 -0
  751. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/macosx.rb +56 -0
  752. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/manufacturer.rb +62 -0
  753. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/memory.rb +275 -0
  754. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/netmask.rb +23 -0
  755. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/network.rb +20 -0
  756. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/operatingsystem.rb +106 -0
  757. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/operatingsystemrelease.rb +142 -0
  758. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/osfamily.rb +31 -0
  759. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/path.rb +14 -0
  760. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/physicalprocessorcount.rb +72 -0
  761. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/processor.rb +174 -0
  762. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/ps.rb +25 -0
  763. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/puppetversion.rb +20 -0
  764. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/rubysitedir.rb +18 -0
  765. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/rubyversion.rb +12 -0
  766. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/selinux.rb +107 -0
  767. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/ssh.rb +31 -0
  768. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/timezone.rb +14 -0
  769. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/uniqueid.rb +4 -0
  770. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/uptime.rb +34 -0
  771. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/uptime_days.rb +15 -0
  772. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/uptime_hours.rb +15 -0
  773. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/uptime_seconds.rb +24 -0
  774. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/collection.rb +129 -0
  775. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/config.rb +9 -0
  776. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/confine.rb +41 -0
  777. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/ec2.rb +55 -0
  778. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/fact.rb +125 -0
  779. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/ip.rb +202 -0
  780. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/loader.rb +112 -0
  781. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/macaddress.rb +49 -0
  782. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/macosx.rb +61 -0
  783. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/manufacturer.rb +104 -0
  784. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/memory.rb +85 -0
  785. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/monkey_patches.rb +7 -0
  786. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/netmask.rb +40 -0
  787. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/plist.rb +24 -0
  788. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/plist/generator.rb +228 -0
  789. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/plist/parser.rb +226 -0
  790. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/processor.rb +107 -0
  791. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/registry.rb +11 -0
  792. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/resolution.rb +258 -0
  793. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/uptime.rb +65 -0
  794. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/values.rb +14 -0
  795. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/virtual.rb +86 -0
  796. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/vlans.rb +24 -0
  797. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/wmi.rb +16 -0
  798. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/util/xendomains.rb +10 -0
  799. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/virtual.rb +179 -0
  800. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/vlans.rb +17 -0
  801. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/lib/facter/xendomains.rb +20 -0
  802. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/cpuinfo/amd64dual +57 -0
  803. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/cpuinfo/amd64quad +79 -0
  804. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/cpuinfo/amd64solo +23 -0
  805. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/cpuinfo/amd64tri +86 -0
  806. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/cpuinfo/bbg3-armel +12 -0
  807. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/cpuinfo/beaglexm-armel +12 -0
  808. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/cpuinfo/panda-armel +17 -0
  809. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/cpuinfo/ppc64 +19 -0
  810. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/cpuinfo/sparc +10 -0
  811. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/bsd_ifconfig_all_with_multiple_interfaces +18 -0
  812. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/centos_5_5 +17 -0
  813. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/centos_5_5_eth0 +8 -0
  814. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/darwin_10_3_0 +26 -0
  815. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/darwin_10_3_0_en0 +6 -0
  816. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/darwin_10_6_4 +28 -0
  817. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/darwin_10_6_4_en1 +6 -0
  818. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/darwin_10_6_6_dualstack +8 -0
  819. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/darwin_10_6_6_dualstack_en1 +7 -0
  820. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/darwin_9_8_0 +26 -0
  821. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/darwin_9_8_0_en0 +6 -0
  822. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/darwin_ifconfig_all_with_multiple_interfaces +23 -0
  823. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/fedora_10 +36 -0
  824. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/fedora_10_eth0 +9 -0
  825. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/fedora_13 +18 -0
  826. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/fedora_13_eth0 +9 -0
  827. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/fedora_8 +38 -0
  828. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/fedora_8_eth0 +9 -0
  829. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/freebsd_6_0 +12 -0
  830. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces +19 -0
  831. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/linux_ifconfig_no_mac +8 -0
  832. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/linux_ifconfig_venet +24 -0
  833. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/open_solaris_10 +12 -0
  834. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/open_solaris_b132 +20 -0
  835. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/sunos_ifconfig_all_with_multiple_interfaces +10 -0
  836. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/ubuntu_7_04 +38 -0
  837. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/ifconfig/ubuntu_7_04_eth0 +9 -0
  838. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/netsh/windows_netsh_addresses_with_multiple_interfaces +35 -0
  839. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/netstat/centos_5_5 +5 -0
  840. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/netstat/darwin_10_3_0 +35 -0
  841. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/netstat/darwin_10_6_4 +29 -0
  842. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/netstat/darwin_10_6_6_dualstack +34 -0
  843. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/netstat/darwin_9_8_0 +28 -0
  844. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/netstat/fedora_10 +7 -0
  845. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/netstat/open_solaris_10 +16 -0
  846. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/netstat/open_solaris_b132 +17 -0
  847. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/netstat/ubuntu_7_04 +7 -0
  848. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/processorcount/solaris-sparc-kstat-cpu-info +1216 -0
  849. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/processorcount/solaris-x86_64-kstat-cpu-info +225 -0
  850. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/selinux/selinux_sestatus +6 -0
  851. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/ec2/centos-arp-ec2.out +1 -0
  852. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/ec2/linux-arp-ec2.out +1 -0
  853. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/ec2/linux-arp-not-ec2.out +5 -0
  854. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/ec2/windows-2008-arp-a-not-ec2.out +6 -0
  855. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/ec2/windows-2008-arp-a.out +10 -0
  856. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/ip/6.0-STABLE_FreeBSD_ifconfig +12 -0
  857. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/ip/Mac_OS_X_10.5.5_ifconfig +26 -0
  858. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/ip/darwin_ifconfig_all_with_multiple_interfaces +10 -0
  859. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/ip/darwin_ifconfig_single_interface +6 -0
  860. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/ip/debian_kfreebsd_ifconfig +40 -0
  861. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/ip/hpux_ifconfig_single_interface +3 -0
  862. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/ip/hpux_netstat_all_interfaces +3 -0
  863. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/ip/linux_ifconfig_all_with_single_interface +18 -0
  864. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/ip/solaris_ifconfig_all_with_multiple_interfaces +8 -0
  865. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/ip/solaris_ifconfig_single_interface +3 -0
  866. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/ip/windows_netsh_all_interfaces +12 -0
  867. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/ip/windows_netsh_single_interface +7 -0
  868. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/ip/windows_netsh_single_interface6 +18 -0
  869. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/loader/nosuchfact.rb +1 -0
  870. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/manufacturer/freebsd_dmidecode +42 -0
  871. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/manufacturer/linux_dmidecode_with_spaces +60 -0
  872. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/manufacturer/opensolaris_smbios +33 -0
  873. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/manufacturer/solaris_sunfire_v120_prtdiag +33 -0
  874. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/manufacturer/solaris_t5220_prtdiag +136 -0
  875. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/processor/solaris-i86pc +28 -0
  876. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/processor/solaris-sun4u +151 -0
  877. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/uptime/kstat_boot_time +1 -0
  878. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/uptime/sysctl_kern_boottime_darwin +1 -0
  879. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/uptime/sysctl_kern_boottime_openbsd +1 -0
  880. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/uptime/ubuntu_proc_uptime +1 -0
  881. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/uptime/who_b_boottime +1 -0
  882. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/vlans/linux_vlan_config +6 -0
  883. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/unit/util/xendomains/xendomains +4 -0
  884. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/virtual/proc_self_status/vserver_2_1/guest +37 -0
  885. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/virtual/proc_self_status/vserver_2_1/host +36 -0
  886. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/virtual/proc_self_status/vserver_2_3/guest +39 -0
  887. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/fixtures/virtual/proc_self_status/vserver_2_3/host +39 -0
  888. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/integration/facter_spec.rb +27 -0
  889. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/puppetlabs_spec/files.rb +57 -0
  890. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/puppetlabs_spec/fixtures.rb +49 -0
  891. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/puppetlabs_spec/matchers.rb +87 -0
  892. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/puppetlabs_spec/verbose.rb +9 -0
  893. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/puppetlabs_spec_helper.rb +26 -0
  894. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/shared_contexts/platform.rb +55 -0
  895. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/spec_helper.rb +41 -0
  896. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/architecture_spec.rb +54 -0
  897. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/domain_spec.rb +136 -0
  898. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/ec2_spec.rb +170 -0
  899. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/facter_spec.rb +274 -0
  900. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/hardwareisa_spec.rb +34 -0
  901. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/hardwaremodel_spec.rb +34 -0
  902. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/hostname_spec.rb +40 -0
  903. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/id_spec.rb +28 -0
  904. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/interfaces_spec.rb +21 -0
  905. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/ipaddress6_spec.rb +52 -0
  906. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/lsbdistcodename_spec.rb +25 -0
  907. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/lsbdistdescription_spec.rb +25 -0
  908. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/lsbdistid_spec.rb +25 -0
  909. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/lsbdistrelease_spec.rb +25 -0
  910. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/lsbmajdistrelease_spec.rb +13 -0
  911. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/lsbrelease_spec.rb +25 -0
  912. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/macaddress_spec.rb +59 -0
  913. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/memory_spec.rb +155 -0
  914. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/operatingsystem_spec.rb +127 -0
  915. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/operatingsystemrelease_spec.rb +59 -0
  916. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/physicalprocessorcount_spec.rb +57 -0
  917. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/processor_spec.rb +246 -0
  918. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/selinux_spec.rb +133 -0
  919. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/uniqueid_spec.rb +27 -0
  920. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/uptime_spec.rb +110 -0
  921. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/util/collection_spec.rb +264 -0
  922. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/util/config_spec.rb +24 -0
  923. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/util/confine_spec.rb +139 -0
  924. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/util/ec2_spec.rb +135 -0
  925. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/util/fact_spec.rb +128 -0
  926. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/util/ip_spec.rb +271 -0
  927. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/util/loader_spec.rb +289 -0
  928. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/util/macaddress_spec.rb +99 -0
  929. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/util/macosx_spec.rb +80 -0
  930. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/util/manufacturer_spec.rb +169 -0
  931. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/util/processor_spec.rb +83 -0
  932. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/util/registry_spec.rb +76 -0
  933. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/util/resolution_spec.rb +568 -0
  934. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/util/uptime_spec.rb +85 -0
  935. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/util/virtual_spec.rb +183 -0
  936. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/util/vlans_spec.rb +12 -0
  937. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/util/wmi_spec.rb +19 -0
  938. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/util/xendomains_spec.rb +21 -0
  939. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/unit/virtual_spec.rb +337 -0
  940. data/vendor/gems/ruby/1.8/gems/facter-1.6.11/spec/watchr.rb +125 -0
  941. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/History.txt +1 -0
  942. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/LICENSE +14 -0
  943. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/README.rdoc +102 -0
  944. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/Rakefile +196 -0
  945. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/AbstractMemory.c +1028 -0
  946. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/AbstractMemory.h +166 -0
  947. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/AbstractMemory.o +0 -0
  948. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/ArrayType.c +149 -0
  949. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/ArrayType.h +50 -0
  950. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/ArrayType.o +0 -0
  951. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Buffer.c +356 -0
  952. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Buffer.o +0 -0
  953. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Call.c +458 -0
  954. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Call.h +84 -0
  955. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Call.o +0 -0
  956. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/ClosurePool.c +275 -0
  957. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/ClosurePool.h +48 -0
  958. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/ClosurePool.o +0 -0
  959. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/DataConverter.c +91 -0
  960. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/DataConverter.o +0 -0
  961. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/DynamicLibrary.c +315 -0
  962. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/DynamicLibrary.h +40 -0
  963. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/DynamicLibrary.o +0 -0
  964. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Ffi_c.iml +12 -0
  965. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Function.c +965 -0
  966. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Function.h +79 -0
  967. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Function.o +0 -0
  968. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/FunctionInfo.c +236 -0
  969. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/FunctionInfo.o +0 -0
  970. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/LastError.c +176 -0
  971. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/LastError.h +38 -0
  972. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/LastError.o +0 -0
  973. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/LongDouble.c +59 -0
  974. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/LongDouble.h +42 -0
  975. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/LongDouble.o +0 -0
  976. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Makefile +157 -0
  977. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/MappedType.c +161 -0
  978. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/MappedType.h +50 -0
  979. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/MappedType.o +0 -0
  980. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/MemoryPointer.c +167 -0
  981. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/MemoryPointer.h +46 -0
  982. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/MemoryPointer.o +0 -0
  983. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/MethodHandle.c +349 -0
  984. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/MethodHandle.h +46 -0
  985. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/MethodHandle.o +0 -0
  986. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Platform.c +112 -0
  987. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Platform.h +36 -0
  988. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Platform.o +0 -0
  989. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Pointer.c +490 -0
  990. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Pointer.h +56 -0
  991. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Pointer.o +0 -0
  992. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Struct.c +704 -0
  993. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Struct.h +97 -0
  994. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Struct.o +0 -0
  995. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/StructByReference.c +158 -0
  996. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/StructByReference.h +50 -0
  997. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/StructByReference.o +0 -0
  998. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/StructByValue.c +142 -0
  999. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/StructByValue.h +46 -0
  1000. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/StructByValue.o +0 -0
  1001. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/StructLayout.c +555 -0
  1002. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/StructLayout.o +0 -0
  1003. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Thread.c +326 -0
  1004. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Thread.h +79 -0
  1005. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Thread.o +0 -0
  1006. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Type.c +385 -0
  1007. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Type.h +47 -0
  1008. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Type.o +0 -0
  1009. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Types.c +130 -0
  1010. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Types.h +79 -0
  1011. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Types.o +0 -0
  1012. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Variadic.c +264 -0
  1013. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/Variadic.o +0 -0
  1014. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/compat.h +74 -0
  1015. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/conftest.dSYM/Contents/Info.plist +20 -0
  1016. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1017. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/extconf.h +4 -0
  1018. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/extconf.rb +61 -0
  1019. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/ffi.c +86 -0
  1020. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/ffi.o +0 -0
  1021. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/ffi_c.bundle +0 -0
  1022. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi.bsd.mk +34 -0
  1023. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi.darwin.mk +93 -0
  1024. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi.gnu.mk +31 -0
  1025. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi.mk +13 -0
  1026. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi.vc.mk +26 -0
  1027. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi.vc64.mk +26 -0
  1028. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/ChangeLog +4600 -0
  1029. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/ChangeLog.libffi +584 -0
  1030. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/ChangeLog.libgcj +40 -0
  1031. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/ChangeLog.v1 +764 -0
  1032. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/LICENSE +21 -0
  1033. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/Makefile.am +196 -0
  1034. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/Makefile.in +1820 -0
  1035. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/Makefile.vc +141 -0
  1036. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/Makefile.vc64 +141 -0
  1037. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/README +342 -0
  1038. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/acinclude.m4 +92 -0
  1039. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/aclocal.m4 +1873 -0
  1040. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/build-ios.sh +67 -0
  1041. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/compile +143 -0
  1042. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/config.guess +1501 -0
  1043. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/config.sub +1705 -0
  1044. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/configure +17191 -0
  1045. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/configure.ac +496 -0
  1046. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/configure.host +11 -0
  1047. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/depcomp +630 -0
  1048. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/doc/libffi.info +593 -0
  1049. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/doc/libffi.texi +600 -0
  1050. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/doc/stamp-vti +4 -0
  1051. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/doc/version.texi +4 -0
  1052. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/fficonfig.h.in +199 -0
  1053. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/fficonfig.hw +57 -0
  1054. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/include/Makefile.am +9 -0
  1055. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/include/Makefile.in +487 -0
  1056. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/include/ffi.h.in +427 -0
  1057. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/include/ffi.h.vc +427 -0
  1058. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/include/ffi.h.vc64 +427 -0
  1059. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/include/ffi_common.h +126 -0
  1060. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/install-sh +520 -0
  1061. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/libffi.pc.in +10 -0
  1062. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/libtool-version +29 -0
  1063. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/ltmain.sh +9636 -0
  1064. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +176 -0
  1065. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +195 -0
  1066. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/m4/ax_check_compiler_flags.m4 +76 -0
  1067. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +63 -0
  1068. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/m4/ax_configure_args.m4 +70 -0
  1069. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +300 -0
  1070. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +215 -0
  1071. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +79 -0
  1072. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/m4/libtool.m4 +7831 -0
  1073. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/m4/ltoptions.m4 +369 -0
  1074. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/m4/ltsugar.m4 +123 -0
  1075. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/m4/ltversion.m4 +23 -0
  1076. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/m4/lt~obsolete.m4 +98 -0
  1077. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/man/Makefile.am +8 -0
  1078. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/man/Makefile.in +466 -0
  1079. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/man/ffi.3 +31 -0
  1080. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/man/ffi_call.3 +103 -0
  1081. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/man/ffi_prep_cif.3 +66 -0
  1082. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/mdate-sh +201 -0
  1083. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/missing +376 -0
  1084. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/msvcc.sh +197 -0
  1085. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/alpha/ffi.c +284 -0
  1086. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/alpha/ffitarget.h +48 -0
  1087. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/alpha/osf.S +387 -0
  1088. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/arm/ffi.c +728 -0
  1089. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/arm/ffitarget.h +65 -0
  1090. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/arm/gentramp.sh +118 -0
  1091. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/arm/sysv.S +497 -0
  1092. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/arm/trampoline.S +4450 -0
  1093. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/avr32/ffi.c +423 -0
  1094. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/avr32/ffitarget.h +50 -0
  1095. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/avr32/sysv.S +208 -0
  1096. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/closures.c +615 -0
  1097. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/cris/ffi.c +383 -0
  1098. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/cris/ffitarget.h +51 -0
  1099. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/cris/sysv.S +215 -0
  1100. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/debug.c +59 -0
  1101. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/dlmalloc.c +5161 -0
  1102. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/frv/eabi.S +128 -0
  1103. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/frv/ffi.c +292 -0
  1104. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/frv/ffitarget.h +57 -0
  1105. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/ia64/ffi.c +582 -0
  1106. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/ia64/ffitarget.h +50 -0
  1107. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/ia64/ia64_flags.h +40 -0
  1108. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/ia64/unix.S +560 -0
  1109. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/java_raw_api.c +356 -0
  1110. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/m32r/ffi.c +232 -0
  1111. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/m32r/ffitarget.h +48 -0
  1112. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/m32r/sysv.S +121 -0
  1113. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/m68k/ffi.c +288 -0
  1114. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/m68k/ffitarget.h +49 -0
  1115. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/m68k/sysv.S +270 -0
  1116. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/mips/ffi.c +1036 -0
  1117. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/mips/ffitarget.h +242 -0
  1118. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/mips/n32.S +591 -0
  1119. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/mips/o32.S +381 -0
  1120. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/moxie/eabi.S +128 -0
  1121. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/moxie/ffi.c +276 -0
  1122. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/pa/ffi.c +719 -0
  1123. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/pa/ffitarget.h +78 -0
  1124. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/pa/hpux32.S +368 -0
  1125. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/pa/linux.S +357 -0
  1126. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/powerpc/aix.S +328 -0
  1127. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/powerpc/aix_closure.S +445 -0
  1128. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
  1129. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/powerpc/darwin.S +383 -0
  1130. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +575 -0
  1131. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/powerpc/ffi.c +1448 -0
  1132. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +1359 -0
  1133. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/powerpc/ffitarget.h +139 -0
  1134. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/powerpc/linux64.S +187 -0
  1135. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +236 -0
  1136. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +327 -0
  1137. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/powerpc/sysv.S +219 -0
  1138. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/prep_cif.c +177 -0
  1139. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/raw_api.c +254 -0
  1140. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/s390/ffi.c +780 -0
  1141. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/s390/ffitarget.h +62 -0
  1142. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/s390/sysv.S +434 -0
  1143. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/sh/ffi.c +716 -0
  1144. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/sh/ffitarget.h +49 -0
  1145. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/sh/sysv.S +850 -0
  1146. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/sh64/ffi.c +468 -0
  1147. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/sh64/ffitarget.h +53 -0
  1148. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/sh64/sysv.S +539 -0
  1149. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/sparc/ffi.c +669 -0
  1150. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/sparc/ffitarget.h +68 -0
  1151. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/sparc/v8.S +313 -0
  1152. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/sparc/v9.S +307 -0
  1153. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/types.c +77 -0
  1154. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/x86/darwin.S +444 -0
  1155. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/x86/darwin64.S +416 -0
  1156. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/x86/ffi.c +644 -0
  1157. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/x86/ffi64.c +635 -0
  1158. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/x86/ffitarget.h +121 -0
  1159. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/x86/freebsd.S +458 -0
  1160. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/x86/sysv.S +468 -0
  1161. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/x86/unix64.S +426 -0
  1162. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/x86/win32.S +1065 -0
  1163. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/src/x86/win64.S +468 -0
  1164. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/Makefile.am +80 -0
  1165. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/Makefile.in +500 -0
  1166. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
  1167. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +300 -0
  1168. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/lib/libffi.exp +350 -0
  1169. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +263 -0
  1170. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +45 -0
  1171. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +32 -0
  1172. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +89 -0
  1173. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +81 -0
  1174. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +81 -0
  1175. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +82 -0
  1176. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +89 -0
  1177. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +92 -0
  1178. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +90 -0
  1179. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c +95 -0
  1180. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/closure_stdcall.c +64 -0
  1181. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +94 -0
  1182. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +95 -0
  1183. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +96 -0
  1184. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +102 -0
  1185. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +89 -0
  1186. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +91 -0
  1187. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +93 -0
  1188. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +113 -0
  1189. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +90 -0
  1190. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +95 -0
  1191. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +90 -0
  1192. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +90 -0
  1193. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +98 -0
  1194. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +90 -0
  1195. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +109 -0
  1196. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +98 -0
  1197. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +124 -0
  1198. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +113 -0
  1199. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +99 -0
  1200. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +117 -0
  1201. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +97 -0
  1202. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +88 -0
  1203. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +90 -0
  1204. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +91 -0
  1205. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +93 -0
  1206. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +91 -0
  1207. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +92 -0
  1208. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +134 -0
  1209. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +117 -0
  1210. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +95 -0
  1211. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +91 -0
  1212. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +91 -0
  1213. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +92 -0
  1214. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +91 -0
  1215. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +91 -0
  1216. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +93 -0
  1217. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +66 -0
  1218. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +43 -0
  1219. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +60 -0
  1220. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +42 -0
  1221. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +105 -0
  1222. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +60 -0
  1223. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +74 -0
  1224. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +74 -0
  1225. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +86 -0
  1226. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +91 -0
  1227. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +74 -0
  1228. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +86 -0
  1229. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +74 -0
  1230. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +140 -0
  1231. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +44 -0
  1232. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +42 -0
  1233. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +42 -0
  1234. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +42 -0
  1235. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +43 -0
  1236. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +47 -0
  1237. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +43 -0
  1238. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +36 -0
  1239. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +26 -0
  1240. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +153 -0
  1241. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/float.c +59 -0
  1242. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +58 -0
  1243. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +58 -0
  1244. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +72 -0
  1245. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +62 -0
  1246. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +342 -0
  1247. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/many.c +69 -0
  1248. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +63 -0
  1249. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +53 -0
  1250. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +152 -0
  1251. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +161 -0
  1252. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +133 -0
  1253. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +110 -0
  1254. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +111 -0
  1255. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +111 -0
  1256. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +112 -0
  1257. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +131 -0
  1258. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +111 -0
  1259. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +131 -0
  1260. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +131 -0
  1261. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +90 -0
  1262. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +59 -0
  1263. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +114 -0
  1264. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +35 -0
  1265. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +43 -0
  1266. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +42 -0
  1267. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +35 -0
  1268. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +36 -0
  1269. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +49 -0
  1270. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +42 -0
  1271. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +34 -0
  1272. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +41 -0
  1273. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +43 -0
  1274. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +36 -0
  1275. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +38 -0
  1276. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +38 -0
  1277. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +38 -0
  1278. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +145 -0
  1279. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +148 -0
  1280. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +124 -0
  1281. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +125 -0
  1282. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +44 -0
  1283. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +44 -0
  1284. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +65 -0
  1285. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +67 -0
  1286. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +59 -0
  1287. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +63 -0
  1288. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +65 -0
  1289. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +64 -0
  1290. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +74 -0
  1291. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +80 -0
  1292. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +67 -0
  1293. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +70 -0
  1294. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +96 -0
  1295. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.special/special.exp +35 -0
  1296. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest.cc +124 -0
  1297. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest_ffi_call.cc +53 -0
  1298. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/libffi/texinfo.tex +7210 -0
  1299. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/mkmf.log +190 -0
  1300. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/rbffi.h +47 -0
  1301. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/rbffi_endian.h +50 -0
  1302. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/ext/ffi_c/win32/stdint.h +199 -0
  1303. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/gen/Rakefile +30 -0
  1304. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/gen/log +1 -0
  1305. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/Lib.iml +13 -0
  1306. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi.rb +15 -0
  1307. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/autopointer.rb +183 -0
  1308. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/buffer.rb +4 -0
  1309. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/callback.rb +4 -0
  1310. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/enum.rb +161 -0
  1311. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/errno.rb +33 -0
  1312. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/ffi.rb +33 -0
  1313. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/io.rb +52 -0
  1314. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/library.rb +485 -0
  1315. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/managedstruct.rb +55 -0
  1316. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/memorypointer.rb +1 -0
  1317. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform.rb +130 -0
  1318. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/arm-linux/types.conf +104 -0
  1319. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/i386-darwin/types.conf +100 -0
  1320. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/i386-freebsd/types.conf +152 -0
  1321. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/i386-linux/types.conf +103 -0
  1322. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/i386-netbsd/types.conf +126 -0
  1323. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/i386-openbsd/types.conf +126 -0
  1324. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/i386-solaris/types.conf +122 -0
  1325. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/i386-windows/types.conf +105 -0
  1326. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/i486-gnu/types.conf +107 -0
  1327. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/ia64-linux/types.conf +104 -0
  1328. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/mips-linux/types.conf +102 -0
  1329. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/mipsel-linux/types.conf +102 -0
  1330. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/powerpc-aix/types.conf +180 -0
  1331. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
  1332. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/powerpc-linux/types.conf +100 -0
  1333. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/s390-linux/types.conf +102 -0
  1334. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/s390x-linux/types.conf +102 -0
  1335. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/sparc-linux/types.conf +102 -0
  1336. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/sparc-solaris/types.conf +128 -0
  1337. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
  1338. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/x86_64-darwin/types.conf +100 -0
  1339. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/x86_64-freebsd/types.conf +126 -0
  1340. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/x86_64-linux/types.conf +102 -0
  1341. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/x86_64-netbsd/types.conf +126 -0
  1342. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/x86_64-openbsd/types.conf +126 -0
  1343. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
  1344. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/pointer.rb +122 -0
  1345. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/struct.rb +283 -0
  1346. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/struct_layout_builder.rb +162 -0
  1347. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/tools/const_generator.rb +229 -0
  1348. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/tools/generator.rb +58 -0
  1349. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/tools/generator_task.rb +35 -0
  1350. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/tools/struct_generator.rb +194 -0
  1351. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/tools/types_generator.rb +133 -0
  1352. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/types.rb +177 -0
  1353. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/union.rb +32 -0
  1354. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi/variadic.rb +65 -0
  1355. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/lib/ffi_c.bundle +0 -0
  1356. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/Ffi.iml +12 -0
  1357. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/async_callback_spec.rb +46 -0
  1358. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/bool_spec.rb +40 -0
  1359. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/buffer_spec.rb +215 -0
  1360. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/callback_spec.rb +668 -0
  1361. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/custom_param_type.rb +47 -0
  1362. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/custom_type_spec.rb +85 -0
  1363. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/dup_spec.rb +65 -0
  1364. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/enum_spec.rb +227 -0
  1365. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/errno_spec.rb +29 -0
  1366. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/ffi_spec.rb +40 -0
  1367. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/function_spec.rb +87 -0
  1368. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/library_spec.rb +208 -0
  1369. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/long_double.rb +41 -0
  1370. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/managed_struct_spec.rb +72 -0
  1371. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/number_spec.rb +247 -0
  1372. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/pointer_spec.rb +214 -0
  1373. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/rbx/attach_function_spec.rb +28 -0
  1374. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/rbx/memory_pointer_spec.rb +115 -0
  1375. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/rbx/spec_helper.rb +1 -0
  1376. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/rbx/struct_spec.rb +13 -0
  1377. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/spec_helper.rb +35 -0
  1378. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/string_spec.rb +119 -0
  1379. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/strptr_spec.rb +61 -0
  1380. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/struct_callback_spec.rb +80 -0
  1381. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/struct_initialize_spec.rb +46 -0
  1382. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/struct_packed_spec.rb +62 -0
  1383. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/struct_spec.rb +719 -0
  1384. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/typedef_spec.rb +89 -0
  1385. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/union_spec.rb +76 -0
  1386. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/ffi/variadic_spec.rb +103 -0
  1387. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/spec/spec.opts +4 -0
  1388. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/tasks/ann.rake +80 -0
  1389. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/tasks/extension.rake +32 -0
  1390. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/tasks/gem.rake +199 -0
  1391. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/tasks/git.rake +41 -0
  1392. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/tasks/notes.rake +27 -0
  1393. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/tasks/post_load.rake +34 -0
  1394. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/tasks/rdoc.rake +50 -0
  1395. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/tasks/rubyforge.rake +55 -0
  1396. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/tasks/setup.rb +301 -0
  1397. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/tasks/spec.rake +54 -0
  1398. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/tasks/svn.rake +47 -0
  1399. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/tasks/test.rake +40 -0
  1400. data/vendor/gems/ruby/1.8/gems/ffi-1.1.5/tasks/yard.rake +11 -0
  1401. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/Gemfile +5 -0
  1402. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/History.md +788 -0
  1403. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/LICENSE +20 -0
  1404. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/README.md +272 -0
  1405. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/Rakefile +26 -0
  1406. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/build_native_gems.sh +7 -0
  1407. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/cucumber.yml +4 -0
  1408. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/examples/parse_and_output_json.rb +19 -0
  1409. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ar/Makefile +157 -0
  1410. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ar/conftest.dSYM/Contents/Info.plist +20 -0
  1411. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ar/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1412. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ar/extconf.rb +6 -0
  1413. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ar/gherkin_lexer_ar.bundle +0 -0
  1414. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ar/gherkin_lexer_ar.c +1432 -0
  1415. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ar/gherkin_lexer_ar.o +0 -0
  1416. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ar/mkmf.log +12 -0
  1417. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_bg/Makefile +157 -0
  1418. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_bg/conftest.dSYM/Contents/Info.plist +20 -0
  1419. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_bg/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1420. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_bg/extconf.rb +6 -0
  1421. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_bg/gherkin_lexer_bg.bundle +0 -0
  1422. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_bg/gherkin_lexer_bg.c +1655 -0
  1423. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_bg/gherkin_lexer_bg.o +0 -0
  1424. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_bg/mkmf.log +12 -0
  1425. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_bm/Makefile +157 -0
  1426. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_bm/conftest.dSYM/Contents/Info.plist +20 -0
  1427. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_bm/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1428. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_bm/extconf.rb +6 -0
  1429. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_bm/gherkin_lexer_bm.bundle +0 -0
  1430. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_bm/gherkin_lexer_bm.c +1337 -0
  1431. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_bm/gherkin_lexer_bm.o +0 -0
  1432. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_bm/mkmf.log +12 -0
  1433. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ca/Makefile +157 -0
  1434. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ca/conftest.dSYM/Contents/Info.plist +20 -0
  1435. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ca/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1436. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ca/extconf.rb +6 -0
  1437. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ca/gherkin_lexer_ca.bundle +0 -0
  1438. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ca/gherkin_lexer_ca.c +1581 -0
  1439. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ca/gherkin_lexer_ca.o +0 -0
  1440. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ca/mkmf.log +12 -0
  1441. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_cs/Makefile +157 -0
  1442. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_cs/conftest.dSYM/Contents/Info.plist +20 -0
  1443. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_cs/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1444. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_cs/extconf.rb +6 -0
  1445. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_cs/gherkin_lexer_cs.bundle +0 -0
  1446. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_cs/gherkin_lexer_cs.c +1427 -0
  1447. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_cs/gherkin_lexer_cs.o +0 -0
  1448. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_cs/mkmf.log +12 -0
  1449. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_cy_gb/Makefile +157 -0
  1450. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_cy_gb/conftest.dSYM/Contents/Info.plist +20 -0
  1451. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_cy_gb/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1452. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_cy_gb/extconf.rb +6 -0
  1453. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_cy_gb/gherkin_lexer_cy_gb.bundle +0 -0
  1454. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_cy_gb/gherkin_lexer_cy_gb.c +1282 -0
  1455. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_cy_gb/gherkin_lexer_cy_gb.o +0 -0
  1456. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_cy_gb/mkmf.log +12 -0
  1457. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_da/Makefile +157 -0
  1458. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_da/conftest.dSYM/Contents/Info.plist +20 -0
  1459. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_da/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1460. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_da/extconf.rb +6 -0
  1461. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_da/gherkin_lexer_da.bundle +0 -0
  1462. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_da/gherkin_lexer_da.c +1298 -0
  1463. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_da/gherkin_lexer_da.o +0 -0
  1464. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_da/mkmf.log +12 -0
  1465. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_de/Makefile +157 -0
  1466. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_de/conftest.dSYM/Contents/Info.plist +20 -0
  1467. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_de/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1468. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_de/extconf.rb +6 -0
  1469. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_de/gherkin_lexer_de.bundle +0 -0
  1470. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_de/gherkin_lexer_de.c +1415 -0
  1471. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_de/gherkin_lexer_de.o +0 -0
  1472. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_de/mkmf.log +12 -0
  1473. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en/Makefile +157 -0
  1474. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en/conftest.dSYM/Contents/Info.plist +20 -0
  1475. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1476. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en/extconf.rb +6 -0
  1477. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en/gherkin_lexer_en.bundle +0 -0
  1478. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en/gherkin_lexer_en.c +1418 -0
  1479. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en/gherkin_lexer_en.o +0 -0
  1480. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en/mkmf.log +12 -0
  1481. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_au/Makefile +157 -0
  1482. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_au/conftest.dSYM/Contents/Info.plist +20 -0
  1483. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_au/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1484. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_au/extconf.rb +6 -0
  1485. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_au/gherkin_lexer_en_au.bundle +0 -0
  1486. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_au/gherkin_lexer_en_au.c +1223 -0
  1487. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_au/gherkin_lexer_en_au.o +0 -0
  1488. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_au/mkmf.log +12 -0
  1489. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_lol/Makefile +157 -0
  1490. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_lol/conftest.dSYM/Contents/Info.plist +20 -0
  1491. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_lol/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1492. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_lol/extconf.rb +6 -0
  1493. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_lol/gherkin_lexer_en_lol.bundle +0 -0
  1494. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_lol/gherkin_lexer_en_lol.c +1177 -0
  1495. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_lol/gherkin_lexer_en_lol.o +0 -0
  1496. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_lol/mkmf.log +12 -0
  1497. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_pirate/Makefile +157 -0
  1498. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_pirate/conftest.dSYM/Contents/Info.plist +20 -0
  1499. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_pirate/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1500. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_pirate/extconf.rb +6 -0
  1501. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_pirate/gherkin_lexer_en_pirate.bundle +0 -0
  1502. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_pirate/gherkin_lexer_en_pirate.c +1471 -0
  1503. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_pirate/gherkin_lexer_en_pirate.o +0 -0
  1504. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_pirate/mkmf.log +12 -0
  1505. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_scouse/Makefile +157 -0
  1506. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_scouse/conftest.dSYM/Contents/Info.plist +20 -0
  1507. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_scouse/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1508. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_scouse/extconf.rb +6 -0
  1509. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_scouse/gherkin_lexer_en_scouse.bundle +0 -0
  1510. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_scouse/gherkin_lexer_en_scouse.c +1634 -0
  1511. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_scouse/gherkin_lexer_en_scouse.o +0 -0
  1512. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_scouse/mkmf.log +12 -0
  1513. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_tx/Makefile +157 -0
  1514. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_tx/conftest.dSYM/Contents/Info.plist +20 -0
  1515. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_tx/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1516. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_tx/extconf.rb +6 -0
  1517. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_tx/gherkin_lexer_en_tx.bundle +0 -0
  1518. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_tx/gherkin_lexer_en_tx.c +1265 -0
  1519. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_tx/gherkin_lexer_en_tx.o +0 -0
  1520. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_en_tx/mkmf.log +12 -0
  1521. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_eo/Makefile +157 -0
  1522. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_eo/conftest.dSYM/Contents/Info.plist +20 -0
  1523. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_eo/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1524. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_eo/extconf.rb +6 -0
  1525. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_eo/gherkin_lexer_eo.bundle +0 -0
  1526. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_eo/gherkin_lexer_eo.c +1241 -0
  1527. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_eo/gherkin_lexer_eo.o +0 -0
  1528. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_eo/mkmf.log +12 -0
  1529. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_es/Makefile +157 -0
  1530. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_es/conftest.dSYM/Contents/Info.plist +20 -0
  1531. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_es/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1532. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_es/extconf.rb +6 -0
  1533. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_es/gherkin_lexer_es.bundle +0 -0
  1534. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_es/gherkin_lexer_es.c +1399 -0
  1535. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_es/gherkin_lexer_es.o +0 -0
  1536. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_es/mkmf.log +12 -0
  1537. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_et/Makefile +157 -0
  1538. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_et/conftest.dSYM/Contents/Info.plist +20 -0
  1539. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_et/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1540. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_et/extconf.rb +6 -0
  1541. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_et/gherkin_lexer_et.bundle +0 -0
  1542. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_et/gherkin_lexer_et.c +1236 -0
  1543. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_et/gherkin_lexer_et.o +0 -0
  1544. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_et/mkmf.log +12 -0
  1545. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_fi/Makefile +157 -0
  1546. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_fi/conftest.dSYM/Contents/Info.plist +20 -0
  1547. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_fi/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1548. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_fi/extconf.rb +6 -0
  1549. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_fi/gherkin_lexer_fi.bundle +0 -0
  1550. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_fi/gherkin_lexer_fi.c +1215 -0
  1551. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_fi/gherkin_lexer_fi.o +0 -0
  1552. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_fi/mkmf.log +12 -0
  1553. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_fr/Makefile +157 -0
  1554. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_fr/conftest.dSYM/Contents/Info.plist +20 -0
  1555. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_fr/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1556. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_fr/extconf.rb +6 -0
  1557. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_fr/gherkin_lexer_fr.bundle +0 -0
  1558. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_fr/gherkin_lexer_fr.c +1493 -0
  1559. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_fr/gherkin_lexer_fr.o +0 -0
  1560. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_fr/mkmf.log +12 -0
  1561. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_he/Makefile +157 -0
  1562. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_he/conftest.dSYM/Contents/Info.plist +20 -0
  1563. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_he/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1564. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_he/extconf.rb +6 -0
  1565. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_he/gherkin_lexer_he.bundle +0 -0
  1566. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_he/gherkin_lexer_he.c +1374 -0
  1567. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_he/gherkin_lexer_he.o +0 -0
  1568. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_he/mkmf.log +12 -0
  1569. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_hr/Makefile +157 -0
  1570. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_hr/conftest.dSYM/Contents/Info.plist +20 -0
  1571. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_hr/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1572. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_hr/extconf.rb +6 -0
  1573. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_hr/gherkin_lexer_hr.bundle +0 -0
  1574. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_hr/gherkin_lexer_hr.c +1323 -0
  1575. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_hr/gherkin_lexer_hr.o +0 -0
  1576. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_hr/mkmf.log +12 -0
  1577. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_hu/Makefile +157 -0
  1578. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_hu/conftest.dSYM/Contents/Info.plist +20 -0
  1579. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_hu/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1580. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_hu/extconf.rb +6 -0
  1581. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_hu/gherkin_lexer_hu.bundle +0 -0
  1582. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_hu/gherkin_lexer_hu.c +1376 -0
  1583. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_hu/gherkin_lexer_hu.o +0 -0
  1584. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_hu/mkmf.log +12 -0
  1585. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_id/Makefile +157 -0
  1586. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_id/conftest.dSYM/Contents/Info.plist +20 -0
  1587. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_id/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1588. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_id/extconf.rb +6 -0
  1589. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_id/gherkin_lexer_id.bundle +0 -0
  1590. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_id/gherkin_lexer_id.c +1208 -0
  1591. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_id/gherkin_lexer_id.o +0 -0
  1592. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_id/mkmf.log +12 -0
  1593. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_is/Makefile +157 -0
  1594. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_is/conftest.dSYM/Contents/Info.plist +20 -0
  1595. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_is/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1596. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_is/extconf.rb +6 -0
  1597. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_is/gherkin_lexer_is.bundle +0 -0
  1598. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_is/gherkin_lexer_is.c +1376 -0
  1599. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_is/gherkin_lexer_is.o +0 -0
  1600. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_is/mkmf.log +12 -0
  1601. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_it/Makefile +157 -0
  1602. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_it/conftest.dSYM/Contents/Info.plist +20 -0
  1603. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_it/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1604. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_it/extconf.rb +6 -0
  1605. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_it/gherkin_lexer_it.bundle +0 -0
  1606. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_it/gherkin_lexer_it.c +1340 -0
  1607. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_it/gherkin_lexer_it.o +0 -0
  1608. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_it/mkmf.log +12 -0
  1609. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ja/Makefile +157 -0
  1610. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ja/conftest.dSYM/Contents/Info.plist +20 -0
  1611. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ja/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1612. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ja/extconf.rb +6 -0
  1613. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ja/gherkin_lexer_ja.bundle +0 -0
  1614. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ja/gherkin_lexer_ja.c +1699 -0
  1615. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ja/gherkin_lexer_ja.o +0 -0
  1616. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ja/mkmf.log +12 -0
  1617. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ko/Makefile +157 -0
  1618. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ko/conftest.dSYM/Contents/Info.plist +20 -0
  1619. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ko/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1620. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ko/extconf.rb +6 -0
  1621. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ko/gherkin_lexer_ko.bundle +0 -0
  1622. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ko/gherkin_lexer_ko.c +1360 -0
  1623. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ko/gherkin_lexer_ko.o +0 -0
  1624. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ko/mkmf.log +12 -0
  1625. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lt/Makefile +157 -0
  1626. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lt/conftest.dSYM/Contents/Info.plist +20 -0
  1627. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lt/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1628. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lt/extconf.rb +6 -0
  1629. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lt/gherkin_lexer_lt.bundle +0 -0
  1630. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lt/gherkin_lexer_lt.c +1296 -0
  1631. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lt/gherkin_lexer_lt.o +0 -0
  1632. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lt/mkmf.log +12 -0
  1633. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lu/Makefile +157 -0
  1634. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lu/conftest.dSYM/Contents/Info.plist +20 -0
  1635. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lu/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1636. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lu/extconf.rb +6 -0
  1637. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lu/gherkin_lexer_lu.bundle +0 -0
  1638. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lu/gherkin_lexer_lu.c +1389 -0
  1639. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lu/gherkin_lexer_lu.o +0 -0
  1640. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lu/mkmf.log +12 -0
  1641. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lv/Makefile +157 -0
  1642. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lv/conftest.dSYM/Contents/Info.plist +20 -0
  1643. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lv/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1644. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lv/extconf.rb +6 -0
  1645. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lv/gherkin_lexer_lv.bundle +0 -0
  1646. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lv/gherkin_lexer_lv.c +1425 -0
  1647. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lv/gherkin_lexer_lv.o +0 -0
  1648. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_lv/mkmf.log +12 -0
  1649. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_nl/Makefile +157 -0
  1650. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_nl/conftest.dSYM/Contents/Info.plist +20 -0
  1651. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_nl/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1652. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_nl/extconf.rb +6 -0
  1653. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_nl/gherkin_lexer_nl.bundle +0 -0
  1654. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_nl/gherkin_lexer_nl.c +1368 -0
  1655. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_nl/gherkin_lexer_nl.o +0 -0
  1656. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_nl/mkmf.log +12 -0
  1657. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_no/Makefile +157 -0
  1658. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_no/conftest.dSYM/Contents/Info.plist +20 -0
  1659. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_no/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1660. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_no/extconf.rb +6 -0
  1661. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_no/gherkin_lexer_no.bundle +0 -0
  1662. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_no/gherkin_lexer_no.c +1311 -0
  1663. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_no/gherkin_lexer_no.o +0 -0
  1664. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_no/mkmf.log +12 -0
  1665. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_pl/Makefile +157 -0
  1666. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_pl/conftest.dSYM/Contents/Info.plist +20 -0
  1667. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_pl/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1668. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_pl/extconf.rb +6 -0
  1669. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_pl/gherkin_lexer_pl.bundle +0 -0
  1670. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_pl/gherkin_lexer_pl.c +1738 -0
  1671. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_pl/gherkin_lexer_pl.o +0 -0
  1672. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_pl/mkmf.log +12 -0
  1673. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_pt/Makefile +157 -0
  1674. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_pt/conftest.dSYM/Contents/Info.plist +20 -0
  1675. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_pt/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1676. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_pt/extconf.rb +6 -0
  1677. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_pt/gherkin_lexer_pt.bundle +0 -0
  1678. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_pt/gherkin_lexer_pt.c +1711 -0
  1679. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_pt/gherkin_lexer_pt.o +0 -0
  1680. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_pt/mkmf.log +12 -0
  1681. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ro/Makefile +157 -0
  1682. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ro/conftest.dSYM/Contents/Info.plist +20 -0
  1683. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ro/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1684. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ro/extconf.rb +6 -0
  1685. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ro/gherkin_lexer_ro.bundle +0 -0
  1686. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ro/gherkin_lexer_ro.c +1427 -0
  1687. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ro/gherkin_lexer_ro.o +0 -0
  1688. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ro/mkmf.log +12 -0
  1689. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ru/Makefile +157 -0
  1690. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ru/conftest.dSYM/Contents/Info.plist +20 -0
  1691. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ru/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1692. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ru/extconf.rb +6 -0
  1693. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ru/gherkin_lexer_ru.bundle +0 -0
  1694. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ru/gherkin_lexer_ru.c +2058 -0
  1695. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ru/gherkin_lexer_ru.o +0 -0
  1696. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_ru/mkmf.log +12 -0
  1697. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sk/Makefile +157 -0
  1698. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sk/conftest.dSYM/Contents/Info.plist +20 -0
  1699. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sk/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1700. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sk/extconf.rb +6 -0
  1701. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sk/gherkin_lexer_sk.bundle +0 -0
  1702. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sk/gherkin_lexer_sk.c +1298 -0
  1703. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sk/gherkin_lexer_sk.o +0 -0
  1704. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sk/mkmf.log +12 -0
  1705. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sr_cyrl/Makefile +157 -0
  1706. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sr_cyrl/conftest.dSYM/Contents/Info.plist +20 -0
  1707. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sr_cyrl/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1708. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sr_cyrl/extconf.rb +6 -0
  1709. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sr_cyrl/gherkin_lexer_sr_cyrl.bundle +0 -0
  1710. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sr_cyrl/gherkin_lexer_sr_cyrl.c +2112 -0
  1711. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sr_cyrl/gherkin_lexer_sr_cyrl.o +0 -0
  1712. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sr_cyrl/mkmf.log +12 -0
  1713. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sr_latn/Makefile +157 -0
  1714. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sr_latn/conftest.dSYM/Contents/Info.plist +20 -0
  1715. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sr_latn/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1716. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sr_latn/extconf.rb +6 -0
  1717. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sr_latn/gherkin_lexer_sr_latn.bundle +0 -0
  1718. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sr_latn/gherkin_lexer_sr_latn.c +1567 -0
  1719. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sr_latn/gherkin_lexer_sr_latn.o +0 -0
  1720. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sr_latn/mkmf.log +12 -0
  1721. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sv/Makefile +157 -0
  1722. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sv/conftest.dSYM/Contents/Info.plist +20 -0
  1723. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sv/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1724. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sv/extconf.rb +6 -0
  1725. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sv/gherkin_lexer_sv.bundle +0 -0
  1726. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sv/gherkin_lexer_sv.c +1324 -0
  1727. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sv/gherkin_lexer_sv.o +0 -0
  1728. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_sv/mkmf.log +12 -0
  1729. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_tr/Makefile +157 -0
  1730. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_tr/conftest.dSYM/Contents/Info.plist +20 -0
  1731. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_tr/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1732. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_tr/extconf.rb +6 -0
  1733. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_tr/gherkin_lexer_tr.bundle +0 -0
  1734. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_tr/gherkin_lexer_tr.c +1347 -0
  1735. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_tr/gherkin_lexer_tr.o +0 -0
  1736. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_tr/mkmf.log +12 -0
  1737. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_uk/Makefile +157 -0
  1738. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_uk/conftest.dSYM/Contents/Info.plist +20 -0
  1739. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_uk/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1740. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_uk/extconf.rb +6 -0
  1741. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_uk/gherkin_lexer_uk.bundle +0 -0
  1742. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_uk/gherkin_lexer_uk.c +1941 -0
  1743. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_uk/gherkin_lexer_uk.o +0 -0
  1744. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_uk/mkmf.log +12 -0
  1745. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_uz/Makefile +157 -0
  1746. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_uz/conftest.dSYM/Contents/Info.plist +20 -0
  1747. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_uz/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1748. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_uz/extconf.rb +6 -0
  1749. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_uz/gherkin_lexer_uz.bundle +0 -0
  1750. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_uz/gherkin_lexer_uz.c +1651 -0
  1751. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_uz/gherkin_lexer_uz.o +0 -0
  1752. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_uz/mkmf.log +12 -0
  1753. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_vi/Makefile +157 -0
  1754. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_vi/conftest.dSYM/Contents/Info.plist +20 -0
  1755. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_vi/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1756. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_vi/extconf.rb +6 -0
  1757. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_vi/gherkin_lexer_vi.bundle +0 -0
  1758. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_vi/gherkin_lexer_vi.c +1458 -0
  1759. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_vi/gherkin_lexer_vi.o +0 -0
  1760. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_vi/mkmf.log +12 -0
  1761. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_zh_cn/Makefile +157 -0
  1762. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_zh_cn/conftest.dSYM/Contents/Info.plist +20 -0
  1763. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_zh_cn/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1764. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_zh_cn/extconf.rb +6 -0
  1765. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_zh_cn/gherkin_lexer_zh_cn.bundle +0 -0
  1766. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_zh_cn/gherkin_lexer_zh_cn.c +1314 -0
  1767. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_zh_cn/gherkin_lexer_zh_cn.o +0 -0
  1768. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_zh_cn/mkmf.log +12 -0
  1769. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_zh_tw/Makefile +157 -0
  1770. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_zh_tw/conftest.dSYM/Contents/Info.plist +20 -0
  1771. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_zh_tw/conftest.dSYM/Contents/Resources/DWARF/conftest +0 -0
  1772. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_zh_tw/extconf.rb +6 -0
  1773. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_zh_tw/gherkin_lexer_zh_tw.bundle +0 -0
  1774. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_zh_tw/gherkin_lexer_zh_tw.c +1307 -0
  1775. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_zh_tw/gherkin_lexer_zh_tw.o +0 -0
  1776. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ext/gherkin_lexer_zh_tw/mkmf.log +12 -0
  1777. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/features/escaped_pipes.feature +8 -0
  1778. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/features/feature_parser.feature +237 -0
  1779. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/features/json_formatter.feature +498 -0
  1780. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/features/json_parser.feature +331 -0
  1781. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/features/native_lexer.feature +19 -0
  1782. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/features/parser_with_native_lexer.feature +205 -0
  1783. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/features/pretty_formatter.feature +16 -0
  1784. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/features/step_definitions/eyeball_steps.rb +3 -0
  1785. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/features/step_definitions/gherkin_steps.rb +29 -0
  1786. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/features/step_definitions/json_formatter_steps.rb +30 -0
  1787. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/features/step_definitions/json_parser_steps.rb +20 -0
  1788. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/features/step_definitions/pretty_formatter_steps.rb +85 -0
  1789. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/features/steps_parser.feature +46 -0
  1790. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/features/support/env.rb +42 -0
  1791. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/gherkin.gemspec +77 -0
  1792. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/install_mingw_os_x.sh +7 -0
  1793. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin.rb +2 -0
  1794. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/c_lexer.rb +17 -0
  1795. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/formatter/ansi_escapes.rb +97 -0
  1796. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/formatter/argument.rb +16 -0
  1797. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/formatter/escaping.rb +15 -0
  1798. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/formatter/filter_formatter.rb +146 -0
  1799. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/formatter/hashable.rb +19 -0
  1800. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/formatter/json_formatter.rb +122 -0
  1801. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/formatter/line_filter.rb +26 -0
  1802. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/formatter/model.rb +281 -0
  1803. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/formatter/pretty_formatter.rb +244 -0
  1804. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/formatter/regexp_filter.rb +21 -0
  1805. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/formatter/step_printer.rb +21 -0
  1806. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/formatter/tag_count_formatter.rb +47 -0
  1807. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/formatter/tag_filter.rb +19 -0
  1808. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/i18n.rb +180 -0
  1809. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/i18n.yml +613 -0
  1810. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/js_lexer.rb +20 -0
  1811. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/json_parser.rb +177 -0
  1812. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/lexer/i18n_lexer.rb +46 -0
  1813. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/listener/event.rb +45 -0
  1814. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/listener/formatter_listener.rb +143 -0
  1815. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/native.rb +7 -0
  1816. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/native/java.rb +72 -0
  1817. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/native/null.rb +5 -0
  1818. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/native/therubyracer.rb +39 -0
  1819. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/parser/meta.txt +5 -0
  1820. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/parser/parser.rb +164 -0
  1821. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/parser/root.txt +11 -0
  1822. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/parser/steps.txt +4 -0
  1823. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer.rb +8 -0
  1824. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/README.rdoc +8 -0
  1825. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/ar.rb +1165 -0
  1826. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/bg.rb +1377 -0
  1827. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/bm.rb +1081 -0
  1828. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/ca.rb +1305 -0
  1829. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/cs.rb +1157 -0
  1830. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/cy_gb.rb +1027 -0
  1831. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/da.rb +1043 -0
  1832. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/de.rb +1151 -0
  1833. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/en.rb +1151 -0
  1834. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/en_au.rb +971 -0
  1835. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/en_lol.rb +929 -0
  1836. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/en_pirate.rb +1205 -0
  1837. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/en_scouse.rb +1357 -0
  1838. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/en_tx.rb +1011 -0
  1839. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/eo.rb +990 -0
  1840. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/es.rb +1135 -0
  1841. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/et.rb +985 -0
  1842. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/fi.rb +964 -0
  1843. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/fr.rb +1223 -0
  1844. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/he.rb +1113 -0
  1845. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/hr.rb +1061 -0
  1846. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/hu.rb +1113 -0
  1847. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/id.rb +958 -0
  1848. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/is.rb +1115 -0
  1849. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/it.rb +1081 -0
  1850. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/ja.rb +1413 -0
  1851. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/ko.rb +1097 -0
  1852. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/lt.rb +1040 -0
  1853. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/lu.rb +1127 -0
  1854. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/lv.rb +1161 -0
  1855. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/nl.rb +1110 -0
  1856. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/no.rb +1055 -0
  1857. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/pl.rb +1452 -0
  1858. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/pt.rb +1425 -0
  1859. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/ro.rb +1159 -0
  1860. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/ru.rb +1749 -0
  1861. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/sk.rb +1041 -0
  1862. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/sr_cyrl.rb +1798 -0
  1863. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/sr_latn.rb +1289 -0
  1864. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/sv.rb +1065 -0
  1865. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/tr.rb +1087 -0
  1866. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/uk.rb +1641 -0
  1867. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/uz.rb +1371 -0
  1868. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/vi.rb +1193 -0
  1869. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/zh_cn.rb +1053 -0
  1870. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rb_lexer/zh_tw.rb +1047 -0
  1871. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/rubify.rb +24 -0
  1872. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin/tag_expression.rb +62 -0
  1873. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_ar.bundle +0 -0
  1874. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_bg.bundle +0 -0
  1875. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_bm.bundle +0 -0
  1876. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_ca.bundle +0 -0
  1877. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_cs.bundle +0 -0
  1878. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_cy_gb.bundle +0 -0
  1879. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_da.bundle +0 -0
  1880. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_de.bundle +0 -0
  1881. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_en.bundle +0 -0
  1882. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_en_au.bundle +0 -0
  1883. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_en_lol.bundle +0 -0
  1884. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_en_pirate.bundle +0 -0
  1885. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_en_scouse.bundle +0 -0
  1886. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_en_tx.bundle +0 -0
  1887. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_eo.bundle +0 -0
  1888. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_es.bundle +0 -0
  1889. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_et.bundle +0 -0
  1890. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_fi.bundle +0 -0
  1891. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_fr.bundle +0 -0
  1892. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_he.bundle +0 -0
  1893. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_hr.bundle +0 -0
  1894. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_hu.bundle +0 -0
  1895. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_id.bundle +0 -0
  1896. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_is.bundle +0 -0
  1897. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_it.bundle +0 -0
  1898. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_ja.bundle +0 -0
  1899. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_ko.bundle +0 -0
  1900. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_lt.bundle +0 -0
  1901. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_lu.bundle +0 -0
  1902. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_lv.bundle +0 -0
  1903. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_nl.bundle +0 -0
  1904. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_no.bundle +0 -0
  1905. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_pl.bundle +0 -0
  1906. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_pt.bundle +0 -0
  1907. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_ro.bundle +0 -0
  1908. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_ru.bundle +0 -0
  1909. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_sk.bundle +0 -0
  1910. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_sr_cyrl.bundle +0 -0
  1911. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_sr_latn.bundle +0 -0
  1912. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_sv.bundle +0 -0
  1913. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_tr.bundle +0 -0
  1914. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_uk.bundle +0 -0
  1915. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_uz.bundle +0 -0
  1916. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_vi.bundle +0 -0
  1917. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_zh_cn.bundle +0 -0
  1918. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/lib/gherkin_lexer_zh_tw.bundle +0 -0
  1919. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ragel/lexer.c.rl.erb +454 -0
  1920. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ragel/lexer.java.rl.erb +219 -0
  1921. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ragel/lexer.js.rl.erb +227 -0
  1922. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ragel/lexer.rb.rl.erb +174 -0
  1923. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/ragel/lexer_common.rl.erb +50 -0
  1924. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/c_lexer_spec.rb +22 -0
  1925. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/1.feature +8 -0
  1926. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/comments_in_table.feature +9 -0
  1927. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/complex.feature +45 -0
  1928. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/complex.json +139 -0
  1929. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/complex_for_filtering.feature +60 -0
  1930. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/complex_with_tags.feature +61 -0
  1931. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/dos_line_endings.feature +45 -0
  1932. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/examples_with_only_header.feature +14 -0
  1933. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/hantu_pisang.feature +35 -0
  1934. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/i18n_fr.feature +14 -0
  1935. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/i18n_fr2.feature +8 -0
  1936. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/i18n_no.feature +7 -0
  1937. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/i18n_pt1.feature +44 -0
  1938. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/i18n_pt2.feature +4 -0
  1939. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/i18n_pt3.feature +4 -0
  1940. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/i18n_pt4.feature +4 -0
  1941. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/i18n_zh-CN.feature +9 -0
  1942. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/issue_145.feature +22 -0
  1943. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/scenario_outline_with_tags.feature +13 -0
  1944. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/scenario_without_steps.feature +5 -0
  1945. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/simple_with_comments.feature +7 -0
  1946. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/simple_with_tags.feature +11 -0
  1947. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/fixtures/with_bom.feature +3 -0
  1948. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/formatter/ansi_escapes_spec.rb +32 -0
  1949. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/formatter/filter_formatter_spec.rb +204 -0
  1950. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/formatter/json_formatter_spec.rb +92 -0
  1951. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/formatter/model_spec.rb +28 -0
  1952. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/formatter/pretty_formatter_spec.rb +177 -0
  1953. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/formatter/spaces.feature +9 -0
  1954. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/formatter/step_printer_spec.rb +55 -0
  1955. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/formatter/tabs.feature +9 -0
  1956. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/formatter/tag_count_formatter_spec.rb +30 -0
  1957. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/i18n_spec.rb +241 -0
  1958. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/java_lexer_spec.rb +20 -0
  1959. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/js_lexer_spec.rb +23 -0
  1960. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/json_parser_spec.rb +176 -0
  1961. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/lexer/i18n_lexer_spec.rb +43 -0
  1962. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/output_stream_string_io.rb +20 -0
  1963. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/parser/parser_spec.rb +16 -0
  1964. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/rb_lexer_spec.rb +20 -0
  1965. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/sexp_recorder.rb +59 -0
  1966. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/shared/bom_group.rb +20 -0
  1967. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/shared/doc_string_group.rb +163 -0
  1968. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/shared/lexer_group.rb +591 -0
  1969. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/shared/row_group.rb +125 -0
  1970. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/shared/tags_group.rb +54 -0
  1971. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/gherkin/tag_expression_spec.rb +142 -0
  1972. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/spec/spec_helper.rb +75 -0
  1973. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/tasks/bench.rake +184 -0
  1974. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/tasks/bench/feature_builder.rb +49 -0
  1975. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/tasks/bench/null_listener.rb +4 -0
  1976. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/tasks/compile.rake +120 -0
  1977. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/tasks/cucumber.rake +22 -0
  1978. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/tasks/gems.rake +31 -0
  1979. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/tasks/ikvm.rake +124 -0
  1980. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/tasks/ragel_task.rb +100 -0
  1981. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/tasks/release.rake +49 -0
  1982. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/tasks/rspec.rake +8 -0
  1983. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/tasks/yard.rake +7 -0
  1984. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/tasks/yard/default/layout/html/bubble_32x32.png +0 -0
  1985. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/tasks/yard/default/layout/html/bubble_48x48.png +0 -0
  1986. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/tasks/yard/default/layout/html/footer.erb +5 -0
  1987. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/tasks/yard/default/layout/html/index.erb +1 -0
  1988. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/tasks/yard/default/layout/html/layout.erb +25 -0
  1989. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/tasks/yard/default/layout/html/logo.erb +1 -0
  1990. data/vendor/gems/ruby/1.8/gems/gherkin-2.11.1/tasks/yard/default/layout/html/setup.rb +4 -0
  1991. data/vendor/gems/ruby/1.8/gems/json-1.7.4/CHANGES +252 -0
  1992. data/vendor/gems/ruby/1.8/gems/json-1.7.4/COPYING +58 -0
  1993. data/vendor/gems/ruby/1.8/gems/json-1.7.4/COPYING-json-jruby +57 -0
  1994. data/vendor/gems/ruby/1.8/gems/json-1.7.4/GPL +340 -0
  1995. data/vendor/gems/ruby/1.8/gems/json-1.7.4/Gemfile +15 -0
  1996. data/vendor/gems/ruby/1.8/gems/json-1.7.4/README-json-jruby.markdown +33 -0
  1997. data/vendor/gems/ruby/1.8/gems/json-1.7.4/README.rdoc +358 -0
  1998. data/vendor/gems/ruby/1.8/gems/json-1.7.4/Rakefile +408 -0
  1999. data/vendor/gems/ruby/1.8/gems/json-1.7.4/TODO +1 -0
  2000. data/vendor/gems/ruby/1.8/gems/json-1.7.4/VERSION +1 -0
  2001. data/vendor/gems/ruby/1.8/gems/json-1.7.4/data/example.json +1 -0
  2002. data/vendor/gems/ruby/1.8/gems/json-1.7.4/data/index.html +38 -0
  2003. data/vendor/gems/ruby/1.8/gems/json-1.7.4/data/prototype.js +4184 -0
  2004. data/vendor/gems/ruby/1.8/gems/json-1.7.4/ext/json/ext/fbuffer/fbuffer.h +164 -0
  2005. data/vendor/gems/ruby/1.8/gems/json-1.7.4/ext/json/ext/generator/Makefile +158 -0
  2006. data/vendor/gems/ruby/1.8/gems/json-1.7.4/ext/json/ext/generator/depend +1 -0
  2007. data/vendor/gems/ruby/1.8/gems/json-1.7.4/ext/json/ext/generator/extconf.rb +14 -0
  2008. data/vendor/gems/ruby/1.8/gems/json-1.7.4/ext/json/ext/generator/generator.bundle +0 -0
  2009. data/vendor/gems/ruby/1.8/gems/json-1.7.4/ext/json/ext/generator/generator.c +1393 -0
  2010. data/vendor/gems/ruby/1.8/gems/json-1.7.4/ext/json/ext/generator/generator.h +162 -0
  2011. data/vendor/gems/ruby/1.8/gems/json-1.7.4/ext/json/ext/generator/generator.o +0 -0
  2012. data/vendor/gems/ruby/1.8/gems/json-1.7.4/ext/json/ext/parser/Makefile +158 -0
  2013. data/vendor/gems/ruby/1.8/gems/json-1.7.4/ext/json/ext/parser/depend +1 -0
  2014. data/vendor/gems/ruby/1.8/gems/json-1.7.4/ext/json/ext/parser/extconf.rb +13 -0
  2015. data/vendor/gems/ruby/1.8/gems/json-1.7.4/ext/json/ext/parser/parser.bundle +0 -0
  2016. data/vendor/gems/ruby/1.8/gems/json-1.7.4/ext/json/ext/parser/parser.c +2204 -0
  2017. data/vendor/gems/ruby/1.8/gems/json-1.7.4/ext/json/ext/parser/parser.h +77 -0
  2018. data/vendor/gems/ruby/1.8/gems/json-1.7.4/ext/json/ext/parser/parser.o +0 -0
  2019. data/vendor/gems/ruby/1.8/gems/json-1.7.4/ext/json/ext/parser/parser.rl +927 -0
  2020. data/vendor/gems/ruby/1.8/gems/json-1.7.4/install.rb +23 -0
  2021. data/vendor/gems/ruby/1.8/gems/json-1.7.4/java/src/json/ext/ByteListTranscoder.java +167 -0
  2022. data/vendor/gems/ruby/1.8/gems/json-1.7.4/java/src/json/ext/Generator.java +444 -0
  2023. data/vendor/gems/ruby/1.8/gems/json-1.7.4/java/src/json/ext/GeneratorMethods.java +232 -0
  2024. data/vendor/gems/ruby/1.8/gems/json-1.7.4/java/src/json/ext/GeneratorService.java +43 -0
  2025. data/vendor/gems/ruby/1.8/gems/json-1.7.4/java/src/json/ext/GeneratorState.java +526 -0
  2026. data/vendor/gems/ruby/1.8/gems/json-1.7.4/java/src/json/ext/OptionsReader.java +113 -0
  2027. data/vendor/gems/ruby/1.8/gems/json-1.7.4/java/src/json/ext/Parser.java +2644 -0
  2028. data/vendor/gems/ruby/1.8/gems/json-1.7.4/java/src/json/ext/Parser.rl +968 -0
  2029. data/vendor/gems/ruby/1.8/gems/json-1.7.4/java/src/json/ext/ParserService.java +35 -0
  2030. data/vendor/gems/ruby/1.8/gems/json-1.7.4/java/src/json/ext/RuntimeInfo.java +121 -0
  2031. data/vendor/gems/ruby/1.8/gems/json-1.7.4/java/src/json/ext/StringDecoder.java +167 -0
  2032. data/vendor/gems/ruby/1.8/gems/json-1.7.4/java/src/json/ext/StringEncoder.java +106 -0
  2033. data/vendor/gems/ruby/1.8/gems/json-1.7.4/java/src/json/ext/Utils.java +89 -0
  2034. data/vendor/gems/ruby/1.8/gems/json-1.7.4/json-java.gemspec +22 -0
  2035. data/vendor/gems/ruby/1.8/gems/json-1.7.4/json.gemspec +37 -0
  2036. data/vendor/gems/ruby/1.8/gems/json-1.7.4/json_pure.gemspec +39 -0
  2037. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json.rb +62 -0
  2038. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/add/bigdecimal.rb +21 -0
  2039. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/add/complex.rb +22 -0
  2040. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/add/core.rb +11 -0
  2041. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/add/date.rb +34 -0
  2042. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/add/date_time.rb +50 -0
  2043. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/add/exception.rb +31 -0
  2044. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/add/ostruct.rb +31 -0
  2045. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/add/range.rb +29 -0
  2046. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/add/rational.rb +22 -0
  2047. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/add/regexp.rb +30 -0
  2048. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/add/struct.rb +30 -0
  2049. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/add/symbol.rb +25 -0
  2050. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/add/time.rb +38 -0
  2051. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/common.rb +480 -0
  2052. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/ext.rb +21 -0
  2053. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/ext/generator.bundle +0 -0
  2054. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/ext/parser.bundle +0 -0
  2055. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/generic_object.rb +39 -0
  2056. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/pure.rb +21 -0
  2057. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/pure/generator.rb +472 -0
  2058. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/pure/parser.rb +359 -0
  2059. data/vendor/gems/ruby/1.8/gems/json-1.7.4/lib/json/version.rb +8 -0
  2060. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail1.json +1 -0
  2061. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail10.json +1 -0
  2062. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail11.json +1 -0
  2063. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail12.json +1 -0
  2064. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail13.json +1 -0
  2065. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail14.json +1 -0
  2066. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail18.json +1 -0
  2067. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail19.json +1 -0
  2068. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail2.json +1 -0
  2069. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail20.json +1 -0
  2070. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail21.json +1 -0
  2071. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail22.json +1 -0
  2072. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail23.json +1 -0
  2073. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail24.json +1 -0
  2074. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail25.json +1 -0
  2075. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail27.json +2 -0
  2076. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail28.json +2 -0
  2077. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail3.json +1 -0
  2078. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail4.json +1 -0
  2079. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail5.json +1 -0
  2080. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail6.json +1 -0
  2081. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail7.json +1 -0
  2082. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail8.json +1 -0
  2083. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/fail9.json +1 -0
  2084. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/pass1.json +56 -0
  2085. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/pass15.json +1 -0
  2086. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/pass16.json +1 -0
  2087. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/pass17.json +1 -0
  2088. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/pass2.json +1 -0
  2089. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/pass26.json +1 -0
  2090. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/fixtures/pass3.json +6 -0
  2091. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/setup_variant.rb +11 -0
  2092. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/test_json.rb +539 -0
  2093. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/test_json_addition.rb +188 -0
  2094. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/test_json_encoding.rb +65 -0
  2095. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/test_json_fixtures.rb +35 -0
  2096. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/test_json_generate.rb +251 -0
  2097. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/test_json_generic_object.rb +35 -0
  2098. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/test_json_string_matching.rb +40 -0
  2099. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tests/test_json_unicode.rb +72 -0
  2100. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tools/fuzz.rb +139 -0
  2101. data/vendor/gems/ruby/1.8/gems/json-1.7.4/tools/server.rb +62 -0
  2102. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/CHANGELOG +8549 -0
  2103. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/CONTRIBUTING.md +299 -0
  2104. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/LICENSE +17 -0
  2105. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/README.md +43 -0
  2106. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/README_DEVELOPER.md +91 -0
  2107. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/Rakefile +53 -0
  2108. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/bin/filebucket +7 -0
  2109. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/bin/pi +5 -0
  2110. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/bin/puppet +4 -0
  2111. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/bin/puppetca +4 -0
  2112. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/bin/puppetd +4 -0
  2113. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/bin/puppetdoc +4 -0
  2114. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/bin/puppetmasterd +4 -0
  2115. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/bin/puppetqd +4 -0
  2116. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/bin/puppetrun +5 -0
  2117. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/bin/ralsh +4 -0
  2118. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/auth.conf +100 -0
  2119. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/epm.list +8 -0
  2120. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/freebsd/puppetd +26 -0
  2121. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/freebsd/puppetmasterd +26 -0
  2122. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/gentoo/conf.d/puppet +5 -0
  2123. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/gentoo/conf.d/puppetmaster +12 -0
  2124. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/gentoo/init.d/puppet +38 -0
  2125. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/gentoo/init.d/puppetmaster +51 -0
  2126. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/gentoo/puppet/fileserver.conf +12 -0
  2127. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/gentoo/puppet/puppet.conf +25 -0
  2128. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/namespaceauth.conf +20 -0
  2129. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/osx/PackageInfo.plist +36 -0
  2130. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/osx/createpackage.sh +185 -0
  2131. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/osx/preflight +24 -0
  2132. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/puppet-queue.conf +10 -0
  2133. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/redhat/client.init +119 -0
  2134. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/redhat/client.sysconfig +11 -0
  2135. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/redhat/fileserver.conf +12 -0
  2136. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/redhat/logrotate +10 -0
  2137. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/redhat/puppet.conf +25 -0
  2138. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/redhat/puppet.spec +643 -0
  2139. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/redhat/rundir-perms.patch +28 -0
  2140. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/redhat/server.init +143 -0
  2141. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/redhat/server.sysconfig +31 -0
  2142. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/solaris/pkginfo +6 -0
  2143. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/solaris/smf/puppetd.xml +77 -0
  2144. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/solaris/smf/puppetmasterd.xml +77 -0
  2145. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/solaris/smf/svc-puppetd +64 -0
  2146. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/solaris/smf/svc-puppetmasterd +60 -0
  2147. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/suse/client.init +143 -0
  2148. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/suse/fileserver.conf +12 -0
  2149. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/suse/logrotate +10 -0
  2150. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/suse/puppet.conf +25 -0
  2151. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/suse/puppet.spec +315 -0
  2152. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/suse/server.init +163 -0
  2153. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/windows/eventlog/Rakefile +32 -0
  2154. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/windows/eventlog/puppetres.dll +0 -0
  2155. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/conf/windows/eventlog/puppetres.mc +18 -0
  2156. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/allatonce +13 -0
  2157. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/assignments +11 -0
  2158. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/components +73 -0
  2159. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/etc/init.d/sleeper +70 -0
  2160. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/etc/otherfile +0 -0
  2161. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/etc/puppet/fileserver.conf +13 -0
  2162. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/etc/puppet/namespaceauth.conf +20 -0
  2163. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/etc/puppet/puppet.conf +10 -0
  2164. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/etc/puppet/tagmail.conf +1 -0
  2165. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/execs +16 -0
  2166. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/file.bl +11 -0
  2167. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/filedefaults +10 -0
  2168. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/fileparsing +116 -0
  2169. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/filerecursion +15 -0
  2170. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/functions +3 -0
  2171. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/groups +7 -0
  2172. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/head +30 -0
  2173. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/importing +8 -0
  2174. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/mac_automount.pp +16 -0
  2175. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/mac_dscl.pp +28 -0
  2176. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/mac_dscl_revert.pp +26 -0
  2177. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/mac_pkgdmg.pp +7 -0
  2178. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/mcx_dock_absent.pp +4 -0
  2179. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/mcx_dock_default.pp +118 -0
  2180. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/mcx_dock_full.pp +125 -0
  2181. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/mcx_dock_invalid.pp +9 -0
  2182. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/mcx_nogroup.pp +118 -0
  2183. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/mcx_notexists_absent.pp +4 -0
  2184. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/modules/sample-module.pp +10 -0
  2185. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/modules/sample-module/README.txt +17 -0
  2186. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/modules/sample-module/lib/puppet/parser/functions/hostname_to_dn.rb +36 -0
  2187. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/modules/sample-module/manifests/init.pp +12 -0
  2188. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/modules/sample-module/templates/sample.erb +5 -0
  2189. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/nodes +20 -0
  2190. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/one +8 -0
  2191. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/relationships +34 -0
  2192. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/selectors +28 -0
  2193. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/simpletests +11 -0
  2194. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/examples/svncommit +13 -0
  2195. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/autotest/Rakefile +8 -0
  2196. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/autotest/config +43 -0
  2197. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/autotest/readme.rst +16 -0
  2198. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/cert_inspector +140 -0
  2199. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/dbfix.sql +132 -0
  2200. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/emacs/puppet-mode-init.el +6 -0
  2201. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/emacs/puppet-mode.el +359 -0
  2202. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/envpuppet +133 -0
  2203. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/envpuppet.bat +13 -0
  2204. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/ldap/puppet.schema +24 -0
  2205. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/logcheck/puppet +23 -0
  2206. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/nagios/check_puppet.rb +123 -0
  2207. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/nagios/naggen +309 -0
  2208. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/puppet-load.rb +393 -0
  2209. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/puppet-test +566 -0
  2210. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/puppetlisten/puppetlisten.rb +76 -0
  2211. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/puppetlisten/puppetrun.rb +39 -0
  2212. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/pure_ruby_dsl/dsl_test.rb +7 -0
  2213. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/rack/README +73 -0
  2214. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/rack/files/apache2.conf +45 -0
  2215. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/rack/files/config.ru +16 -0
  2216. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/rack/manifest.pp +59 -0
  2217. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/regexp_nodes/classes/databases +2 -0
  2218. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/regexp_nodes/classes/webservers +2 -0
  2219. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/regexp_nodes/parameters/environment/prod +1 -0
  2220. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/regexp_nodes/parameters/environment/qa +3 -0
  2221. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/regexp_nodes/regexp_nodes.rb +215 -0
  2222. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/upload_facts.rb +120 -0
  2223. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/vim/README +3 -0
  2224. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/vim/ftdetect/puppet.vim +2 -0
  2225. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/vim/ftplugin/puppet.vim +94 -0
  2226. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/vim/indent/puppet.vim +76 -0
  2227. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/vim/syntax/puppet.vim +115 -0
  2228. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/ext/yaml_nodes.rb +105 -0
  2229. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/install.rb +462 -0
  2230. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet.rb +129 -0
  2231. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/agent.rb +99 -0
  2232. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/agent/locker.rb +44 -0
  2233. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application.rb +421 -0
  2234. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/agent.rb +487 -0
  2235. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/apply.rb +266 -0
  2236. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/ca.rb +5 -0
  2237. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/catalog.rb +4 -0
  2238. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/cert.rb +241 -0
  2239. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/certificate.rb +13 -0
  2240. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/certificate_request.rb +4 -0
  2241. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/certificate_revocation_list.rb +4 -0
  2242. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/config.rb +4 -0
  2243. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/describe.rb +256 -0
  2244. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/device.rb +242 -0
  2245. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/doc.rb +275 -0
  2246. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/face_base.rb +264 -0
  2247. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/facts.rb +4 -0
  2248. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/file.rb +4 -0
  2249. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/filebucket.rb +191 -0
  2250. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/help.rb +4 -0
  2251. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/indirection_base.rb +4 -0
  2252. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/inspect.rb +191 -0
  2253. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/instrumentation_data.rb +4 -0
  2254. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/instrumentation_listener.rb +4 -0
  2255. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/instrumentation_probe.rb +4 -0
  2256. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/key.rb +4 -0
  2257. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/kick.rb +351 -0
  2258. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/man.rb +4 -0
  2259. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/master.rb +261 -0
  2260. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/module.rb +11 -0
  2261. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/node.rb +4 -0
  2262. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/parser.rb +5 -0
  2263. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/plugin.rb +3 -0
  2264. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/queue.rb +161 -0
  2265. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/report.rb +4 -0
  2266. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/resource.rb +237 -0
  2267. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/resource_type.rb +4 -0
  2268. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/secret_agent.rb +6 -0
  2269. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/application/status.rb +4 -0
  2270. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/configurer.rb +250 -0
  2271. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/configurer/downloader.rb +86 -0
  2272. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/configurer/fact_handler.rb +56 -0
  2273. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/configurer/plugin_handler.rb +37 -0
  2274. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/daemon.rb +200 -0
  2275. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/defaults.rb +951 -0
  2276. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/dsl.rb +7 -0
  2277. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/dsl/resource_api.rb +120 -0
  2278. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/dsl/resource_type_api.rb +34 -0
  2279. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/error.rb +43 -0
  2280. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/external/base64.rb +19 -0
  2281. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/external/dot.rb +326 -0
  2282. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/external/lock.rb +63 -0
  2283. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/external/nagios.rb +48 -0
  2284. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/external/nagios/base.rb +472 -0
  2285. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/external/nagios/grammar.ry +185 -0
  2286. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/external/nagios/makefile +9 -0
  2287. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/external/nagios/parser.rb +775 -0
  2288. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/external/pson/common.rb +370 -0
  2289. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/external/pson/pure.rb +77 -0
  2290. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/external/pson/pure/generator.rb +401 -0
  2291. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/external/pson/pure/parser.rb +264 -0
  2292. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/external/pson/version.rb +8 -0
  2293. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face.rb +12 -0
  2294. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/ca.rb +242 -0
  2295. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/catalog.rb +131 -0
  2296. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/catalog/select.rb +49 -0
  2297. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/certificate.rb +148 -0
  2298. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/certificate_request.rb +53 -0
  2299. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/certificate_revocation_list.rb +58 -0
  2300. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/config.rb +45 -0
  2301. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/facts.rb +81 -0
  2302. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/file.rb +47 -0
  2303. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/file/download.rb +54 -0
  2304. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/file/store.rb +21 -0
  2305. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/help.rb +131 -0
  2306. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/help/action.erb +53 -0
  2307. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/help/face.erb +79 -0
  2308. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/help/global.erb +19 -0
  2309. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/help/man.erb +136 -0
  2310. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/instrumentation_data.rb +28 -0
  2311. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/instrumentation_listener.rb +96 -0
  2312. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/instrumentation_probe.rb +77 -0
  2313. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/key.rb +15 -0
  2314. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/man.rb +93 -0
  2315. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/module.rb +17 -0
  2316. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/module/build.rb +37 -0
  2317. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/module/changes.rb +38 -0
  2318. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/module/generate.rb +42 -0
  2319. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/module/install.rb +173 -0
  2320. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/module/list.rb +285 -0
  2321. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/module/search.rb +88 -0
  2322. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/module/uninstall.rb +86 -0
  2323. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/module/upgrade.rb +84 -0
  2324. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/node.rb +43 -0
  2325. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/node/clean.rb +151 -0
  2326. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/parser.rb +42 -0
  2327. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/plugin.rb +55 -0
  2328. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/report.rb +56 -0
  2329. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/resource.rb +53 -0
  2330. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/resource_type.rb +81 -0
  2331. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/secret_agent.rb +54 -0
  2332. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/face/status.rb +53 -0
  2333. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/feature/base.rb +67 -0
  2334. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/feature/eventlog.rb +6 -0
  2335. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/feature/pson.rb +6 -0
  2336. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/feature/rack.rb +24 -0
  2337. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/feature/rails.rb +30 -0
  2338. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/feature/rubygems.rb +3 -0
  2339. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/feature/selinux.rb +3 -0
  2340. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/feature/ssh.rb +4 -0
  2341. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/feature/stomp.rb +6 -0
  2342. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/feature/zlib.rb +6 -0
  2343. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/file_bucket.rb +4 -0
  2344. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/file_bucket/dipper.rb +107 -0
  2345. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/file_bucket/file.rb +55 -0
  2346. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/file_collection.rb +30 -0
  2347. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/file_collection/lookup.rb +20 -0
  2348. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/file_serving.rb +3 -0
  2349. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/file_serving/base.rb +88 -0
  2350. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/file_serving/configuration.rb +122 -0
  2351. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/file_serving/configuration/parser.rb +115 -0
  2352. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/file_serving/content.rb +45 -0
  2353. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/file_serving/fileset.rb +173 -0
  2354. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/file_serving/metadata.rb +155 -0
  2355. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/file_serving/mount.rb +39 -0
  2356. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/file_serving/mount/file.rb +121 -0
  2357. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/file_serving/mount/modules.rb +24 -0
  2358. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/file_serving/mount/plugins.rb +26 -0
  2359. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/file_serving/terminus_helper.rb +21 -0
  2360. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/file_serving/terminus_selector.rb +28 -0
  2361. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/forge.rb +98 -0
  2362. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/forge/cache.rb +55 -0
  2363. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/forge/repository.rb +102 -0
  2364. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector.rb +57 -0
  2365. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/active_record.rb +28 -0
  2366. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/catalog/active_record.rb +41 -0
  2367. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/catalog/compiler.rb +153 -0
  2368. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/catalog/queue.rb +5 -0
  2369. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/catalog/rest.rb +6 -0
  2370. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/catalog/static_compiler.rb +137 -0
  2371. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/catalog/store_configs.rb +5 -0
  2372. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/catalog/yaml.rb +22 -0
  2373. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/certificate/ca.rb +9 -0
  2374. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/certificate/file.rb +9 -0
  2375. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/certificate/rest.rb +15 -0
  2376. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/certificate_request/ca.rb +22 -0
  2377. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/certificate_request/file.rb +8 -0
  2378. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/certificate_request/rest.rb +9 -0
  2379. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/certificate_revocation_list/ca.rb +8 -0
  2380. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/certificate_revocation_list/file.rb +8 -0
  2381. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/certificate_revocation_list/rest.rb +9 -0
  2382. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/certificate_status.rb +4 -0
  2383. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/certificate_status/file.rb +82 -0
  2384. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/certificate_status/rest.rb +10 -0
  2385. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/code.rb +6 -0
  2386. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/couch.rb +78 -0
  2387. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/direct_file_server.rb +19 -0
  2388. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/envelope.rb +11 -0
  2389. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/exec.rb +48 -0
  2390. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/face.rb +137 -0
  2391. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/facts/active_record.rb +36 -0
  2392. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/facts/couch.rb +31 -0
  2393. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/facts/facter.rb +96 -0
  2394. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/facts/inventory_active_record.rb +100 -0
  2395. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/facts/inventory_service.rb +20 -0
  2396. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/facts/memory.rb +9 -0
  2397. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/facts/network_device.rb +25 -0
  2398. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/facts/rest.rb +8 -0
  2399. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/facts/store_configs.rb +5 -0
  2400. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/facts/yaml.rb +82 -0
  2401. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/file_bucket_file/file.rb +136 -0
  2402. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/file_bucket_file/rest.rb +8 -0
  2403. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/file_bucket_file/selector.rb +49 -0
  2404. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/file_content.rb +5 -0
  2405. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/file_content/file.rb +7 -0
  2406. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/file_content/file_server.rb +7 -0
  2407. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/file_content/rest.rb +7 -0
  2408. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/file_content/selector.rb +30 -0
  2409. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/file_metadata.rb +5 -0
  2410. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/file_metadata/file.rb +22 -0
  2411. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/file_metadata/file_server.rb +7 -0
  2412. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/file_metadata/rest.rb +7 -0
  2413. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/file_metadata/selector.rb +30 -0
  2414. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/file_server.rb +65 -0
  2415. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/indirection.rb +324 -0
  2416. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/instrumentation_data.rb +3 -0
  2417. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/instrumentation_data/local.rb +19 -0
  2418. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/instrumentation_data/rest.rb +5 -0
  2419. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/instrumentation_listener.rb +3 -0
  2420. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/instrumentation_listener/local.rb +23 -0
  2421. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/instrumentation_listener/rest.rb +5 -0
  2422. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/instrumentation_probe.rb +3 -0
  2423. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/instrumentation_probe/local.rb +24 -0
  2424. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/instrumentation_probe/rest.rb +5 -0
  2425. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/inventory/yaml.rb +81 -0
  2426. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/key/ca.rb +12 -0
  2427. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/key/file.rb +42 -0
  2428. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/ldap.rb +78 -0
  2429. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/memory.rb +21 -0
  2430. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/node/active_record.rb +13 -0
  2431. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/node/exec.rb +48 -0
  2432. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/node/ldap.rb +256 -0
  2433. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/node/memory.rb +10 -0
  2434. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/node/plain.rb +19 -0
  2435. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/node/rest.rb +7 -0
  2436. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/node/store_configs.rb +5 -0
  2437. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/node/yaml.rb +7 -0
  2438. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/plain.rb +9 -0
  2439. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/queue.rb +81 -0
  2440. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/report/processor.rb +61 -0
  2441. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/report/rest.rb +7 -0
  2442. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/report/yaml.rb +11 -0
  2443. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/request.rb +200 -0
  2444. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/resource/active_record.rb +93 -0
  2445. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/resource/ral.rb +53 -0
  2446. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/resource/rest.rb +5 -0
  2447. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/resource/store_configs.rb +3 -0
  2448. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/resource_type.rb +5 -0
  2449. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/resource_type/parser.rb +43 -0
  2450. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/resource_type/rest.rb +7 -0
  2451. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/rest.rb +160 -0
  2452. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/run/local.rb +8 -0
  2453. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/run/rest.rb +6 -0
  2454. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/ssl_file.rb +178 -0
  2455. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/status.rb +3 -0
  2456. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/status/local.rb +7 -0
  2457. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/status/rest.rb +5 -0
  2458. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/store_configs.rb +30 -0
  2459. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/terminus.rb +145 -0
  2460. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/indirector/yaml.rb +75 -0
  2461. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/interface.rb +161 -0
  2462. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/interface/action.rb +322 -0
  2463. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/interface/action_builder.rb +74 -0
  2464. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/interface/action_manager.rb +75 -0
  2465. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/interface/documentation.rb +230 -0
  2466. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/interface/face_collection.rb +128 -0
  2467. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/interface/option.rb +127 -0
  2468. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/interface/option_builder.rb +67 -0
  2469. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/interface/option_manager.rb +68 -0
  2470. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/metatype/manager.rb +134 -0
  2471. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module.rb +314 -0
  2472. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool.rb +99 -0
  2473. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/applications.rb +15 -0
  2474. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/applications/application.rb +82 -0
  2475. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/applications/builder.rb +91 -0
  2476. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/applications/checksummer.rb +56 -0
  2477. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/applications/generator.rb +141 -0
  2478. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/applications/installer.rb +183 -0
  2479. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/applications/searcher.rb +15 -0
  2480. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/applications/uninstaller.rb +107 -0
  2481. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/applications/unpacker.rb +48 -0
  2482. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/applications/upgrader.rb +109 -0
  2483. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/checksums.rb +52 -0
  2484. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/contents_description.rb +82 -0
  2485. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/dependency.rb +24 -0
  2486. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/errors.rb +9 -0
  2487. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/errors/base.rb +15 -0
  2488. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/errors/installer.rb +90 -0
  2489. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/errors/shared.rb +115 -0
  2490. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/errors/uninstaller.rb +45 -0
  2491. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/errors/upgrader.rb +72 -0
  2492. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/metadata.rb +141 -0
  2493. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/modulefile.rb +75 -0
  2494. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/shared_behaviors.rb +161 -0
  2495. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/skeleton.rb +34 -0
  2496. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/skeleton/templates/generator/Modulefile.erb +11 -0
  2497. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/skeleton/templates/generator/README.erb +16 -0
  2498. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/skeleton/templates/generator/manifests/init.pp.erb +41 -0
  2499. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/skeleton/templates/generator/spec/spec_helper.rb +17 -0
  2500. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/module_tool/skeleton/templates/generator/tests/init.pp.erb +11 -0
  2501. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network.rb +3 -0
  2502. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/authconfig.rb +174 -0
  2503. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/authorization.rb +76 -0
  2504. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/authstore.rb +267 -0
  2505. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/client_request.rb +29 -0
  2506. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/format.rb +111 -0
  2507. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/format_handler.rb +181 -0
  2508. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/formats.rb +171 -0
  2509. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/handler.rb +50 -0
  2510. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/handler/ca.rb +61 -0
  2511. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/handler/filebucket.rb +53 -0
  2512. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/handler/fileserver.rb +732 -0
  2513. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/handler/master.rb +87 -0
  2514. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/handler/report.rb +82 -0
  2515. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/handler/runner.rb +33 -0
  2516. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/handler/status.rb +18 -0
  2517. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/http.rb +15 -0
  2518. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/http/api.rb +4 -0
  2519. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/http/api/v1.rb +83 -0
  2520. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/http/compression.rb +114 -0
  2521. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/http/handler.rb +247 -0
  2522. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/http/mongrel.rb +55 -0
  2523. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/http/mongrel/rest.rb +99 -0
  2524. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/http/rack.rb +65 -0
  2525. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/http/rack/httphandler.rb +16 -0
  2526. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/http/rack/rest.rb +100 -0
  2527. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/http/rack/xmlrpc.rb +65 -0
  2528. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/http/webrick.rb +141 -0
  2529. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/http/webrick/rest.rb +81 -0
  2530. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/http_pool.rb +57 -0
  2531. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/http_server.rb +3 -0
  2532. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/http_server/mongrel.rb +129 -0
  2533. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/rest_authconfig.rb +102 -0
  2534. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/rest_authorization.rb +23 -0
  2535. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/rest_controller.rb +2 -0
  2536. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/rights.rb +276 -0
  2537. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/server.rb +164 -0
  2538. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/xmlrpc/processor.rb +86 -0
  2539. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/xmlrpc/server.rb +19 -0
  2540. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/network/xmlrpc/webrick_servlet.rb +114 -0
  2541. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/node.rb +120 -0
  2542. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/node/environment.rb +215 -0
  2543. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/node/facts.rb +99 -0
  2544. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/node/inventory.rb +7 -0
  2545. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parameter.rb +316 -0
  2546. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parameter/path.rb +34 -0
  2547. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parameter/value.rb +63 -0
  2548. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parameter/value_collection.rb +143 -0
  2549. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser.rb +4 -0
  2550. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast.rb +142 -0
  2551. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/arithmetic_operator.rb +39 -0
  2552. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/astarray.rb +50 -0
  2553. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/asthash.rb +37 -0
  2554. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/boolean_operator.rb +46 -0
  2555. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/branch.rb +37 -0
  2556. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/caseopt.rb +52 -0
  2557. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/casestatement.rb +44 -0
  2558. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/collection.rb +49 -0
  2559. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/collexpr.rb +57 -0
  2560. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/comparison_operator.rb +38 -0
  2561. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/definition.rb +17 -0
  2562. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/else.rb +22 -0
  2563. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/function.rb +50 -0
  2564. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/hostclass.rb +29 -0
  2565. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/ifstatement.rb +34 -0
  2566. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/in_operator.rb +24 -0
  2567. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/leaf.rb +221 -0
  2568. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/match_operator.rb +28 -0
  2569. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/minus.rb +23 -0
  2570. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/node.rb +20 -0
  2571. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/nop.rb +11 -0
  2572. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/not.rb +19 -0
  2573. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/relationship.rb +47 -0
  2574. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/resource.rb +67 -0
  2575. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/resource_defaults.rb +24 -0
  2576. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/resource_instance.rb +9 -0
  2577. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/resource_override.rb +67 -0
  2578. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/resource_reference.rb +28 -0
  2579. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/resourceparam.rb +29 -0
  2580. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/selector.rb +44 -0
  2581. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/tag.rb +24 -0
  2582. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/top_level_construct.rb +4 -0
  2583. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/ast/vardef.rb +33 -0
  2584. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/collector.rb +176 -0
  2585. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/compiler.rb +476 -0
  2586. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/files.rb +88 -0
  2587. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions.rb +119 -0
  2588. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/create_resources.rb +76 -0
  2589. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/defined.rb +49 -0
  2590. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/extlookup.rb +152 -0
  2591. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/fail.rb +4 -0
  2592. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/file.rb +23 -0
  2593. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/fqdn_rand.rb +12 -0
  2594. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/generate.rb +37 -0
  2595. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/include.rb +24 -0
  2596. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/inline_template.rb +21 -0
  2597. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/md5.rb +5 -0
  2598. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/realize.rb +14 -0
  2599. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/regsubst.rb +119 -0
  2600. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/require.rb +57 -0
  2601. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/search.rb +7 -0
  2602. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/sha1.rb +5 -0
  2603. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/shellquote.rb +65 -0
  2604. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/split.rb +29 -0
  2605. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/sprintf.rb +39 -0
  2606. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/tag.rb +6 -0
  2607. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/tagged.rb +18 -0
  2608. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/template.rb +25 -0
  2609. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/functions/versioncmp.rb +37 -0
  2610. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/grammar.ra +771 -0
  2611. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/lexer.rb +583 -0
  2612. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/makefile +8 -0
  2613. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/parser.rb +2421 -0
  2614. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/parser_support.rb +211 -0
  2615. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/relationship.rb +60 -0
  2616. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/resource.rb +342 -0
  2617. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/resource/param.rb +27 -0
  2618. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/scope.rb +494 -0
  2619. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/templatewrapper.rb +115 -0
  2620. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/type_loader.rb +173 -0
  2621. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/parser/yaml_trimmer.rb +9 -0
  2622. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/property.rb +371 -0
  2623. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/property/ensure.rb +92 -0
  2624. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/property/keyvalue.rb +86 -0
  2625. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/property/list.rb +75 -0
  2626. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/property/ordered_list.rb +22 -0
  2627. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider.rb +290 -0
  2628. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/aixobject.rb +393 -0
  2629. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/augeas/augeas.rb +400 -0
  2630. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/cisco.rb +9 -0
  2631. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/computer/computer.rb +20 -0
  2632. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/confine.rb +80 -0
  2633. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/confine/exists.rb +19 -0
  2634. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/confine/false.rb +19 -0
  2635. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/confine/feature.rb +17 -0
  2636. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/confine/true.rb +20 -0
  2637. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/confine/variable.rb +59 -0
  2638. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/confine_collection.rb +50 -0
  2639. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/confiner.rb +16 -0
  2640. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/cron/crontab.rb +200 -0
  2641. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/exec.rb +84 -0
  2642. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/exec/posix.rb +39 -0
  2643. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/exec/shell.rb +25 -0
  2644. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/exec/windows.rb +56 -0
  2645. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/file/posix.rb +135 -0
  2646. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/file/windows.rb +107 -0
  2647. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/group/aix.rb +141 -0
  2648. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/group/directoryservice.rb +12 -0
  2649. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/group/groupadd.rb +30 -0
  2650. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/group/ldap.rb +45 -0
  2651. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/group/pw.rb +48 -0
  2652. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/group/windows_adsi.rb +54 -0
  2653. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/host/parsed.rb +44 -0
  2654. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/interface/base.rb +0 -0
  2655. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/interface/cisco.rb +27 -0
  2656. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/ldap.rb +133 -0
  2657. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/macauthorization/macauthorization.rb +313 -0
  2658. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/mailalias/aliases.rb +44 -0
  2659. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/maillist/mailman.rb +108 -0
  2660. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/mcx/mcxcontent.rb +166 -0
  2661. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/mount.rb +46 -0
  2662. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/mount/parsed.rb +124 -0
  2663. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/naginator.rb +63 -0
  2664. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/nameservice.rb +276 -0
  2665. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/nameservice/directoryservice.rb +652 -0
  2666. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/nameservice/objectadd.rb +33 -0
  2667. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/nameservice/pw.rb +21 -0
  2668. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/network_device.rb +68 -0
  2669. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package.rb +28 -0
  2670. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/aix.rb +128 -0
  2671. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/appdmg.rb +109 -0
  2672. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/apple.rb +47 -0
  2673. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/apt.rb +111 -0
  2674. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/aptitude.rb +29 -0
  2675. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/aptrpm.rb +83 -0
  2676. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/blastwave.rb +111 -0
  2677. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/dpkg.rb +155 -0
  2678. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/fink.rb +81 -0
  2679. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/freebsd.rb +49 -0
  2680. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/gem.rb +123 -0
  2681. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/hpux.rb +44 -0
  2682. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/macports.rb +105 -0
  2683. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/msi.rb +95 -0
  2684. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/nim.rb +35 -0
  2685. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/openbsd.rb +112 -0
  2686. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/pacman.rb +94 -0
  2687. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/pip.rb +111 -0
  2688. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/pkg.rb +112 -0
  2689. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/pkgdmg.rb +123 -0
  2690. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/pkgutil.rb +174 -0
  2691. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/portage.rb +122 -0
  2692. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/ports.rb +94 -0
  2693. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/portupgrade.rb +241 -0
  2694. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/rpm.rb +132 -0
  2695. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/rug.rb +52 -0
  2696. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/sun.rb +154 -0
  2697. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/sunfreeware.rb +9 -0
  2698. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/up2date.rb +41 -0
  2699. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/urpmi.rb +59 -0
  2700. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/yum.rb +106 -0
  2701. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/yumhelper.py +129 -0
  2702. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/package/zypper.rb +84 -0
  2703. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/parsedfile.rb +374 -0
  2704. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/port/parsed.rb +173 -0
  2705. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/scheduled_task/win32_taskscheduler.rb +564 -0
  2706. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/selboolean/getsetsebool.rb +47 -0
  2707. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/selmodule/semodule.rb +134 -0
  2708. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/service/base.rb +144 -0
  2709. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/service/bsd.rb +49 -0
  2710. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/service/daemontools.rb +194 -0
  2711. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/service/debian.rb +68 -0
  2712. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/service/freebsd.rb +139 -0
  2713. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/service/gentoo.rb +56 -0
  2714. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/service/init.rb +140 -0
  2715. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/service/launchd.rb +303 -0
  2716. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/service/redhat.rb +75 -0
  2717. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/service/runit.rb +103 -0
  2718. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/service/smf.rb +104 -0
  2719. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/service/src.rb +86 -0
  2720. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/service/systemd.rb +64 -0
  2721. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/service/upstart.rb +347 -0
  2722. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/service/windows.rb +111 -0
  2723. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/ssh_authorized_key/parsed.rb +88 -0
  2724. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/sshkey/parsed.rb +37 -0
  2725. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/user/aix.rb +353 -0
  2726. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/user/directoryservice.rb +86 -0
  2727. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/user/hpux.rb +31 -0
  2728. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/user/ldap.rb +129 -0
  2729. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/user/pw.rb +101 -0
  2730. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/user/user_role_add.rb +206 -0
  2731. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/user/useradd.rb +116 -0
  2732. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/user/windows_adsi.rb +88 -0
  2733. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/vlan/cisco.rb +28 -0
  2734. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/zfs/solaris.rb +45 -0
  2735. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/zone/solaris.rb +260 -0
  2736. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/provider/zpool/solaris.rb +116 -0
  2737. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails.rb +132 -0
  2738. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/benchmark.rb +63 -0
  2739. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/database/001_add_created_at_to_all_tables.rb +13 -0
  2740. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/database/002_remove_duplicated_index_on_all_tables.rb +13 -0
  2741. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/database/003_add_environment_to_host.rb +9 -0
  2742. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/database/004_add_inventory_service_tables.rb +36 -0
  2743. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/database/schema.rb +131 -0
  2744. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/fact_name.rb +6 -0
  2745. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/fact_value.rb +8 -0
  2746. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/host.rb +258 -0
  2747. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/inventory_fact.rb +5 -0
  2748. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/inventory_node.rb +30 -0
  2749. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/param_name.rb +25 -0
  2750. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/param_value.rb +74 -0
  2751. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/puppet_tag.rb +10 -0
  2752. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/resource.rb +231 -0
  2753. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/resource_tag.rb +26 -0
  2754. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/source_file.rb +8 -0
  2755. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rb_tree_map.rb +388 -0
  2756. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/reference/configuration.rb +69 -0
  2757. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/reference/function.rb +17 -0
  2758. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/reference/indirection.rb +32 -0
  2759. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/reference/metaparameter.rb +43 -0
  2760. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/reference/network.rb +39 -0
  2761. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/reference/providers.rb +119 -0
  2762. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/reference/report.rb +23 -0
  2763. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/reference/type.rb +116 -0
  2764. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/relationship.rb +95 -0
  2765. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/reports.rb +49 -0
  2766. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/reports/http.rb +25 -0
  2767. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/reports/log.rb +14 -0
  2768. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/reports/rrdgraph.rb +128 -0
  2769. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/reports/store.rb +74 -0
  2770. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/reports/tagmail.rb +179 -0
  2771. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/resource.rb +452 -0
  2772. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/resource/catalog.rb +660 -0
  2773. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/resource/status.rb +79 -0
  2774. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/resource/type.rb +344 -0
  2775. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/resource/type_collection.rb +214 -0
  2776. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/resource/type_collection_helper.rb +7 -0
  2777. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/run.rb +77 -0
  2778. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/simple_graph.rb +550 -0
  2779. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/ssl.rb +8 -0
  2780. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/ssl/base.rb +87 -0
  2781. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/ssl/certificate.rb +40 -0
  2782. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/ssl/certificate_authority.rb +372 -0
  2783. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/ssl/certificate_authority/interface.rb +181 -0
  2784. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/ssl/certificate_factory.rb +166 -0
  2785. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/ssl/certificate_request.rb +149 -0
  2786. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/ssl/certificate_revocation_list.rb +84 -0
  2787. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/ssl/host.rb +340 -0
  2788. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/ssl/inventory.rb +54 -0
  2789. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/ssl/key.rb +56 -0
  2790. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/status.rb +28 -0
  2791. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/test/test_helper.rb +138 -0
  2792. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/transaction.rb +493 -0
  2793. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/transaction/event.rb +66 -0
  2794. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/transaction/event_manager.rb +115 -0
  2795. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/transaction/report.rb +200 -0
  2796. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/transaction/resource_harness.rb +178 -0
  2797. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/transportable.rb +248 -0
  2798. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type.rb +1974 -0
  2799. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/augeas.rb +218 -0
  2800. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/component.rb +85 -0
  2801. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/computer.rb +66 -0
  2802. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/cron.rb +421 -0
  2803. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/exec.rb +520 -0
  2804. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/file.rb +837 -0
  2805. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/file/checksum.rb +33 -0
  2806. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/file/content.rb +230 -0
  2807. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/file/ctime.rb +18 -0
  2808. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/file/ensure.rb +172 -0
  2809. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/file/group.rb +41 -0
  2810. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/file/mode.rb +148 -0
  2811. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/file/mtime.rb +17 -0
  2812. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/file/owner.rb +44 -0
  2813. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/file/selcontext.rb +119 -0
  2814. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/file/source.rb +195 -0
  2815. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/file/target.rb +87 -0
  2816. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/file/type.rb +19 -0
  2817. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/filebucket.rb +114 -0
  2818. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/group.rb +149 -0
  2819. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/host.rb +87 -0
  2820. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/interface.rb +112 -0
  2821. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/k5login.rb +88 -0
  2822. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/macauthorization.rb +167 -0
  2823. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/mailalias.rb +48 -0
  2824. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/maillist.rb +62 -0
  2825. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/mcx.rb +99 -0
  2826. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/mount.rb +241 -0
  2827. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/nagios_command.rb +3 -0
  2828. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/nagios_contact.rb +3 -0
  2829. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/nagios_contactgroup.rb +3 -0
  2830. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/nagios_host.rb +3 -0
  2831. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/nagios_hostdependency.rb +3 -0
  2832. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/nagios_hostescalation.rb +3 -0
  2833. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/nagios_hostextinfo.rb +3 -0
  2834. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/nagios_hostgroup.rb +3 -0
  2835. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/nagios_service.rb +3 -0
  2836. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/nagios_servicedependency.rb +3 -0
  2837. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/nagios_serviceescalation.rb +3 -0
  2838. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/nagios_serviceextinfo.rb +3 -0
  2839. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/nagios_servicegroup.rb +3 -0
  2840. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/nagios_timeperiod.rb +3 -0
  2841. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/notify.rb +44 -0
  2842. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/package.rb +357 -0
  2843. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/port.rb +119 -0
  2844. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/resources.rb +131 -0
  2845. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/router.rb +17 -0
  2846. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/schedule.rb +360 -0
  2847. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/scheduled_task.rb +168 -0
  2848. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/selboolean.rb +26 -0
  2849. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/selmodule.rb +59 -0
  2850. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/service.rb +221 -0
  2851. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/ssh_authorized_key.rb +112 -0
  2852. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/sshkey.rb +72 -0
  2853. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/stage.rb +19 -0
  2854. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/tidy.rb +333 -0
  2855. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/user.rb +524 -0
  2856. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/vlan.rb +26 -0
  2857. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/whit.rb +27 -0
  2858. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/yumrepo.rb +361 -0
  2859. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/zfs.rb +146 -0
  2860. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/zone.rb +492 -0
  2861. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/type/zpool.rb +91 -0
  2862. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util.rb +592 -0
  2863. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/adsi.rb +294 -0
  2864. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/autoload.rb +156 -0
  2865. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/autoload/file_cache.rb +92 -0
  2866. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/backups.rb +87 -0
  2867. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/cacher.rb +80 -0
  2868. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/checksums.rb +148 -0
  2869. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/classgen.rb +209 -0
  2870. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/colors.rb +128 -0
  2871. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/command_line.rb +185 -0
  2872. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/constant_inflector.rb +15 -0
  2873. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/diff.rb +76 -0
  2874. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/docs.rb +123 -0
  2875. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/errors.rb +63 -0
  2876. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/execution.rb +20 -0
  2877. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/execution_stub.rb +26 -0
  2878. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/feature.rb +81 -0
  2879. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/file_locking.rb +47 -0
  2880. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/fileparsing.rb +373 -0
  2881. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/filetype.rb +283 -0
  2882. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/graph.rb +27 -0
  2883. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/inifile.rb +203 -0
  2884. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/inline_docs.rb +26 -0
  2885. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/instance_loader.rb +81 -0
  2886. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/instrumentation.rb +173 -0
  2887. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/instrumentation/data.rb +34 -0
  2888. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/instrumentation/indirection_probe.rb +29 -0
  2889. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/instrumentation/instrumentable.rb +143 -0
  2890. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/instrumentation/listener.rb +60 -0
  2891. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/instrumentation/listeners/log.rb +29 -0
  2892. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/instrumentation/listeners/performance.rb +30 -0
  2893. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/ldap.rb +2 -0
  2894. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/ldap/connection.rb +74 -0
  2895. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/ldap/generator.rb +42 -0
  2896. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/ldap/manager.rb +279 -0
  2897. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/loadedfile.rb +61 -0
  2898. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/log.rb +275 -0
  2899. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/log/destination.rb +49 -0
  2900. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/log/destinations.rb +268 -0
  2901. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/log_paths.rb +24 -0
  2902. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/logging.rb +51 -0
  2903. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/metaid.rb +21 -0
  2904. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/methodhelper.rb +32 -0
  2905. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/metric.rb +186 -0
  2906. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/monkey_patches.rb +217 -0
  2907. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/nagios_maker.rb +60 -0
  2908. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/network_device.rb +17 -0
  2909. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/network_device/base.rb +27 -0
  2910. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/network_device/cisco.rb +4 -0
  2911. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/network_device/cisco/device.rb +257 -0
  2912. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/network_device/cisco/facts.rb +72 -0
  2913. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/network_device/cisco/interface.rb +82 -0
  2914. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/network_device/config.rb +92 -0
  2915. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/network_device/ipcalc.rb +68 -0
  2916. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/network_device/transport.rb +3 -0
  2917. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/network_device/transport/base.rb +26 -0
  2918. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/network_device/transport/ssh.rb +121 -0
  2919. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/network_device/transport/telnet.rb +42 -0
  2920. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/package.rb +31 -0
  2921. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/pidlock.rb +117 -0
  2922. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/platform.rb +15 -0
  2923. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/plugins.rb +82 -0
  2924. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/posix.rb +137 -0
  2925. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/provider_features.rb +169 -0
  2926. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/pson.rb +13 -0
  2927. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/queue.rb +96 -0
  2928. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/queue/stomp.rb +60 -0
  2929. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/rails/cache_accumulator.rb +65 -0
  2930. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/rails/collection_merger.rb +17 -0
  2931. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/rails/reference_serializer.rb +32 -0
  2932. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/rdoc.rb +86 -0
  2933. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/rdoc/code_objects.rb +280 -0
  2934. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/rdoc/generators/puppet_generator.rb +911 -0
  2935. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/rdoc/generators/template/puppet/puppet.rb +1077 -0
  2936. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/rdoc/parser.rb +497 -0
  2937. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/reference.rb +124 -0
  2938. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/resource_template.rb +61 -0
  2939. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/retryaction.rb +48 -0
  2940. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/run_mode.rb +81 -0
  2941. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/selinux.rb +216 -0
  2942. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/settings.rb +926 -0
  2943. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/settings/boolean_setting.rb +30 -0
  2944. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/settings/file_setting.rb +135 -0
  2945. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/settings/setting.rb +94 -0
  2946. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/storage.rb +96 -0
  2947. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/subclass_loader.rb +82 -0
  2948. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/suidmanager.rb +173 -0
  2949. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/symbolic_file_mode.rb +140 -0
  2950. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/tagging.rb +56 -0
  2951. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/terminal.rb +16 -0
  2952. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/user_attr.rb +21 -0
  2953. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/warnings.rb +29 -0
  2954. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/windows.rb +6 -0
  2955. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/windows/error.rb +16 -0
  2956. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/windows/process.rb +33 -0
  2957. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/windows/security.rb +659 -0
  2958. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/windows/user.rb +44 -0
  2959. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/util/zaml.rb +357 -0
  2960. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/semver.rb +124 -0
  2961. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man5/puppet.conf.5 +1567 -0
  2962. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/filebucket.8 +81 -0
  2963. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/pi.8 +51 -0
  2964. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-agent.8 +154 -0
  2965. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-apply.8 +80 -0
  2966. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-ca.8 +183 -0
  2967. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-catalog.8 +293 -0
  2968. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-cert.8 +97 -0
  2969. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-certificate.8 +245 -0
  2970. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-certificate_request.8 +169 -0
  2971. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-certificate_revocation_list.8 +166 -0
  2972. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-config.8 +80 -0
  2973. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-describe.8 +51 -0
  2974. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-device.8 +86 -0
  2975. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-doc.8 +113 -0
  2976. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-facts.8 +227 -0
  2977. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-file.8 +216 -0
  2978. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-filebucket.8 +81 -0
  2979. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-help.8 +71 -0
  2980. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-inspect.8 +36 -0
  2981. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-instrumentation_data.8 +145 -0
  2982. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-instrumentation_listener.8 +222 -0
  2983. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-instrumentation_probe.8 +207 -0
  2984. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-key.8 +130 -0
  2985. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-kick.8 +127 -0
  2986. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-man.8 +74 -0
  2987. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-master.8 +74 -0
  2988. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-module.8 +451 -0
  2989. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-node.8 +213 -0
  2990. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-parser.8 +71 -0
  2991. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-plugin.8 +77 -0
  2992. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-queue.8 +55 -0
  2993. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-report.8 +191 -0
  2994. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-resource.8 +84 -0
  2995. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-resource_type.8 +218 -0
  2996. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-secret_agent.8 +74 -0
  2997. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet-status.8 +154 -0
  2998. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppet.8 +10 -0
  2999. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppetca.8 +97 -0
  3000. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppetd.8 +154 -0
  3001. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppetdoc.8 +113 -0
  3002. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppetmasterd.8 +74 -0
  3003. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppetqd.8 +55 -0
  3004. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/puppetrun.8 +127 -0
  3005. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/man/man8/ralsh.8 +84 -0
  3006. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/faulty_face/puppet/face/syntax.rb +8 -0
  3007. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/integration/provider/mailalias/aliases/test1 +28 -0
  3008. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/Modulefile +2 -0
  3009. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/files/httpd +24 -0
  3010. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/files/test.vhost +18 -0
  3011. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/lib/puppet/provider/a2mod/debian.rb +21 -0
  3012. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/lib/puppet/type/a2mod.rb +12 -0
  3013. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/manifests/dev.pp +5 -0
  3014. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/manifests/init.pp +34 -0
  3015. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/manifests/params.pp +17 -0
  3016. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/manifests/php.pp +5 -0
  3017. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/manifests/ssl.pp +15 -0
  3018. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/manifests/vhost.pp +15 -0
  3019. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/metadata.json +1 -0
  3020. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/templates/vhost-default.conf.erb +20 -0
  3021. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/tests/apache.pp +1 -0
  3022. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/tests/dev.pp +1 -0
  3023. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/tests/init.pp +1 -0
  3024. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/tests/php.pp +1 -0
  3025. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/tests/ssl.pp +1 -0
  3026. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/releases/jamtur01-apache/tests/vhost.pp +2 -0
  3027. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/aliastest.pp +16 -0
  3028. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/append.pp +11 -0
  3029. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/argumentdefaults.pp +14 -0
  3030. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/arithmetic_expression.pp +8 -0
  3031. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/arraytrailingcomma.pp +3 -0
  3032. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/casestatement.pp +65 -0
  3033. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/classheirarchy.pp +15 -0
  3034. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/classincludes.pp +17 -0
  3035. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/classpathtest.pp +11 -0
  3036. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/collection.pp +10 -0
  3037. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/collection_override.pp +8 -0
  3038. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/collection_within_virtual_definitions.pp +20 -0
  3039. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/componentmetaparams.pp +11 -0
  3040. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/componentrequire.pp +8 -0
  3041. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/deepclassheirarchy.pp +23 -0
  3042. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/defineoverrides.pp +17 -0
  3043. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/emptyclass.pp +9 -0
  3044. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/emptyexec.pp +3 -0
  3045. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/emptyifelse.pp +9 -0
  3046. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/falsevalues.pp +3 -0
  3047. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/filecreate.pp +11 -0
  3048. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/fqdefinition.pp +5 -0
  3049. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/fqparents.pp +11 -0
  3050. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/funccomma.pp +5 -0
  3051. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/hash.pp +33 -0
  3052. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/ifexpression.pp +12 -0
  3053. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/implicititeration.pp +15 -0
  3054. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/multilinecomments.pp +10 -0
  3055. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/multipleclass.pp +9 -0
  3056. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/multipleinstances.pp +7 -0
  3057. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/multisubs.pp +13 -0
  3058. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/namevartest.pp +9 -0
  3059. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/scopetest.pp +13 -0
  3060. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/selectorvalues.pp +49 -0
  3061. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/simpledefaults.pp +5 -0
  3062. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/simpleselector.pp +38 -0
  3063. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/singleary.pp +19 -0
  3064. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/singlequote.pp +11 -0
  3065. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/singleselector.pp +22 -0
  3066. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/subclass_name_duplication.pp +11 -0
  3067. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/tag.pp +9 -0
  3068. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/tagged.pp +35 -0
  3069. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/parser/lexer/virtualresources.pp +14 -0
  3070. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/host/parsed/valid_hosts +19 -0
  3071. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/mount/mount-output.aix.txt +7 -0
  3072. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/mount/parsed/aix.filesystems +144 -0
  3073. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/mount/parsed/aix.mount +7 -0
  3074. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/mount/parsed/darwin.mount +6 -0
  3075. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/mount/parsed/freebsd.fstab +8 -0
  3076. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/mount/parsed/freebsd.mount +3 -0
  3077. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/mount/parsed/hpux.mount +17 -0
  3078. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/mount/parsed/linux.fstab +11 -0
  3079. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/mount/parsed/linux.mount +5 -0
  3080. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/mount/parsed/netbsd.fstab +9 -0
  3081. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/mount/parsed/netbsd.mount +8 -0
  3082. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/mount/parsed/openbsd.fstab +4 -0
  3083. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/mount/parsed/openbsd.mount +4 -0
  3084. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/mount/parsed/solaris.fstab +11 -0
  3085. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/mount/parsed/solaris.mount +6 -0
  3086. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/package/gem/line-with-1.8.5-warning +14 -0
  3087. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/package/openbsd/pkginfo.detail +19 -0
  3088. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/package/openbsd/pkginfo.list +10 -0
  3089. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/package/openbsd/pkginfo.query +1 -0
  3090. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/package/pkg/dummy_solaris10 +1 -0
  3091. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/package/pkg/dummy_solaris11 +1 -0
  3092. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/package/pkg/incomplete +1 -0
  3093. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/package/pkg/publisher +2 -0
  3094. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/package/pkg/simple +4 -0
  3095. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/package/pkg/solaris11 +12 -0
  3096. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/package/pkg/unknown_status +12 -0
  3097. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/package/zypper/zypper-list-updates-SLES11sp1.out +369 -0
  3098. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/service/gentoo/rc_update_show +30 -0
  3099. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys +7 -0
  3100. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys1 +3 -0
  3101. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys2 +1 -0
  3102. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/reports/tagmail/tagmail_email.conf +2 -0
  3103. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/reports/tagmail/tagmail_failers.conf +3 -0
  3104. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/reports/tagmail/tagmail_passers.conf +30 -0
  3105. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/unit/util/rdoc/basic.pp +16 -0
  3106. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/yaml/report0.25.x.yaml +64 -0
  3107. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/yaml/report2.6.x.yaml +190 -0
  3108. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/fixtures/yaml/test.local.yaml +16 -0
  3109. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/application/apply_spec.rb +29 -0
  3110. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/application/doc_spec.rb +54 -0
  3111. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/configurer_spec.rb +77 -0
  3112. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/defaults_spec.rb +317 -0
  3113. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/faces/documentation_spec.rb +55 -0
  3114. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/file_bucket/file_spec.rb +44 -0
  3115. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/file_serving/content_spec.rb +9 -0
  3116. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/file_serving/fileset_spec.rb +13 -0
  3117. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/file_serving/metadata_spec.rb +10 -0
  3118. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/file_serving/terminus_helper_spec.rb +21 -0
  3119. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/indirector/catalog/compiler_spec.rb +64 -0
  3120. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/indirector/catalog/queue_spec.rb +57 -0
  3121. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/indirector/direct_file_server_spec.rb +65 -0
  3122. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/indirector/file_content/file_server_spec.rb +90 -0
  3123. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/indirector/file_metadata/file_server_spec.rb +14 -0
  3124. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/indirector/node/ldap_spec.rb +14 -0
  3125. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/network/formats_spec.rb +106 -0
  3126. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/network/handler_spec.rb +24 -0
  3127. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/network/rest_authconfig_spec.rb +164 -0
  3128. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/network/server/mongrel_spec.rb +70 -0
  3129. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/network/server/webrick_spec.rb +90 -0
  3130. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/node/environment_spec.rb +57 -0
  3131. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/node/facts_spec.rb +41 -0
  3132. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/node_spec.rb +92 -0
  3133. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/parser/collector_spec.rb +37 -0
  3134. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/parser/compiler_spec.rb +281 -0
  3135. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/parser/functions/require_spec.rb +43 -0
  3136. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/parser/functions_spec.rb +20 -0
  3137. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/parser/parser_spec.rb +150 -0
  3138. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/parser/ruby_manifest_spec.rb +127 -0
  3139. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/provider/mailalias/aliases_spec.rb +10 -0
  3140. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/provider/mount_spec.rb +151 -0
  3141. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/provider/package_spec.rb +44 -0
  3142. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/provider/service/init_spec.rb +46 -0
  3143. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/provider/ssh_authorized_key_spec.rb +219 -0
  3144. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/reference/providers_spec.rb +16 -0
  3145. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/reports_spec.rb +14 -0
  3146. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/resource/catalog_spec.rb +55 -0
  3147. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/resource/type_collection_spec.rb +95 -0
  3148. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/ssl/certificate_authority_spec.rb +126 -0
  3149. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/ssl/certificate_request_spec.rb +54 -0
  3150. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/ssl/certificate_revocation_list_spec.rb +37 -0
  3151. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/ssl/host_spec.rb +84 -0
  3152. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/transaction/report_spec.rb +24 -0
  3153. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/transaction_spec.rb +346 -0
  3154. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/type/exec_spec.rb +77 -0
  3155. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/type/file_spec.rb +1068 -0
  3156. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/type/package_spec.rb +24 -0
  3157. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/type/tidy_spec.rb +31 -0
  3158. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/type_spec.rb +32 -0
  3159. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/util/autoload_spec.rb +113 -0
  3160. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/util/feature_spec.rb +53 -0
  3161. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/util/file_locking_spec.rb +56 -0
  3162. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/util/rdoc/parser_spec.rb +58 -0
  3163. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/util/settings_spec.rb +29 -0
  3164. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/util/windows/security_spec.rb +631 -0
  3165. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/util/windows/user_spec.rb +59 -0
  3166. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/util_spec.rb +29 -0
  3167. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/lib/matchers/json.rb +111 -0
  3168. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/lib/puppet/face/1.0.0/huzzah.rb +8 -0
  3169. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/lib/puppet/face/basetest.rb +51 -0
  3170. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/lib/puppet/face/huzzah.rb +8 -0
  3171. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/lib/puppet/face/huzzah/obsolete.rb +6 -0
  3172. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/lib/puppet/face/version_matching.rb +12 -0
  3173. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/lib/puppet_spec/compiler.rb +6 -0
  3174. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/lib/puppet_spec/database.rb +30 -0
  3175. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/lib/puppet_spec/files.rb +59 -0
  3176. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/lib/puppet_spec/fixtures.rb +28 -0
  3177. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/lib/puppet_spec/matchers.rb +87 -0
  3178. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/lib/puppet_spec/modules.rb +26 -0
  3179. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/lib/puppet_spec/verbose.rb +9 -0
  3180. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/monkey_patches/alias_should_to_must.rb +8 -0
  3181. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/monkey_patches/publicize_methods.rb +11 -0
  3182. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/shared_behaviours/all_parsedfile_providers.rb +21 -0
  3183. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/shared_behaviours/an_indirector_face.rb +6 -0
  3184. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/shared_behaviours/documentation_on_faces.rb +263 -0
  3185. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/shared_behaviours/file_server_terminus.rb +41 -0
  3186. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/shared_behaviours/file_serving.rb +80 -0
  3187. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/shared_behaviours/file_serving_model.rb +73 -0
  3188. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/shared_behaviours/memory_terminus.rb +28 -0
  3189. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/shared_behaviours/path_parameters.rb +160 -0
  3190. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/shared_behaviours/store_configs_terminus.rb +21 -0
  3191. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/shared_behaviours/things_that_declare_options.rb +262 -0
  3192. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/shared_contexts/platform.rb +43 -0
  3193. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/spec.opts +4 -0
  3194. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/spec_helper.rb +103 -0
  3195. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/agent/locker_spec.rb +99 -0
  3196. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/agent_backward_compatibility_spec.rb +152 -0
  3197. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/agent_spec.rb +273 -0
  3198. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application/agent_spec.rb +599 -0
  3199. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application/apply_spec.rb +394 -0
  3200. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application/cert_spec.rb +222 -0
  3201. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application/certificate_spec.rb +22 -0
  3202. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application/config_spec.rb +9 -0
  3203. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application/describe_spec.rb +83 -0
  3204. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application/device_spec.rb +393 -0
  3205. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application/doc_spec.rb +342 -0
  3206. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application/face_base_spec.rb +383 -0
  3207. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application/facts_spec.rb +28 -0
  3208. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application/filebucket_spec.rb +218 -0
  3209. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application/indirection_base_spec.rb +42 -0
  3210. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application/inspect_spec.rb +284 -0
  3211. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application/kick_spec.rb +294 -0
  3212. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application/master_spec.rb +400 -0
  3213. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application/queue_spec.rb +172 -0
  3214. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application/resource_spec.rb +211 -0
  3215. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application/secret_agent_spec.rb +34 -0
  3216. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/application_spec.rb +618 -0
  3217. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/configurer/downloader_spec.rb +218 -0
  3218. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/configurer/fact_handler_spec.rb +147 -0
  3219. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/configurer/plugin_handler_spec.rb +122 -0
  3220. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/configurer_spec.rb +611 -0
  3221. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/daemon_spec.rb +261 -0
  3222. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/dsl/resource_api_spec.rb +180 -0
  3223. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/dsl/resource_type_api_spec.rb +53 -0
  3224. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/ca_spec.rb +400 -0
  3225. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/catalog_spec.rb +7 -0
  3226. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/certificate_request_spec.rb +7 -0
  3227. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/certificate_revocation_list_spec.rb +7 -0
  3228. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/certificate_spec.rb +206 -0
  3229. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/config_spec.rb +24 -0
  3230. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/facts_spec.rb +23 -0
  3231. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/file_spec.rb +12 -0
  3232. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/help_spec.rb +129 -0
  3233. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/instrumentation_data.rb +7 -0
  3234. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/instrumentation_listener.rb +38 -0
  3235. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/instrumentation_probe.rb +21 -0
  3236. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/key_spec.rb +7 -0
  3237. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/module/install_spec.rb +170 -0
  3238. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/module/list_spec.rb +182 -0
  3239. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/module/search_spec.rb +163 -0
  3240. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/module/uninstall_spec.rb +77 -0
  3241. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/module/upgrade_spec.rb +26 -0
  3242. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/module_spec.rb +3 -0
  3243. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/node_spec.rb +271 -0
  3244. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/plugin_spec.rb +10 -0
  3245. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/report_spec.rb +7 -0
  3246. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/resource_spec.rb +7 -0
  3247. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/resource_type_spec.rb +7 -0
  3248. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face/secret_agent_spec.rb +27 -0
  3249. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/face_spec.rb +1 -0
  3250. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/file_bucket/dipper_spec.rb +170 -0
  3251. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/file_bucket/file_spec.rb +106 -0
  3252. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/file_collection/lookup_spec.rb +45 -0
  3253. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/file_collection_spec.rb +52 -0
  3254. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/file_serving/base_spec.rb +149 -0
  3255. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/file_serving/configuration/parser_spec.rb +190 -0
  3256. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/file_serving/configuration_spec.rb +245 -0
  3257. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/file_serving/content_spec.rb +112 -0
  3258. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/file_serving/fileset_spec.rb +378 -0
  3259. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/file_serving/metadata_spec.rb +353 -0
  3260. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/file_serving/mount/file_spec.rb +189 -0
  3261. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/file_serving/mount/modules_spec.rb +70 -0
  3262. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/file_serving/mount/plugins_spec.rb +60 -0
  3263. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/file_serving/mount_spec.rb +31 -0
  3264. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/file_serving/terminus_helper_spec.rb +94 -0
  3265. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/file_serving/terminus_selector_spec.rb +58 -0
  3266. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/forge/repository_spec.rb +56 -0
  3267. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/forge_spec.rb +56 -0
  3268. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/active_record_spec.rb +75 -0
  3269. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/catalog/active_record_spec.rb +136 -0
  3270. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/catalog/compiler_spec.rb +261 -0
  3271. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/catalog/queue_spec.rb +19 -0
  3272. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/catalog/rest_spec.rb +10 -0
  3273. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/catalog/store_configs_spec.rb +17 -0
  3274. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/catalog/yaml_spec.rb +24 -0
  3275. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/certificate/ca_spec.rb +24 -0
  3276. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/certificate/file_spec.rb +24 -0
  3277. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/certificate/rest_spec.rb +58 -0
  3278. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/certificate_request/ca_spec.rb +57 -0
  3279. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/certificate_request/file_spec.rb +15 -0
  3280. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/certificate_request/rest_spec.rb +22 -0
  3281. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/certificate_revocation_list/ca_spec.rb +17 -0
  3282. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/certificate_revocation_list/file_spec.rb +16 -0
  3283. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/certificate_revocation_list/rest_spec.rb +22 -0
  3284. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/certificate_status/file_spec.rb +191 -0
  3285. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/certificate_status/rest_spec.rb +14 -0
  3286. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/code_spec.rb +31 -0
  3287. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/direct_file_server_spec.rb +80 -0
  3288. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/envelope_spec.rb +46 -0
  3289. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/exec_spec.rb +56 -0
  3290. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/face_spec.rb +70 -0
  3291. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/facts/active_record_spec.rb +102 -0
  3292. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/facts/couch_spec.rb +102 -0
  3293. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/facts/facter_spec.rb +161 -0
  3294. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/facts/inventory_active_record_spec.rb +166 -0
  3295. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/facts/inventory_service_spec.rb +22 -0
  3296. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/facts/network_device_spec.rb +85 -0
  3297. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/facts/rest_spec.rb +10 -0
  3298. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/facts/store_configs_spec.rb +17 -0
  3299. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/facts/yaml_spec.rb +239 -0
  3300. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/file_bucket_file/file_spec.rb +270 -0
  3301. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/file_bucket_file/rest_spec.rb +10 -0
  3302. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/file_bucket_file/selector_spec.rb +29 -0
  3303. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/file_content/file_server_spec.rb +14 -0
  3304. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/file_content/file_spec.rb +14 -0
  3305. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/file_content/rest_spec.rb +10 -0
  3306. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/file_content/selector_spec.rb +10 -0
  3307. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/file_metadata/file_server_spec.rb +14 -0
  3308. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/file_metadata/file_spec.rb +50 -0
  3309. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/file_metadata/rest_spec.rb +8 -0
  3310. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/file_metadata/selector_spec.rb +11 -0
  3311. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/file_server_spec.rb +263 -0
  3312. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/indirection_spec.rb +856 -0
  3313. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/instrumentation_data/local_spec.rb +52 -0
  3314. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/instrumentation_data/rest_spec.rb +11 -0
  3315. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/instrumentation_listener/local_spec.rb +65 -0
  3316. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/instrumentation_listener/rest_spec.rb +11 -0
  3317. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/instrumentation_probe/local_spec.rb +65 -0
  3318. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/instrumentation_probe/rest_spec.rb +11 -0
  3319. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/inventory/yaml_spec.rb +220 -0
  3320. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/key/ca_spec.rb +24 -0
  3321. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/key/file_spec.rb +100 -0
  3322. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/ldap_spec.rb +137 -0
  3323. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/memory_spec.rb +27 -0
  3324. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/node/active_record_spec.rb +37 -0
  3325. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/node/exec_spec.rb +69 -0
  3326. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/node/ldap_spec.rb +453 -0
  3327. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/node/memory_spec.rb +18 -0
  3328. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/node/plain_spec.rb +18 -0
  3329. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/node/rest_spec.rb +12 -0
  3330. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/node/store_configs_spec.rb +17 -0
  3331. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/node/yaml_spec.rb +24 -0
  3332. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/plain_spec.rb +27 -0
  3333. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/queue_spec.rb +121 -0
  3334. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/report/processor_spec.rb +100 -0
  3335. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/report/rest_spec.rb +27 -0
  3336. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/report/yaml_spec.rb +37 -0
  3337. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/request_spec.rb +314 -0
  3338. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/resource/active_record_spec.rb +178 -0
  3339. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/resource/ral_spec.rb +135 -0
  3340. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/resource/rest_spec.rb +10 -0
  3341. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/resource/store_configs_spec.rb +12 -0
  3342. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/resource_type/parser_spec.rb +149 -0
  3343. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/resource_type/rest_spec.rb +14 -0
  3344. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/rest_spec.rb +567 -0
  3345. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/run/local_spec.rb +19 -0
  3346. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/run/rest_spec.rb +10 -0
  3347. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/ssl_file_spec.rb +301 -0
  3348. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/status/rest_spec.rb +10 -0
  3349. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/store_configs_spec.rb +8 -0
  3350. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/terminus_spec.rb +250 -0
  3351. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector/yaml_spec.rb +190 -0
  3352. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/indirector_spec.rb +144 -0
  3353. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/interface/action_builder_spec.rb +216 -0
  3354. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/interface/action_manager_spec.rb +282 -0
  3355. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/interface/action_spec.rb +649 -0
  3356. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/interface/documentation_spec.rb +34 -0
  3357. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/interface/face_collection_spec.rb +190 -0
  3358. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/interface/option_builder_spec.rb +77 -0
  3359. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/interface/option_spec.rb +144 -0
  3360. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/interface_spec.rb +233 -0
  3361. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/module_spec.rb +864 -0
  3362. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/module_tool/application_spec.rb +27 -0
  3363. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/module_tool/applications/application_spec.rb +19 -0
  3364. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/module_tool/applications/installer_spec.rb +205 -0
  3365. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/module_tool/applications/uninstaller_spec.rb +206 -0
  3366. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/module_tool/applications/upgrader_spec.rb +37 -0
  3367. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/module_tool/metadata_spec.rb +11 -0
  3368. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/module_tool_spec.rb +113 -0
  3369. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/authconfig_spec.rb +315 -0
  3370. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/authstore_spec.rb +401 -0
  3371. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/format_handler_spec.rb +335 -0
  3372. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/format_spec.rb +197 -0
  3373. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/formats_spec.rb +352 -0
  3374. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/handler/ca_spec.rb +87 -0
  3375. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/handler/fileserver_spec.rb +201 -0
  3376. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/http/api/v1_spec.rb +216 -0
  3377. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/http/compression_spec.rb +196 -0
  3378. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/http/handler_spec.rb +467 -0
  3379. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/http/mongrel/rest_spec.rb +276 -0
  3380. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/http/mongrel/xmlrpc_spec.rb +0 -0
  3381. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/http/mongrel_spec.rb +121 -0
  3382. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/http/rack/rest_spec.rb +246 -0
  3383. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/http/rack/xmlrpc_spec.rb +155 -0
  3384. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/http/rack_spec.rb +100 -0
  3385. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/http/webrick/rest_spec.rb +180 -0
  3386. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/http/webrick/xmlrpc_spec.rb +0 -0
  3387. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/http/webrick_spec.rb +340 -0
  3388. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/http_pool_spec.rb +141 -0
  3389. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/http_spec.rb +31 -0
  3390. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/rest_authconfig_spec.rb +127 -0
  3391. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/rights_spec.rb +538 -0
  3392. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/network/server_spec.rb +505 -0
  3393. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/node/environment_spec.rb +452 -0
  3394. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/node/facts_spec.rb +129 -0
  3395. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/node_spec.rb +197 -0
  3396. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/other/selinux_spec.rb +95 -0
  3397. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/other/transbucket_spec.rb +187 -0
  3398. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/other/transobject_spec.rb +111 -0
  3399. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parameter/path_spec.rb +24 -0
  3400. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parameter/value_collection_spec.rb +166 -0
  3401. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parameter/value_spec.rb +87 -0
  3402. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parameter_spec.rb +196 -0
  3403. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/arithmetic_operator_spec.rb +62 -0
  3404. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/astarray_spec.rb +54 -0
  3405. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/asthash_spec.rb +96 -0
  3406. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/boolean_operator_spec.rb +52 -0
  3407. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/casestatement_spec.rb +164 -0
  3408. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/collection_spec.rb +70 -0
  3409. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/collexpr_spec.rb +118 -0
  3410. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/comparison_operator_spec.rb +115 -0
  3411. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/definition_spec.rb +21 -0
  3412. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/function_spec.rb +92 -0
  3413. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/hostclass_spec.rb +72 -0
  3414. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/ifstatement_spec.rb +75 -0
  3415. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/in_operator_spec.rb +59 -0
  3416. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/leaf_spec.rb +443 -0
  3417. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/match_operator_spec.rb +49 -0
  3418. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/minus_spec.rb +35 -0
  3419. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/node_spec.rb +30 -0
  3420. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/nop_spec.rb +19 -0
  3421. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/not_spec.rb +29 -0
  3422. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/relationship_spec.rb +87 -0
  3423. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/resource_defaults_spec.rb +21 -0
  3424. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/resource_override_spec.rb +50 -0
  3425. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/resource_reference_spec.rb +54 -0
  3426. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/resource_spec.rb +183 -0
  3427. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/selector_spec.rb +138 -0
  3428. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast/vardef_spec.rb +66 -0
  3429. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/ast_spec.rb +110 -0
  3430. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/collector_spec.rb +437 -0
  3431. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/compiler_spec.rb +785 -0
  3432. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/files_spec.rb +203 -0
  3433. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/functions/create_resources_spec.rb +203 -0
  3434. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/functions/defined_spec.rb +52 -0
  3435. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/functions/extlookup_spec.rb +98 -0
  3436. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/functions/fqdn_rand_spec.rb +64 -0
  3437. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/functions/generate_spec.rb +77 -0
  3438. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/functions/include_spec.rb +35 -0
  3439. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/functions/inline_template_spec.rb +61 -0
  3440. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/functions/realize_spec.rb +53 -0
  3441. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/functions/regsubst_spec.rb +194 -0
  3442. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/functions/require_spec.rb +76 -0
  3443. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/functions/shellquote_spec.rb +83 -0
  3444. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/functions/split_spec.rb +51 -0
  3445. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/functions/sprintf_spec.rb +44 -0
  3446. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/functions/tag_spec.rb +27 -0
  3447. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/functions/template_spec.rb +64 -0
  3448. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/functions/versioncmp_spec.rb +31 -0
  3449. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/functions_spec.rb +101 -0
  3450. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/lexer_spec.rb +742 -0
  3451. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/parser_spec.rb +428 -0
  3452. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/relationship_spec.rb +69 -0
  3453. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/resource_spec.rb +659 -0
  3454. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/scope_spec.rb +1004 -0
  3455. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/templatewrapper_spec.rb +142 -0
  3456. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/parser/type_loader_spec.rb +230 -0
  3457. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/property/ensure_spec.rb +12 -0
  3458. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/property/keyvalue_spec.rb +170 -0
  3459. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/property/list_spec.rb +165 -0
  3460. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/property/ordered_list_spec.rb +63 -0
  3461. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/property_spec.rb +510 -0
  3462. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/augeas/augeas_spec.rb +609 -0
  3463. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/cisco_spec.rb +15 -0
  3464. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/confine/exists_spec.rb +73 -0
  3465. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/confine/false_spec.rb +52 -0
  3466. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/confine/feature_spec.rb +57 -0
  3467. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/confine/true_spec.rb +52 -0
  3468. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/confine/variable_spec.rb +106 -0
  3469. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/confine_collection_spec.rb +133 -0
  3470. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/confine_spec.rb +77 -0
  3471. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/confiner_spec.rb +62 -0
  3472. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/exec/posix_spec.rb +116 -0
  3473. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/exec/shell_spec.rb +53 -0
  3474. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/exec/windows_spec.rb +107 -0
  3475. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/exec_spec.rb +35 -0
  3476. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/file/posix_spec.rb +232 -0
  3477. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/file/windows_spec.rb +154 -0
  3478. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/group/groupadd_spec.rb +40 -0
  3479. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/group/ldap_spec.rb +101 -0
  3480. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/group/pw_spec.rb +81 -0
  3481. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/group/windows_adsi_spec.rb +100 -0
  3482. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/host/parsed_spec.rb +197 -0
  3483. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/interface/cisco_spec.rb +57 -0
  3484. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/ldap_spec.rb +244 -0
  3485. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/macauthorization_spec.rb +152 -0
  3486. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/mcx/mcxcontent_spec.rb +156 -0
  3487. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/mount/parsed_spec.rb +289 -0
  3488. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/mount_spec.rb +145 -0
  3489. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/naginator_spec.rb +57 -0
  3490. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/nameservice/directoryservice_spec.rb +209 -0
  3491. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/network_device_spec.rb +152 -0
  3492. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/package/aix_spec.rb +65 -0
  3493. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/package/appdmg_spec.rb +42 -0
  3494. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/package/apt_spec.rb +144 -0
  3495. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/package/dpkg_spec.rb +227 -0
  3496. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/package/freebsd_spec.rb +54 -0
  3497. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/package/gem_spec.rb +143 -0
  3498. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/package/hpux_spec.rb +51 -0
  3499. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/package/macports_spec.rb +122 -0
  3500. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/package/msi_spec.rb +170 -0
  3501. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/package/nim_spec.rb +41 -0
  3502. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/package/openbsd_spec.rb +115 -0
  3503. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/package/pacman_spec.rb +238 -0
  3504. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/package/pip_spec.rb +193 -0
  3505. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/package/pkg_spec.rb +133 -0
  3506. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/package/pkgdmg_spec.rb +89 -0
  3507. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/package/pkgutil_spec.rb +181 -0
  3508. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/package/yum_spec.rb +110 -0
  3509. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/package/zypper_spec.rb +122 -0
  3510. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/parsedfile_spec.rb +94 -0
  3511. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/scheduled_task/win32_taskscheduler_spec.rb +1571 -0
  3512. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/selboolean_spec.rb +36 -0
  3513. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/selmodule-example.pp +0 -0
  3514. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/selmodule_spec.rb +73 -0
  3515. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/service/daemontools_spec.rb +166 -0
  3516. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/service/debian_spec.rb +116 -0
  3517. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/service/freebsd_spec.rb +49 -0
  3518. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/service/gentoo_spec.rb +238 -0
  3519. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/service/init_spec.rb +191 -0
  3520. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/service/launchd_spec.rb +222 -0
  3521. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/service/redhat_spec.rb +121 -0
  3522. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/service/runit_spec.rb +140 -0
  3523. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/service/smf_spec.rb +138 -0
  3524. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/service/src_spec.rb +97 -0
  3525. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/service/systemd_spec.rb +25 -0
  3526. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/service/upstart_spec.rb +509 -0
  3527. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/service/windows_spec.rb +166 -0
  3528. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/ssh_authorized_key/parsed_spec.rb +257 -0
  3529. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/sshkey/parsed_spec.rb +37 -0
  3530. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/user/hpux_spec.rb +24 -0
  3531. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/user/ldap_spec.rb +275 -0
  3532. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/user/pw_spec.rb +202 -0
  3533. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/user/user_role_add_spec.rb +303 -0
  3534. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/user/useradd_spec.rb +215 -0
  3535. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/user/windows_adsi_spec.rb +151 -0
  3536. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/vlan/cisco_spec.rb +55 -0
  3537. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/zfs/solaris_spec.rb +99 -0
  3538. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/zone/solaris_spec.rb +54 -0
  3539. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider/zpool/solaris_spec.rb +208 -0
  3540. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/provider_spec.rb +62 -0
  3541. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/puppet/provider/README.markdown +4 -0
  3542. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/puppet/type/README.markdown +4 -0
  3543. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/puppet_spec.rb +12 -0
  3544. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/rails/host_spec.rb +162 -0
  3545. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/rails/param_value_spec.rb +42 -0
  3546. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/rails/resource_spec.rb +115 -0
  3547. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/rails_spec.rb +244 -0
  3548. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/rb_tree_map_spec.rb +572 -0
  3549. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/relationship_spec.rb +228 -0
  3550. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/reports/http_spec.rb +71 -0
  3551. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/reports/rrdgraph_spec.rb +30 -0
  3552. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/reports/store_spec.rb +76 -0
  3553. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/reports/tagmail_spec.rb +218 -0
  3554. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/reports_spec.rb +60 -0
  3555. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/resource/catalog_spec.rb +1131 -0
  3556. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/resource/status_spec.rb +154 -0
  3557. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/resource/type_collection_helper_spec.rb +24 -0
  3558. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/resource/type_collection_spec.rb +451 -0
  3559. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/resource/type_spec.rb +768 -0
  3560. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/resource_spec.rb +856 -0
  3561. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/run_spec.rb +136 -0
  3562. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/semver_spec.rb +298 -0
  3563. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/simple_graph_spec.rb +919 -0
  3564. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/ssl/base_spec.rb +42 -0
  3565. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/ssl/certificate_authority/interface_spec.rb +375 -0
  3566. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/ssl/certificate_authority_spec.rb +947 -0
  3567. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/ssl/certificate_factory_spec.rb +126 -0
  3568. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/ssl/certificate_request_spec.rb +277 -0
  3569. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/ssl/certificate_revocation_list_spec.rb +167 -0
  3570. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/ssl/certificate_spec.rb +154 -0
  3571. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/ssl/host_spec.rb +863 -0
  3572. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/ssl/inventory_spec.rb +179 -0
  3573. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/ssl/key_spec.rb +197 -0
  3574. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/status_spec.rb +34 -0
  3575. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/transaction/event_manager_spec.rb +261 -0
  3576. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/transaction/event_spec.rb +128 -0
  3577. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/transaction/report_spec.rb +346 -0
  3578. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/transaction/resource_harness_spec.rb +484 -0
  3579. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/transaction_spec.rb +833 -0
  3580. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/transportable_spec.rb +0 -0
  3581. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/augeas_spec.rb +119 -0
  3582. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/component_spec.rb +62 -0
  3583. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/computer_spec.rb +80 -0
  3584. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/cron_spec.rb +497 -0
  3585. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/exec_spec.rb +712 -0
  3586. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/file/checksum_spec.rb +73 -0
  3587. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/file/content_spec.rb +437 -0
  3588. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/file/ctime.rb +34 -0
  3589. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/file/ensure_spec.rb +84 -0
  3590. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/file/group_spec.rb +60 -0
  3591. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/file/mode_spec.rb +142 -0
  3592. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/file/mtime.rb +34 -0
  3593. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/file/owner_spec.rb +58 -0
  3594. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/file/selinux_spec.rb +89 -0
  3595. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/file/source_spec.rb +358 -0
  3596. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/file/type.rb +19 -0
  3597. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/file_spec.rb +1523 -0
  3598. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/filebucket_spec.rb +103 -0
  3599. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/group_spec.rb +54 -0
  3600. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/host_spec.rb +656 -0
  3601. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/interface_spec.rb +97 -0
  3602. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/k5login_spec.rb +115 -0
  3603. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/macauthorization_spec.rb +110 -0
  3604. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/maillist_spec.rb +41 -0
  3605. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/mcx_spec.rb +79 -0
  3606. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/mount_spec.rb +329 -0
  3607. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/nagios_spec.rb +62 -0
  3608. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/noop_metaparam_spec.rb +38 -0
  3609. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/package_spec.rb +286 -0
  3610. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/resources_spec.rb +100 -0
  3611. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/schedule_spec.rb +343 -0
  3612. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/scheduled_task_spec.rb +102 -0
  3613. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/selboolean_spec.rb +44 -0
  3614. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/selmodule_spec.rb +17 -0
  3615. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/service_spec.rb +248 -0
  3616. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/ssh_authorized_key_spec.rb +255 -0
  3617. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/sshkey_spec.rb +68 -0
  3618. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/stage_spec.rb +8 -0
  3619. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/tidy_spec.rb +426 -0
  3620. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/user_spec.rb +340 -0
  3621. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/vlan_spec.rb +44 -0
  3622. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/whit_spec.rb +10 -0
  3623. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/zfs_spec.rb +44 -0
  3624. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/zone_spec.rb +79 -0
  3625. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type/zpool_spec.rb +109 -0
  3626. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/type_spec.rb +777 -0
  3627. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/adsi_spec.rb +232 -0
  3628. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/autoload/file_cache_spec.rb +158 -0
  3629. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/autoload_spec.rb +123 -0
  3630. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/backups_spec.rb +160 -0
  3631. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/cache_accumulator_spec.rb +74 -0
  3632. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/cacher_spec.rb +107 -0
  3633. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/checksums_spec.rb +175 -0
  3634. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/colors_spec.rb +69 -0
  3635. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/command_line_spec.rb +140 -0
  3636. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/constant_inflector_spec.rb +66 -0
  3637. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/diff_spec.rb +30 -0
  3638. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/errors_spec.rb +37 -0
  3639. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/execution_spec.rb +48 -0
  3640. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/execution_stub_spec.rb +39 -0
  3641. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/feature_spec.rb +71 -0
  3642. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/file_locking_spec.rb +159 -0
  3643. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/filetype_spec.rb +99 -0
  3644. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/inline_docs_spec.rb +31 -0
  3645. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/instrumentation/data_spec.rb +44 -0
  3646. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/instrumentation/indirection_probe_spec.rb +19 -0
  3647. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/instrumentation/instrumentable_spec.rb +186 -0
  3648. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/instrumentation/listener_spec.rb +100 -0
  3649. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/instrumentation/listeners/log_spec.rb +34 -0
  3650. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/instrumentation/listeners/performance_spec.rb +36 -0
  3651. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/instrumentation_spec.rb +181 -0
  3652. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/ldap/connection_spec.rb +165 -0
  3653. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/ldap/generator_spec.rb +50 -0
  3654. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/ldap/manager_spec.rb +650 -0
  3655. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/loadedfile_spec.rb +71 -0
  3656. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/log/destinations_spec.rb +166 -0
  3657. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/log_spec.rb +307 -0
  3658. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/logging_spec.rb +119 -0
  3659. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/metric_spec.rb +94 -0
  3660. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/monkey_patches_spec.rb +174 -0
  3661. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/nagios_maker_spec.rb +122 -0
  3662. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/network_device/cisco/device_spec.rb +408 -0
  3663. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/network_device/cisco/facts_spec.rb +64 -0
  3664. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/network_device/cisco/interface_spec.rb +88 -0
  3665. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/network_device/config_spec.rb +110 -0
  3666. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/network_device/ipcalc_spec.rb +62 -0
  3667. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/network_device/transport/base_spec.rb +41 -0
  3668. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/network_device/transport/ssh_spec.rb +218 -0
  3669. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/network_device/transport/telnet_spec.rb +84 -0
  3670. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/network_device_spec.rb +50 -0
  3671. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/package_spec.rb +20 -0
  3672. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/posix_spec.rb +255 -0
  3673. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/pson_spec.rb +52 -0
  3674. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/queue/stomp_spec.rb +140 -0
  3675. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/queue_spec.rb +95 -0
  3676. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/rdoc/parser_spec.rb +592 -0
  3677. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/rdoc_spec.rb +147 -0
  3678. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/reference_serializer_spec.rb +51 -0
  3679. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/reference_spec.rb +39 -0
  3680. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/resource_template_spec.rb +57 -0
  3681. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/retryaction_spec.rb +62 -0
  3682. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/run_mode_spec.rb +54 -0
  3683. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/selinux_spec.rb +277 -0
  3684. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/settings/file_setting_spec.rb +299 -0
  3685. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/settings_spec.rb +1088 -0
  3686. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/storage_spec.rb +233 -0
  3687. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/suidmanager_spec.rb +283 -0
  3688. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/symbolic_file_mode_spec.rb +182 -0
  3689. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/tagging_spec.rb +98 -0
  3690. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/terminal_spec.rb +42 -0
  3691. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/user_attr_spec.rb +46 -0
  3692. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/warnings_spec.rb +38 -0
  3693. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util/zaml_spec.rb +106 -0
  3694. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/unit/util_spec.rb +801 -0
  3695. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/watchr.rb +146 -0
  3696. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/tasks/rake/apple.rake +176 -0
  3697. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/tasks/rake/changelog.rake +15 -0
  3698. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/tasks/rake/ci.rake +22 -0
  3699. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/tasks/rake/dailybuild.rake +9 -0
  3700. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/tasks/rake/gem.rake +60 -0
  3701. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/tasks/rake/git_workflow.rake +134 -0
  3702. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/tasks/rake/manpages.rake +77 -0
  3703. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/tasks/rake/metrics.rake +6 -0
  3704. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/tasks/rake/sign.rake +14 -0
  3705. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/tasks/rake/templates/prototype.plist.erb +38 -0
  3706. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/tasks/rake/testbranch.rake +16 -0
  3707. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/tasks/rake/yard.rake +11 -0
  3708. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/README +24 -0
  3709. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/Rakefile +96 -0
  3710. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/failers/badclassnoparam +10 -0
  3711. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/failers/badclassparam +10 -0
  3712. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/failers/badcompnoparam +9 -0
  3713. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/failers/badcompparam +9 -0
  3714. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/failers/badtypeparam +3 -0
  3715. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/failers/noobjectrvalue +1 -0
  3716. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/cron/crontab.allthree +17 -0
  3717. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/cron/crontab.envNcomment +12 -0
  3718. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/cron/crontab.envNname +11 -0
  3719. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/cron/crontab.multirecords +12 -0
  3720. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/cron/crontab_collections.yaml +44 -0
  3721. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/cron/crontab_multiple_with_env.yaml +54 -0
  3722. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/cron/crontab_sample_records.yaml +272 -0
  3723. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/cron/examples/freebsd +2 -0
  3724. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/cron/examples/one +14 -0
  3725. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/cron/examples/openbsd +20 -0
  3726. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/host/parsed/valid_hosts +19 -0
  3727. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/mailalias/aliases/test1 +28 -0
  3728. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/mount/parsed/aix.mount +7 -0
  3729. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/mount/parsed/darwin.mount +6 -0
  3730. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/mount/parsed/hpux.mount +17 -0
  3731. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/mount/parsed/linux.mount +5 -0
  3732. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/mount/parsed/solaris.mount +6 -0
  3733. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/package/testpackages.yaml +65 -0
  3734. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/ssh_authorized_key/parsed/authorized_keys +7 -0
  3735. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/ssh_authorized_key/parsed/authorized_keys1 +3 -0
  3736. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/providers/ssh_authorized_key/parsed/authorized_keys2 +1 -0
  3737. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/reports/1.yaml +108 -0
  3738. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/reports/2.yaml +108 -0
  3739. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/reports/tagmail_failers.conf +3 -0
  3740. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/reports/tagmail_passers.conf +30 -0
  3741. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/aliastest.pp +16 -0
  3742. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/append.pp +11 -0
  3743. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/argumentdefaults +14 -0
  3744. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/arithmetic_expression.pp +8 -0
  3745. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/arraytrailingcomma.pp +3 -0
  3746. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/casestatement.pp +65 -0
  3747. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/classheirarchy.pp +15 -0
  3748. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/classincludes.pp +17 -0
  3749. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/classpathtest +11 -0
  3750. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/collection.pp +10 -0
  3751. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/collection_override.pp +8 -0
  3752. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/collection_within_virtual_definitions.pp +20 -0
  3753. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/componentmetaparams.pp +11 -0
  3754. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/componentrequire.pp +8 -0
  3755. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/deepclassheirarchy.pp +23 -0
  3756. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/defineoverrides.pp +17 -0
  3757. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/emptyclass.pp +9 -0
  3758. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/emptyexec.pp +3 -0
  3759. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/emptyifelse.pp +9 -0
  3760. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/falsevalues.pp +3 -0
  3761. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/filecreate +11 -0
  3762. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/fqdefinition.pp +5 -0
  3763. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/fqparents.pp +11 -0
  3764. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/funccomma.pp +5 -0
  3765. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/hash.pp +33 -0
  3766. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/ifexpression.pp +12 -0
  3767. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/implicititeration +15 -0
  3768. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/multilinecomments.pp +10 -0
  3769. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/multipleclass.pp +9 -0
  3770. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/multipleinstances +7 -0
  3771. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/multisubs.pp +13 -0
  3772. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/namevartest +9 -0
  3773. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/scopetest +13 -0
  3774. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/selectorvalues.pp +49 -0
  3775. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/simpledefaults +5 -0
  3776. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/simpleselector +38 -0
  3777. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/singleary.pp +19 -0
  3778. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/singlequote.pp +11 -0
  3779. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/singleselector.pp +22 -0
  3780. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/subclass_name_duplication.pp +11 -0
  3781. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/tag.pp +9 -0
  3782. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/tagged.pp +35 -0
  3783. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/snippets/virtualresources.pp +14 -0
  3784. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/types/hosts/1 +3 -0
  3785. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/types/hosts/2 +13 -0
  3786. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/types/hosts/solaris +5 -0
  3787. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/types/mailalias/file1 +183 -0
  3788. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/types/mount/freebsd.fstab +7 -0
  3789. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/types/mount/linux.fstab +12 -0
  3790. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/types/mount/solaris.fstab +12 -0
  3791. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/types/port/1 +533 -0
  3792. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/types/port/darwin +11866 -0
  3793. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/types/ssh_authorized_key/1 +2 -0
  3794. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/types/sshkey/1 +21 -0
  3795. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/types/yumrepos/fedora-devel.repo +26 -0
  3796. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/data/types/yumrepos/fedora.repo +9 -0
  3797. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/language/ast.rb +90 -0
  3798. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/language/ast/variable.rb +25 -0
  3799. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/language/functions.rb +540 -0
  3800. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/language/parser.rb +738 -0
  3801. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/language/scope.rb +266 -0
  3802. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/language/snippets.rb +513 -0
  3803. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/language/transportable.rb +87 -0
  3804. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/puppettest.rb +318 -0
  3805. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/puppettest/certificates.rb +74 -0
  3806. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/puppettest/exetest.rb +125 -0
  3807. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/puppettest/fakes.rb +199 -0
  3808. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/puppettest/fileparsing.rb +28 -0
  3809. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/puppettest/filetesting.rb +221 -0
  3810. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/puppettest/parsertesting.rb +425 -0
  3811. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/puppettest/railstesting.rb +18 -0
  3812. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/puppettest/reporttesting.rb +16 -0
  3813. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/puppettest/resourcetesting.rb +54 -0
  3814. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/puppettest/runnable_test.rb +43 -0
  3815. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/puppettest/servertest.rb +77 -0
  3816. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/puppettest/support.rb +8 -0
  3817. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/puppettest/support/assertions.rb +69 -0
  3818. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/puppettest/support/helpers.rb +18 -0
  3819. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/puppettest/support/resources.rb +31 -0
  3820. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/puppettest/support/utils.rb +141 -0
  3821. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/puppettest/testcase.rb +24 -0
  3822. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/rake/puppet_test_loader.rb +14 -0
  3823. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/rake/puppet_testtask.rb +19 -0
  3824. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/lib/stubba.rb +2 -0
  3825. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/network/authconfig.rb +69 -0
  3826. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/network/authorization.rb +138 -0
  3827. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/network/authstore.rb +540 -0
  3828. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/network/client_request.rb +38 -0
  3829. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/network/handler/fileserver.rb +1266 -0
  3830. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/network/handler/master.rb +93 -0
  3831. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/network/handler/report.rb +83 -0
  3832. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/network/handler/runner.rb +20 -0
  3833. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/network/rights.rb +40 -0
  3834. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/network/xmlrpc/processor.rb +79 -0
  3835. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/network/xmlrpc/server.rb +26 -0
  3836. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/network/xmlrpc/webrick_servlet.rb +35 -0
  3837. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/other/provider.rb +90 -0
  3838. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/other/puppet.rb +85 -0
  3839. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/other/relationships.rb +91 -0
  3840. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/other/report.rb +135 -0
  3841. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/other/transactions.rb +395 -0
  3842. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/puppet/defaults.rb +69 -0
  3843. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/puppet/errortest.rb +19 -0
  3844. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/rails/rails.rb +24 -0
  3845. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/rails/railsparameter.rb +80 -0
  3846. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/manager/attributes.rb +296 -0
  3847. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/manager/instances.rb +88 -0
  3848. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/manager/manager.rb +50 -0
  3849. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/manager/provider.rb +84 -0
  3850. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/manager/type.rb +361 -0
  3851. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/providers/cron/crontab.rb +652 -0
  3852. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/providers/group.rb +242 -0
  3853. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/providers/host/parsed.rb +32 -0
  3854. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/providers/mailalias/aliases.rb +55 -0
  3855. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/providers/nameservice.rb +32 -0
  3856. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/providers/package.rb +245 -0
  3857. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/providers/package/aptitude.rb +83 -0
  3858. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/providers/package/aptrpm.rb +100 -0
  3859. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/providers/parsedfile.rb +695 -0
  3860. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/providers/port/parsed.rb +232 -0
  3861. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/providers/provider.rb +529 -0
  3862. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/providers/service/base.rb +76 -0
  3863. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/providers/sshkey/parsed.rb +112 -0
  3864. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/providers/user.rb +586 -0
  3865. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/providers/user/useradd.rb +233 -0
  3866. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/type/cron.rb +505 -0
  3867. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/type/exec.rb +717 -0
  3868. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/type/file.rb +912 -0
  3869. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/type/file/target.rb +346 -0
  3870. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/type/fileignoresource.rb +265 -0
  3871. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/type/filesources.rb +446 -0
  3872. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/type/host.rb +180 -0
  3873. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/type/mailalias.rb +45 -0
  3874. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/type/port.rb +147 -0
  3875. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/type/resources.rb +104 -0
  3876. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/type/service.rb +38 -0
  3877. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/type/sshkey.rb +148 -0
  3878. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/type/user.rb +167 -0
  3879. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/type/yumrepo.rb +116 -0
  3880. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/ral/type/zone.rb +447 -0
  3881. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/test +241 -0
  3882. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/util/classgen.rb +241 -0
  3883. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/util/execution.rb +33 -0
  3884. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/util/fileparsing.rb +725 -0
  3885. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/util/inifile.rb +138 -0
  3886. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/util/instance_loader.rb +52 -0
  3887. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/util/log.rb +219 -0
  3888. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/util/metrics.rb +72 -0
  3889. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/util/package.rb +25 -0
  3890. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/util/pidlock.rb +125 -0
  3891. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/util/settings.rb +773 -0
  3892. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/util/storage.rb +81 -0
  3893. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/util/subclass_loader.rb +89 -0
  3894. data/vendor/gems/ruby/1.8/gems/puppet-2.7.18/test/util/utiltest.rb +223 -0
  3895. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/CHANGES +522 -0
  3896. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/MIT-LICENSE +21 -0
  3897. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/README.rdoc +197 -0
  3898. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/Rakefile +369 -0
  3899. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/TODO +20 -0
  3900. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/bin/rake +33 -0
  3901. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/command_line_usage.rdoc +114 -0
  3902. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/example/Rakefile1 +38 -0
  3903. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/example/Rakefile2 +35 -0
  3904. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/example/a.c +6 -0
  3905. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/example/b.c +6 -0
  3906. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/example/main.c +11 -0
  3907. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/glossary.rdoc +51 -0
  3908. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/jamis.rb +591 -0
  3909. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/proto_rake.rdoc +127 -0
  3910. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/rake.1.gz +0 -0
  3911. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/rakefile.rdoc +557 -0
  3912. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/rational.rdoc +151 -0
  3913. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.4.14.rdoc +23 -0
  3914. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.4.15.rdoc +35 -0
  3915. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.5.0.rdoc +53 -0
  3916. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.5.3.rdoc +78 -0
  3917. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.5.4.rdoc +46 -0
  3918. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.6.0.rdoc +141 -0
  3919. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.7.0.rdoc +119 -0
  3920. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.7.1.rdoc +59 -0
  3921. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.7.2.rdoc +121 -0
  3922. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.7.3.rdoc +47 -0
  3923. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.8.0.rdoc +114 -0
  3924. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.8.2.rdoc +165 -0
  3925. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.8.3.rdoc +112 -0
  3926. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.8.4.rdoc +147 -0
  3927. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.8.5.rdoc +53 -0
  3928. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.8.6.rdoc +55 -0
  3929. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.8.7.rdoc +55 -0
  3930. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.9.0.rdoc +112 -0
  3931. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.9.1.rdoc +52 -0
  3932. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/doc/release_notes/rake-0.9.2.rdoc +49 -0
  3933. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/install.rb +90 -0
  3934. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake.rb +69 -0
  3935. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/alt_system.rb +109 -0
  3936. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/application.rb +595 -0
  3937. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/classic_namespace.rb +11 -0
  3938. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/clean.rb +32 -0
  3939. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/cloneable.rb +25 -0
  3940. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/contrib/compositepublisher.rb +21 -0
  3941. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/contrib/ftptools.rb +150 -0
  3942. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/contrib/publisher.rb +73 -0
  3943. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/contrib/rubyforgepublisher.rb +16 -0
  3944. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/contrib/sshpublisher.rb +50 -0
  3945. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/contrib/sys.rb +191 -0
  3946. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/default_loader.rb +10 -0
  3947. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/dsl_definition.rb +176 -0
  3948. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/early_time.rb +18 -0
  3949. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/ext/core.rb +27 -0
  3950. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/ext/module.rb +39 -0
  3951. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/ext/string.rb +167 -0
  3952. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/ext/time.rb +14 -0
  3953. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/file_creation_task.rb +24 -0
  3954. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/file_list.rb +403 -0
  3955. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/file_task.rb +47 -0
  3956. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/file_utils.rb +114 -0
  3957. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/file_utils_ext.rb +145 -0
  3958. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/gempackagetask.rb +15 -0
  3959. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/invocation_chain.rb +51 -0
  3960. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/invocation_exception_mixin.rb +16 -0
  3961. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/loaders/makefile.rb +40 -0
  3962. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/multi_task.rb +16 -0
  3963. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/name_space.rb +25 -0
  3964. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/packagetask.rb +185 -0
  3965. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/pathmap.rb +1 -0
  3966. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/pseudo_status.rb +24 -0
  3967. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/rake_module.rb +29 -0
  3968. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/rake_test_loader.rb +22 -0
  3969. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/rdoctask.rb +234 -0
  3970. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/ruby182_test_unit_fix.rb +25 -0
  3971. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/rule_recursion_overflow_error.rb +20 -0
  3972. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/runtest.rb +21 -0
  3973. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/task.rb +327 -0
  3974. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/task_argument_error.rb +7 -0
  3975. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/task_arguments.rb +78 -0
  3976. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/task_manager.rb +307 -0
  3977. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/tasklib.rb +22 -0
  3978. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/testtask.rb +191 -0
  3979. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/version.rb +8 -0
  3980. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/lib/rake/win32.rb +55 -0
  3981. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/file_creation.rb +34 -0
  3982. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/helper.rb +492 -0
  3983. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake.rb +40 -0
  3984. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_application.rb +489 -0
  3985. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_application_options.rb +335 -0
  3986. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_clean.rb +14 -0
  3987. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_definitions.rb +80 -0
  3988. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_directory_task.rb +46 -0
  3989. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_dsl.rb +77 -0
  3990. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_early_time.rb +31 -0
  3991. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_extension.rb +59 -0
  3992. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_file_creation_task.rb +56 -0
  3993. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_file_list.rb +628 -0
  3994. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_file_list_path_map.rb +8 -0
  3995. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_file_task.rb +102 -0
  3996. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_file_utils.rb +305 -0
  3997. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_ftp_file.rb +59 -0
  3998. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_functional.rb +450 -0
  3999. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_invocation_chain.rb +52 -0
  4000. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_makefile_loader.rb +44 -0
  4001. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_multi_task.rb +51 -0
  4002. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_name_space.rb +43 -0
  4003. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_package_task.rb +79 -0
  4004. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_path_map.rb +157 -0
  4005. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_path_map_explode.rb +34 -0
  4006. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_path_map_partial.rb +18 -0
  4007. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_pseudo_status.rb +21 -0
  4008. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_rake_test_loader.rb +21 -0
  4009. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_rdoc_task.rb +83 -0
  4010. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_require.rb +40 -0
  4011. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_rules.rb +327 -0
  4012. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_task.rb +267 -0
  4013. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_task_argument_parsing.rb +103 -0
  4014. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_task_arguments.rb +88 -0
  4015. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_task_lib.rb +9 -0
  4016. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_task_manager.rb +157 -0
  4017. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_task_manager_argument_resolution.rb +36 -0
  4018. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_task_with_arguments.rb +173 -0
  4019. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_test_task.rb +120 -0
  4020. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_top_level_functions.rb +111 -0
  4021. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_rake_win32.rb +72 -0
  4022. data/vendor/gems/ruby/1.8/gems/rake-0.9.2.2/test/test_sys.rb +20 -0
  4023. data/vendor/gems/ruby/1.8/gems/rspec-2.11.0/License.txt +24 -0
  4024. data/vendor/gems/ruby/1.8/gems/rspec-2.11.0/README.md +47 -0
  4025. data/vendor/gems/ruby/1.8/gems/rspec-2.11.0/lib/rspec.rb +4 -0
  4026. data/vendor/gems/ruby/1.8/gems/rspec-2.11.0/lib/rspec/version.rb +5 -0
  4027. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/Changelog.md +570 -0
  4028. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/License.txt +24 -0
  4029. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/README.md +235 -0
  4030. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/exe/autospec +13 -0
  4031. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/exe/rspec +25 -0
  4032. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/Autotest.md +38 -0
  4033. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/README.md +17 -0
  4034. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/Upgrade.md +364 -0
  4035. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/command_line/README.md +28 -0
  4036. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/command_line/example_name_option.feature +101 -0
  4037. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/command_line/exit_status.feature +83 -0
  4038. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/command_line/format_option.feature +81 -0
  4039. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/command_line/init.feature +18 -0
  4040. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/command_line/line_number_appended_to_path.feature +140 -0
  4041. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/command_line/line_number_option.feature +58 -0
  4042. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/command_line/order.feature +29 -0
  4043. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/command_line/pattern_option.feature +31 -0
  4044. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/command_line/rake_task.feature +68 -0
  4045. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/command_line/ruby.feature +22 -0
  4046. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/command_line/tag.feature +91 -0
  4047. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/configuration/alias_example_to.feature +48 -0
  4048. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/configuration/custom_settings.feature +84 -0
  4049. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/configuration/default_path.feature +38 -0
  4050. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/configuration/fail_fast.feature +77 -0
  4051. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/configuration/read_options_from_file.feature +87 -0
  4052. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/example_groups/basic_structure.feature +55 -0
  4053. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/example_groups/shared_context.feature +74 -0
  4054. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/example_groups/shared_examples.feature +204 -0
  4055. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/expectation_framework_integration/configure_expectation_framework.feature +102 -0
  4056. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/filtering/exclusion_filters.feature +139 -0
  4057. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/filtering/if_and_unless.feature +168 -0
  4058. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/filtering/inclusion_filters.feature +105 -0
  4059. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/filtering/run_all_when_everything_filtered.feature +46 -0
  4060. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/formatters/custom_formatter.feature +36 -0
  4061. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/formatters/text_formatter.feature +46 -0
  4062. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/helper_methods/arbitrary_methods.feature +40 -0
  4063. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/helper_methods/let.feature +50 -0
  4064. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/helper_methods/modules.feature +149 -0
  4065. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/hooks/around_hooks.feature +343 -0
  4066. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/hooks/before_and_after_hooks.feature +423 -0
  4067. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/hooks/filtering.feature +234 -0
  4068. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/metadata/current_example.feature +17 -0
  4069. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/metadata/described_class.feature +17 -0
  4070. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/metadata/user_defined.feature +113 -0
  4071. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/mock_framework_integration/use_any_framework.feature +106 -0
  4072. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/mock_framework_integration/use_flexmock.feature +96 -0
  4073. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/mock_framework_integration/use_mocha.feature +97 -0
  4074. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/mock_framework_integration/use_rr.feature +98 -0
  4075. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/mock_framework_integration/use_rspec.feature +97 -0
  4076. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/pending/pending_examples.feature +229 -0
  4077. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/spec_files/arbitrary_file_suffix.feature +13 -0
  4078. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/step_definitions/additional_cli_steps.rb +30 -0
  4079. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/subject/attribute_of_subject.feature +124 -0
  4080. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/subject/explicit_subject.feature +82 -0
  4081. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/subject/implicit_receiver.feature +29 -0
  4082. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/subject/implicit_subject.feature +63 -0
  4083. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/features/support/env.rb +12 -0
  4084. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/autotest/discover.rb +1 -0
  4085. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/autotest/rspec2.rb +73 -0
  4086. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/autorun.rb +2 -0
  4087. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core.rb +126 -0
  4088. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/backward_compatibility.rb +65 -0
  4089. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/command_line.rb +36 -0
  4090. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/configuration.rb +944 -0
  4091. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/configuration_options.rb +129 -0
  4092. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/deprecation.rb +36 -0
  4093. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/drb_command_line.rb +26 -0
  4094. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/drb_options.rb +87 -0
  4095. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/dsl.rb +26 -0
  4096. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/example.rb +330 -0
  4097. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/example_group.rb +466 -0
  4098. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/extensions.rb +4 -0
  4099. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/extensions/instance_eval_with_args.rb +44 -0
  4100. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/extensions/kernel.rb +9 -0
  4101. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/extensions/module_eval_with_args.rb +38 -0
  4102. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/extensions/ordered.rb +21 -0
  4103. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/filter_manager.rb +203 -0
  4104. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/formatters/base_formatter.rb +168 -0
  4105. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/formatters/base_text_formatter.rb +203 -0
  4106. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/formatters/documentation_formatter.rb +67 -0
  4107. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/formatters/helpers.rb +39 -0
  4108. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/formatters/html_formatter.rb +464 -0
  4109. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/formatters/progress_formatter.rb +32 -0
  4110. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/formatters/snippet_extractor.rb +58 -0
  4111. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/formatters/text_mate_formatter.rb +34 -0
  4112. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/hooks.rb +495 -0
  4113. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/let.rb +110 -0
  4114. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/load_path.rb +3 -0
  4115. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/metadata.rb +276 -0
  4116. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/metadata_hash_builder.rb +97 -0
  4117. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/mocking/with_absolutely_nothing.rb +11 -0
  4118. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/mocking/with_flexmock.rb +27 -0
  4119. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/mocking/with_mocha.rb +29 -0
  4120. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/mocking/with_rr.rb +27 -0
  4121. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/mocking/with_rspec.rb +23 -0
  4122. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/option_parser.rb +181 -0
  4123. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/pending.rb +101 -0
  4124. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/project_initializer.rb +87 -0
  4125. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/rake_task.rb +179 -0
  4126. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/reporter.rb +102 -0
  4127. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/ruby_project.rb +44 -0
  4128. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/runner.rb +76 -0
  4129. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/shared_context.rb +49 -0
  4130. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/shared_example_group.rb +96 -0
  4131. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/subject.rb +219 -0
  4132. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/version.rb +7 -0
  4133. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/lib/rspec/core/world.rb +128 -0
  4134. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/autotest/discover_spec.rb +19 -0
  4135. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/autotest/failed_results_re_spec.rb +45 -0
  4136. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/autotest/rspec_spec.rb +123 -0
  4137. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/command_line/order_spec.rb +137 -0
  4138. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/command_line_spec.rb +108 -0
  4139. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/command_line_spec_output.txt +0 -0
  4140. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/configuration_options_spec.rb +377 -0
  4141. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/configuration_spec.rb +1196 -0
  4142. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/deprecations_spec.rb +66 -0
  4143. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/drb_command_line_spec.rb +108 -0
  4144. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/drb_options_spec.rb +180 -0
  4145. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/dsl_spec.rb +17 -0
  4146. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/example_group_spec.rb +1098 -0
  4147. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/example_spec.rb +370 -0
  4148. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/filter_manager_spec.rb +256 -0
  4149. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/formatters/base_formatter_spec.rb +80 -0
  4150. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/formatters/base_text_formatter_spec.rb +363 -0
  4151. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/formatters/documentation_formatter_spec.rb +88 -0
  4152. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/formatters/helpers_spec.rb +66 -0
  4153. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html +410 -0
  4154. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/formatters/html_formatted-1.8.7.html +409 -0
  4155. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/formatters/html_formatted-1.9.2.html +416 -0
  4156. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/formatters/html_formatted-1.9.3.html +416 -0
  4157. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/formatters/html_formatter_spec.rb +82 -0
  4158. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/formatters/progress_formatter_spec.rb +30 -0
  4159. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/formatters/snippet_extractor_spec.rb +18 -0
  4160. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html +410 -0
  4161. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/formatters/text_mate_formatted-1.8.7.html +409 -0
  4162. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/formatters/text_mate_formatted-1.9.2.html +416 -0
  4163. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/formatters/text_mate_formatted-1.9.3.html +416 -0
  4164. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/formatters/text_mate_formatter_spec.rb +83 -0
  4165. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/hooks_filtering_spec.rb +227 -0
  4166. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/hooks_spec.rb +250 -0
  4167. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/kernel_extensions_spec.rb +9 -0
  4168. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/let_spec.rb +55 -0
  4169. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/metadata_spec.rb +447 -0
  4170. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/option_parser_spec.rb +166 -0
  4171. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/pending_example_spec.rb +220 -0
  4172. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/project_initializer_spec.rb +130 -0
  4173. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/rake_task_spec.rb +138 -0
  4174. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/reporter_spec.rb +103 -0
  4175. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/resources/a_bar.rb +0 -0
  4176. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/resources/a_foo.rb +0 -0
  4177. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/resources/a_spec.rb +1 -0
  4178. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/resources/custom_example_group_runner.rb +14 -0
  4179. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/resources/formatter_specs.rb +60 -0
  4180. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/resources/utf8_encoded.rb +8 -0
  4181. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/rspec_matchers_spec.rb +45 -0
  4182. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/ruby_project_spec.rb +24 -0
  4183. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/runner_spec.rb +81 -0
  4184. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/shared_context_spec.rb +67 -0
  4185. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/shared_example_group_spec.rb +84 -0
  4186. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/subject_spec.rb +244 -0
  4187. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core/world_spec.rb +144 -0
  4188. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/rspec/core_spec.rb +35 -0
  4189. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/spec_helper.rb +98 -0
  4190. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/support/config_options_helper.rb +24 -0
  4191. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/support/helper_methods.rb +5 -0
  4192. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/support/matchers.rb +65 -0
  4193. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/support/shared_example_groups.rb +41 -0
  4194. data/vendor/gems/ruby/1.8/gems/rspec-core-2.11.1/spec/support/spec_files.rb +44 -0
  4195. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/Changelog.md +246 -0
  4196. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/License.txt +23 -0
  4197. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/README.md +224 -0
  4198. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/README.md +49 -0
  4199. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/Upgrade.md +53 -0
  4200. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/README.md +90 -0
  4201. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/be.feature +173 -0
  4202. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/be_within.feature +46 -0
  4203. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/cover.feature +45 -0
  4204. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/end_with.feature +46 -0
  4205. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/equality.feature +145 -0
  4206. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/exist.feature +43 -0
  4207. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/expect_change.feature +59 -0
  4208. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/expect_error.feature +138 -0
  4209. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/have.feature +103 -0
  4210. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/include.feature +121 -0
  4211. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/match.feature +50 -0
  4212. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/operators.feature +221 -0
  4213. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/predicates.feature +128 -0
  4214. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/respond_to.feature +78 -0
  4215. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/satisfy.feature +31 -0
  4216. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/start_with.feature +46 -0
  4217. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/throw_symbol.feature +85 -0
  4218. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/types.feature +114 -0
  4219. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/built_in_matchers/yield.feature +146 -0
  4220. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/custom_matchers/access_running_example.feature +53 -0
  4221. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/custom_matchers/define_diffable_matcher.feature +27 -0
  4222. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/custom_matchers/define_matcher.feature +340 -0
  4223. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/custom_matchers/define_matcher_outside_rspec.feature +38 -0
  4224. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/custom_matchers/define_matcher_with_fluent_interface.feature +24 -0
  4225. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/customized_message.feature +22 -0
  4226. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/diffing.feature +85 -0
  4227. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/implicit_docstrings.feature +52 -0
  4228. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/step_definitions/additional_cli_steps.rb +22 -0
  4229. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/support/env.rb +5 -0
  4230. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/syntax_configuration.feature +68 -0
  4231. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/features/test_frameworks/test_unit.feature +46 -0
  4232. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec-expectations.rb +1 -0
  4233. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/expectations.rb +47 -0
  4234. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/expectations/deprecation.rb +38 -0
  4235. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/expectations/differ.rb +81 -0
  4236. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/expectations/errors.rb +9 -0
  4237. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/expectations/expectation_target.rb +58 -0
  4238. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/expectations/extensions.rb +2 -0
  4239. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/expectations/extensions/array.rb +9 -0
  4240. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/expectations/extensions/object.rb +39 -0
  4241. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/expectations/fail_with.rb +55 -0
  4242. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/expectations/handler.rb +48 -0
  4243. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/expectations/syntax.rb +110 -0
  4244. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/expectations/version.rb +8 -0
  4245. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers.rb +689 -0
  4246. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/be_close.rb +9 -0
  4247. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in.rb +39 -0
  4248. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/base_matcher.rb +68 -0
  4249. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/be.rb +185 -0
  4250. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/be_instance_of.rb +11 -0
  4251. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/be_kind_of.rb +11 -0
  4252. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/be_within.rb +45 -0
  4253. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/change.rb +132 -0
  4254. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/cover.rb +21 -0
  4255. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/eq.rb +22 -0
  4256. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/eql.rb +23 -0
  4257. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/equal.rb +44 -0
  4258. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/exist.rb +26 -0
  4259. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/has.rb +47 -0
  4260. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/have.rb +107 -0
  4261. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/include.rb +51 -0
  4262. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/match.rb +12 -0
  4263. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/match_array.rb +45 -0
  4264. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/raise_error.rb +96 -0
  4265. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/respond_to.rb +73 -0
  4266. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/satisfy.rb +29 -0
  4267. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/start_and_end_with.rb +48 -0
  4268. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/throw_symbol.rb +93 -0
  4269. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/built_in/yield.rb +219 -0
  4270. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/compatibility.rb +14 -0
  4271. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/configuration.rb +66 -0
  4272. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/dsl.rb +24 -0
  4273. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/extensions/instance_eval_with_args.rb +39 -0
  4274. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/generated_descriptions.rb +36 -0
  4275. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/matcher.rb +299 -0
  4276. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/method_missing.rb +12 -0
  4277. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/operator_matcher.rb +84 -0
  4278. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/lib/rspec/matchers/pretty.rb +60 -0
  4279. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/expectations/differ_spec.rb +153 -0
  4280. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/expectations/expectation_target_spec.rb +65 -0
  4281. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/expectations/extensions/kernel_spec.rb +67 -0
  4282. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/expectations/fail_with_spec.rb +70 -0
  4283. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/expectations/handler_spec.rb +206 -0
  4284. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/base_matcher_spec.rb +60 -0
  4285. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/be_close_spec.rb +22 -0
  4286. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/be_instance_of_spec.rb +36 -0
  4287. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/be_kind_of_spec.rb +33 -0
  4288. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/be_spec.rb +452 -0
  4289. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/be_within_spec.rb +76 -0
  4290. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/change_spec.rb +522 -0
  4291. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/configuration_spec.rb +160 -0
  4292. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/cover_spec.rb +65 -0
  4293. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/description_generation_spec.rb +176 -0
  4294. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/dsl_spec.rb +57 -0
  4295. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/eq_spec.rb +50 -0
  4296. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/eql_spec.rb +37 -0
  4297. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/equal_spec.rb +57 -0
  4298. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/exist_spec.rb +104 -0
  4299. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/has_spec.rb +113 -0
  4300. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/have_spec.rb +458 -0
  4301. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/include_spec.rb +363 -0
  4302. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/match_array_spec.rb +120 -0
  4303. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/match_spec.rb +57 -0
  4304. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/matcher_spec.rb +434 -0
  4305. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/matchers_spec.rb +31 -0
  4306. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/method_missing_spec.rb +24 -0
  4307. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/operator_matcher_spec.rb +221 -0
  4308. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/raise_error_spec.rb +339 -0
  4309. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/respond_to_spec.rb +292 -0
  4310. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/satisfy_spec.rb +40 -0
  4311. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/start_with_end_with_spec.rb +174 -0
  4312. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/throw_symbol_spec.rb +111 -0
  4313. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/rspec/matchers/yield_spec.rb +374 -0
  4314. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/spec_helper.rb +27 -0
  4315. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/support/classes.rb +56 -0
  4316. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/support/in_sub_process.rb +31 -0
  4317. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/support/matchers.rb +22 -0
  4318. data/vendor/gems/ruby/1.8/gems/rspec-expectations-2.11.2/spec/support/ruby_version.rb +10 -0
  4319. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/Changelog.md +199 -0
  4320. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/License.txt +23 -0
  4321. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/README.md +276 -0
  4322. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/README.md +67 -0
  4323. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/Scope.md +17 -0
  4324. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/Upgrade.md +22 -0
  4325. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/argument_matchers/README.md +27 -0
  4326. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/argument_matchers/explicit.feature +60 -0
  4327. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/argument_matchers/general_matchers.feature +85 -0
  4328. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/argument_matchers/type_matchers.feature +25 -0
  4329. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/message_expectations/README.md +58 -0
  4330. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/message_expectations/any_instance.feature +21 -0
  4331. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/message_expectations/block_local_expectations.feature.pending +55 -0
  4332. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/message_expectations/expect_message.feature +94 -0
  4333. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/message_expectations/receive_counts.feature +209 -0
  4334. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/message_expectations/warn_when_expectation_is_set_on_nil.feature +50 -0
  4335. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/method_stubs/README.md +43 -0
  4336. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/method_stubs/any_instance.feature +133 -0
  4337. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/method_stubs/as_null_object.feature +35 -0
  4338. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/method_stubs/simple_return_value.feature +64 -0
  4339. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/method_stubs/stub_chain.feature +51 -0
  4340. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/method_stubs/stub_implementation.feature +26 -0
  4341. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/method_stubs/to_ary.feature +47 -0
  4342. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/outside_rspec/configuration.feature +82 -0
  4343. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/outside_rspec/standalone.feature +32 -0
  4344. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/step_definitions/additional_cli_steps.rb +4 -0
  4345. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/stubbing_constants/README.md +62 -0
  4346. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/stubbing_constants/stub_defined_constant.feature +79 -0
  4347. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/stubbing_constants/stub_undefined_constant.feature +50 -0
  4348. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/features/support/env.rb +6 -0
  4349. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks.rb +39 -0
  4350. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/any_instance.rb +81 -0
  4351. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/any_instance/chain.rb +77 -0
  4352. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/any_instance/expectation_chain.rb +57 -0
  4353. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/any_instance/message_chains.rb +60 -0
  4354. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/any_instance/recorder.rb +197 -0
  4355. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/any_instance/stub_chain.rb +37 -0
  4356. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/any_instance/stub_chain_chain.rb +25 -0
  4357. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/argument_list_matcher.rb +93 -0
  4358. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/argument_matchers.rb +238 -0
  4359. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/error_generator.rb +114 -0
  4360. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/errors.rb +12 -0
  4361. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/example_methods.rb +95 -0
  4362. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/extensions/instance_exec.rb +34 -0
  4363. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/extensions/marshal.rb +23 -0
  4364. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/extensions/psych.rb +23 -0
  4365. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/framework.rb +20 -0
  4366. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/message_expectation.rb +488 -0
  4367. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/method_double.rb +196 -0
  4368. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/methods.rb +155 -0
  4369. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/mock.rb +7 -0
  4370. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/order_group.rb +40 -0
  4371. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/proxy.rb +190 -0
  4372. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/serialization.rb +34 -0
  4373. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/space.rb +34 -0
  4374. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/standalone.rb +3 -0
  4375. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/stub_const.rb +280 -0
  4376. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/test_double.rb +103 -0
  4377. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/rspec/mocks/version.rb +7 -0
  4378. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/lib/spec/mocks.rb +2 -0
  4379. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/and_yield_spec.rb +114 -0
  4380. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/any_instance/message_chains_spec.rb +40 -0
  4381. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/any_instance_spec.rb +825 -0
  4382. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/any_number_of_times_spec.rb +30 -0
  4383. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/argument_expectation_spec.rb +34 -0
  4384. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/at_least_spec.rb +142 -0
  4385. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/at_most_spec.rb +90 -0
  4386. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/block_return_value_spec.rb +53 -0
  4387. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/bug_report_10260_spec.rb +8 -0
  4388. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/bug_report_10263_spec.rb +25 -0
  4389. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/bug_report_11545_spec.rb +32 -0
  4390. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/bug_report_496_spec.rb +17 -0
  4391. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/bug_report_600_spec.rb +22 -0
  4392. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/bug_report_7611_spec.rb +16 -0
  4393. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/bug_report_8165_spec.rb +31 -0
  4394. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/bug_report_830_spec.rb +21 -0
  4395. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/bug_report_957_spec.rb +22 -0
  4396. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/double_spec.rb +12 -0
  4397. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/failing_argument_matchers_spec.rb +95 -0
  4398. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/hash_excluding_matcher_spec.rb +67 -0
  4399. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/hash_including_matcher_spec.rb +90 -0
  4400. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/mock_ordering_spec.rb +103 -0
  4401. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/mock_space_spec.rb +58 -0
  4402. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/mock_spec.rb +730 -0
  4403. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/multiple_return_value_spec.rb +119 -0
  4404. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/nil_expectation_warning_spec.rb +62 -0
  4405. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/null_object_mock_spec.rb +106 -0
  4406. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/once_counts_spec.rb +52 -0
  4407. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/options_hash_spec.rb +35 -0
  4408. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/partial_mock_spec.rb +156 -0
  4409. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/partial_mock_using_mocks_directly_spec.rb +95 -0
  4410. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/passing_argument_matchers_spec.rb +142 -0
  4411. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/precise_counts_spec.rb +68 -0
  4412. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/record_messages_spec.rb +26 -0
  4413. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/serialization_spec.rb +111 -0
  4414. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/stash_spec.rb +27 -0
  4415. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/stub_chain_spec.rb +149 -0
  4416. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/stub_const_spec.rb +309 -0
  4417. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/stub_implementation_spec.rb +68 -0
  4418. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/stub_spec.rb +238 -0
  4419. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/stubbed_message_expectations_spec.rb +47 -0
  4420. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/test_double_spec.rb +57 -0
  4421. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/to_ary_spec.rb +40 -0
  4422. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks/twice_counts_spec.rb +66 -0
  4423. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/rspec/mocks_spec.rb +51 -0
  4424. data/vendor/gems/ruby/1.8/gems/rspec-mocks-2.11.1/spec/spec_helper.rb +15 -0
  4425. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/CHANGELOG.rdoc +131 -0
  4426. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/Gemfile +15 -0
  4427. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/LICENSE.md +20 -0
  4428. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/README.md +28 -0
  4429. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/Thorfile +30 -0
  4430. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/bin/rake2thor +86 -0
  4431. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/bin/thor +6 -0
  4432. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor.rb +379 -0
  4433. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/actions.rb +318 -0
  4434. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/actions/create_file.rb +105 -0
  4435. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/actions/create_link.rb +57 -0
  4436. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/actions/directory.rb +98 -0
  4437. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/actions/empty_directory.rb +153 -0
  4438. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/actions/file_manipulation.rb +308 -0
  4439. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/actions/inject_into_file.rb +109 -0
  4440. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/base.rb +640 -0
  4441. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/core_ext/dir_escape.rb +0 -0
  4442. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/core_ext/file_binary_read.rb +9 -0
  4443. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/core_ext/hash_with_indifferent_access.rb +75 -0
  4444. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/core_ext/ordered_hash.rb +100 -0
  4445. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/error.rb +35 -0
  4446. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/group.rb +285 -0
  4447. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/invocation.rb +170 -0
  4448. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/parser.rb +4 -0
  4449. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/parser/argument.rb +69 -0
  4450. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/parser/arguments.rb +165 -0
  4451. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/parser/option.rb +121 -0
  4452. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/parser/options.rb +178 -0
  4453. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/rake_compat.rb +71 -0
  4454. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/runner.rb +321 -0
  4455. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/shell.rb +88 -0
  4456. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/shell/basic.rb +389 -0
  4457. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/shell/color.rb +144 -0
  4458. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/shell/html.rb +123 -0
  4459. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/task.rb +132 -0
  4460. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/util.rb +266 -0
  4461. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/lib/thor/version.rb +3 -0
  4462. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/actions/create_file_spec.rb +170 -0
  4463. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/actions/create_link_spec.rb +81 -0
  4464. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/actions/directory_spec.rb +149 -0
  4465. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/actions/empty_directory_spec.rb +130 -0
  4466. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/actions/file_manipulation_spec.rb +370 -0
  4467. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/actions/inject_into_file_spec.rb +135 -0
  4468. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/actions_spec.rb +331 -0
  4469. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/base_spec.rb +274 -0
  4470. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/core_ext/hash_with_indifferent_access_spec.rb +43 -0
  4471. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/core_ext/ordered_hash_spec.rb +115 -0
  4472. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/exit_condition_spec.rb +19 -0
  4473. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/fixtures/application.rb +2 -0
  4474. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/fixtures/app{1}/README +3 -0
  4475. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/fixtures/bundle/execute.rb +6 -0
  4476. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/fixtures/bundle/main.thor +1 -0
  4477. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/fixtures/doc/%file_name%.rb.tt +1 -0
  4478. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/fixtures/doc/COMMENTER +10 -0
  4479. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/fixtures/doc/README +3 -0
  4480. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/fixtures/doc/block_helper.rb +3 -0
  4481. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/fixtures/doc/config.rb +1 -0
  4482. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/fixtures/doc/config.yaml.tt +1 -0
  4483. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/fixtures/group.thor +114 -0
  4484. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/fixtures/invoke.thor +112 -0
  4485. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/fixtures/path with spaces b/data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/fixtures/path with → spaces +0 -0
  4486. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/fixtures/script.thor +190 -0
  4487. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/fixtures/task.thor +10 -0
  4488. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/group_spec.rb +216 -0
  4489. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/invocation_spec.rb +100 -0
  4490. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/parser/argument_spec.rb +47 -0
  4491. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/parser/arguments_spec.rb +66 -0
  4492. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/parser/option_spec.rb +202 -0
  4493. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/parser/options_spec.rb +330 -0
  4494. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/rake_compat_spec.rb +72 -0
  4495. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/register_spec.rb +135 -0
  4496. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/runner_spec.rb +241 -0
  4497. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/shell/basic_spec.rb +300 -0
  4498. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/shell/color_spec.rb +81 -0
  4499. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/shell/html_spec.rb +32 -0
  4500. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/shell_spec.rb +47 -0
  4501. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/spec_helper.rb +58 -0
  4502. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/task_spec.rb +80 -0
  4503. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/thor_spec.rb +418 -0
  4504. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/spec/util_spec.rb +196 -0
  4505. data/vendor/gems/ruby/1.8/gems/thor-0.15.4/thor.gemspec +26 -0
  4506. data/vendor/gems/ruby/1.8/specifications/aruba-0.4.11.gemspec +48 -0
  4507. data/vendor/gems/ruby/1.8/specifications/builder-3.0.0.gemspec +33 -0
  4508. data/vendor/gems/ruby/1.8/specifications/childprocess-0.3.5.gemspec +40 -0
  4509. data/vendor/gems/ruby/1.8/specifications/cucumber-1.2.1.gemspec +86 -0
  4510. data/vendor/gems/ruby/1.8/specifications/diff-lcs-1.1.3.gemspec +48 -0
  4511. data/vendor/gems/ruby/1.8/specifications/facter-1.6.11.gemspec +29 -0
  4512. data/vendor/gems/ruby/1.8/specifications/ffi-1.1.5.gemspec +32 -0
  4513. data/vendor/gems/ruby/1.8/specifications/gherkin-2.11.1.gemspec +64 -0
  4514. data/vendor/gems/ruby/1.8/specifications/json-1.7.4.gemspec +35 -0
  4515. data/vendor/gems/ruby/1.8/specifications/puppet-2.7.18.gemspec +31 -0
  4516. data/vendor/gems/ruby/1.8/specifications/rake-0.9.2.2.gemspec +33 -0
  4517. data/vendor/gems/ruby/1.8/specifications/rspec-2.11.0.gemspec +36 -0
  4518. data/vendor/gems/ruby/1.8/specifications/rspec-core-2.11.1.gemspec +61 -0
  4519. data/vendor/gems/ruby/1.8/specifications/rspec-expectations-2.11.2.gemspec +41 -0
  4520. data/vendor/gems/ruby/1.8/specifications/rspec-mocks-2.11.1.gemspec +38 -0
  4521. data/vendor/gems/ruby/1.8/specifications/thor-0.15.4.gemspec +49 -0
  4522. metadata +4590 -5
@@ -0,0 +1,4450 @@
1
+ # GENERATED CODE - DO NOT EDIT
2
+ # This file was generated by ./gentramp.sh
3
+
4
+ # Copyright (c) 2010, Plausible Labs Cooperative, Inc.
5
+ #
6
+ # Permission is hereby granted, free of charge, to any person obtaining
7
+ # a copy of this software and associated documentation files (the
8
+ # Software''), to deal in the Software without restriction, including
9
+ # without limitation the rights to use, copy, modify, merge, publish,
10
+ # distribute, sublicense, and/or sell copies of the Software, and to
11
+ # permit persons to whom the Software is furnished to do so, subject to
12
+ # the following conditions:
13
+ #
14
+ # The above copyright notice and this permission notice shall be included
15
+ # in all copies or substantial portions of the Software.
16
+ #
17
+ # THE SOFTWARE IS PROVIDED AS IS'', WITHOUT WARRANTY OF ANY KIND,
18
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
21
+ # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
22
+ # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24
+ # DEALINGS IN THE SOFTWARE.
25
+ # -----------------------------------------------------------------------
26
+
27
+ .text
28
+ .align 12
29
+ .globl _ffi_closure_trampoline_table_page
30
+ _ffi_closure_trampoline_table_page:
31
+
32
+ // trampoline
33
+ // Save to stack
34
+ stmfd sp!, {r0-r3}
35
+
36
+ // Load the context argument from the config page.
37
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
38
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
39
+ ldr r0, [pc, #-4092]
40
+
41
+ // Load the jump address from the config page.
42
+ ldr pc, [pc, #-4092]
43
+
44
+
45
+ // trampoline
46
+ // Save to stack
47
+ stmfd sp!, {r0-r3}
48
+
49
+ // Load the context argument from the config page.
50
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
51
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
52
+ ldr r0, [pc, #-4092]
53
+
54
+ // Load the jump address from the config page.
55
+ ldr pc, [pc, #-4092]
56
+
57
+
58
+ // trampoline
59
+ // Save to stack
60
+ stmfd sp!, {r0-r3}
61
+
62
+ // Load the context argument from the config page.
63
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
64
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
65
+ ldr r0, [pc, #-4092]
66
+
67
+ // Load the jump address from the config page.
68
+ ldr pc, [pc, #-4092]
69
+
70
+
71
+ // trampoline
72
+ // Save to stack
73
+ stmfd sp!, {r0-r3}
74
+
75
+ // Load the context argument from the config page.
76
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
77
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
78
+ ldr r0, [pc, #-4092]
79
+
80
+ // Load the jump address from the config page.
81
+ ldr pc, [pc, #-4092]
82
+
83
+
84
+ // trampoline
85
+ // Save to stack
86
+ stmfd sp!, {r0-r3}
87
+
88
+ // Load the context argument from the config page.
89
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
90
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
91
+ ldr r0, [pc, #-4092]
92
+
93
+ // Load the jump address from the config page.
94
+ ldr pc, [pc, #-4092]
95
+
96
+
97
+ // trampoline
98
+ // Save to stack
99
+ stmfd sp!, {r0-r3}
100
+
101
+ // Load the context argument from the config page.
102
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
103
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
104
+ ldr r0, [pc, #-4092]
105
+
106
+ // Load the jump address from the config page.
107
+ ldr pc, [pc, #-4092]
108
+
109
+
110
+ // trampoline
111
+ // Save to stack
112
+ stmfd sp!, {r0-r3}
113
+
114
+ // Load the context argument from the config page.
115
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
116
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
117
+ ldr r0, [pc, #-4092]
118
+
119
+ // Load the jump address from the config page.
120
+ ldr pc, [pc, #-4092]
121
+
122
+
123
+ // trampoline
124
+ // Save to stack
125
+ stmfd sp!, {r0-r3}
126
+
127
+ // Load the context argument from the config page.
128
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
129
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
130
+ ldr r0, [pc, #-4092]
131
+
132
+ // Load the jump address from the config page.
133
+ ldr pc, [pc, #-4092]
134
+
135
+
136
+ // trampoline
137
+ // Save to stack
138
+ stmfd sp!, {r0-r3}
139
+
140
+ // Load the context argument from the config page.
141
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
142
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
143
+ ldr r0, [pc, #-4092]
144
+
145
+ // Load the jump address from the config page.
146
+ ldr pc, [pc, #-4092]
147
+
148
+
149
+ // trampoline
150
+ // Save to stack
151
+ stmfd sp!, {r0-r3}
152
+
153
+ // Load the context argument from the config page.
154
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
155
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
156
+ ldr r0, [pc, #-4092]
157
+
158
+ // Load the jump address from the config page.
159
+ ldr pc, [pc, #-4092]
160
+
161
+
162
+ // trampoline
163
+ // Save to stack
164
+ stmfd sp!, {r0-r3}
165
+
166
+ // Load the context argument from the config page.
167
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
168
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
169
+ ldr r0, [pc, #-4092]
170
+
171
+ // Load the jump address from the config page.
172
+ ldr pc, [pc, #-4092]
173
+
174
+
175
+ // trampoline
176
+ // Save to stack
177
+ stmfd sp!, {r0-r3}
178
+
179
+ // Load the context argument from the config page.
180
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
181
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
182
+ ldr r0, [pc, #-4092]
183
+
184
+ // Load the jump address from the config page.
185
+ ldr pc, [pc, #-4092]
186
+
187
+
188
+ // trampoline
189
+ // Save to stack
190
+ stmfd sp!, {r0-r3}
191
+
192
+ // Load the context argument from the config page.
193
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
194
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
195
+ ldr r0, [pc, #-4092]
196
+
197
+ // Load the jump address from the config page.
198
+ ldr pc, [pc, #-4092]
199
+
200
+
201
+ // trampoline
202
+ // Save to stack
203
+ stmfd sp!, {r0-r3}
204
+
205
+ // Load the context argument from the config page.
206
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
207
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
208
+ ldr r0, [pc, #-4092]
209
+
210
+ // Load the jump address from the config page.
211
+ ldr pc, [pc, #-4092]
212
+
213
+
214
+ // trampoline
215
+ // Save to stack
216
+ stmfd sp!, {r0-r3}
217
+
218
+ // Load the context argument from the config page.
219
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
220
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
221
+ ldr r0, [pc, #-4092]
222
+
223
+ // Load the jump address from the config page.
224
+ ldr pc, [pc, #-4092]
225
+
226
+
227
+ // trampoline
228
+ // Save to stack
229
+ stmfd sp!, {r0-r3}
230
+
231
+ // Load the context argument from the config page.
232
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
233
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
234
+ ldr r0, [pc, #-4092]
235
+
236
+ // Load the jump address from the config page.
237
+ ldr pc, [pc, #-4092]
238
+
239
+
240
+ // trampoline
241
+ // Save to stack
242
+ stmfd sp!, {r0-r3}
243
+
244
+ // Load the context argument from the config page.
245
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
246
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
247
+ ldr r0, [pc, #-4092]
248
+
249
+ // Load the jump address from the config page.
250
+ ldr pc, [pc, #-4092]
251
+
252
+
253
+ // trampoline
254
+ // Save to stack
255
+ stmfd sp!, {r0-r3}
256
+
257
+ // Load the context argument from the config page.
258
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
259
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
260
+ ldr r0, [pc, #-4092]
261
+
262
+ // Load the jump address from the config page.
263
+ ldr pc, [pc, #-4092]
264
+
265
+
266
+ // trampoline
267
+ // Save to stack
268
+ stmfd sp!, {r0-r3}
269
+
270
+ // Load the context argument from the config page.
271
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
272
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
273
+ ldr r0, [pc, #-4092]
274
+
275
+ // Load the jump address from the config page.
276
+ ldr pc, [pc, #-4092]
277
+
278
+
279
+ // trampoline
280
+ // Save to stack
281
+ stmfd sp!, {r0-r3}
282
+
283
+ // Load the context argument from the config page.
284
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
285
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
286
+ ldr r0, [pc, #-4092]
287
+
288
+ // Load the jump address from the config page.
289
+ ldr pc, [pc, #-4092]
290
+
291
+
292
+ // trampoline
293
+ // Save to stack
294
+ stmfd sp!, {r0-r3}
295
+
296
+ // Load the context argument from the config page.
297
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
298
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
299
+ ldr r0, [pc, #-4092]
300
+
301
+ // Load the jump address from the config page.
302
+ ldr pc, [pc, #-4092]
303
+
304
+
305
+ // trampoline
306
+ // Save to stack
307
+ stmfd sp!, {r0-r3}
308
+
309
+ // Load the context argument from the config page.
310
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
311
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
312
+ ldr r0, [pc, #-4092]
313
+
314
+ // Load the jump address from the config page.
315
+ ldr pc, [pc, #-4092]
316
+
317
+
318
+ // trampoline
319
+ // Save to stack
320
+ stmfd sp!, {r0-r3}
321
+
322
+ // Load the context argument from the config page.
323
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
324
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
325
+ ldr r0, [pc, #-4092]
326
+
327
+ // Load the jump address from the config page.
328
+ ldr pc, [pc, #-4092]
329
+
330
+
331
+ // trampoline
332
+ // Save to stack
333
+ stmfd sp!, {r0-r3}
334
+
335
+ // Load the context argument from the config page.
336
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
337
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
338
+ ldr r0, [pc, #-4092]
339
+
340
+ // Load the jump address from the config page.
341
+ ldr pc, [pc, #-4092]
342
+
343
+
344
+ // trampoline
345
+ // Save to stack
346
+ stmfd sp!, {r0-r3}
347
+
348
+ // Load the context argument from the config page.
349
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
350
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
351
+ ldr r0, [pc, #-4092]
352
+
353
+ // Load the jump address from the config page.
354
+ ldr pc, [pc, #-4092]
355
+
356
+
357
+ // trampoline
358
+ // Save to stack
359
+ stmfd sp!, {r0-r3}
360
+
361
+ // Load the context argument from the config page.
362
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
363
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
364
+ ldr r0, [pc, #-4092]
365
+
366
+ // Load the jump address from the config page.
367
+ ldr pc, [pc, #-4092]
368
+
369
+
370
+ // trampoline
371
+ // Save to stack
372
+ stmfd sp!, {r0-r3}
373
+
374
+ // Load the context argument from the config page.
375
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
376
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
377
+ ldr r0, [pc, #-4092]
378
+
379
+ // Load the jump address from the config page.
380
+ ldr pc, [pc, #-4092]
381
+
382
+
383
+ // trampoline
384
+ // Save to stack
385
+ stmfd sp!, {r0-r3}
386
+
387
+ // Load the context argument from the config page.
388
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
389
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
390
+ ldr r0, [pc, #-4092]
391
+
392
+ // Load the jump address from the config page.
393
+ ldr pc, [pc, #-4092]
394
+
395
+
396
+ // trampoline
397
+ // Save to stack
398
+ stmfd sp!, {r0-r3}
399
+
400
+ // Load the context argument from the config page.
401
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
402
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
403
+ ldr r0, [pc, #-4092]
404
+
405
+ // Load the jump address from the config page.
406
+ ldr pc, [pc, #-4092]
407
+
408
+
409
+ // trampoline
410
+ // Save to stack
411
+ stmfd sp!, {r0-r3}
412
+
413
+ // Load the context argument from the config page.
414
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
415
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
416
+ ldr r0, [pc, #-4092]
417
+
418
+ // Load the jump address from the config page.
419
+ ldr pc, [pc, #-4092]
420
+
421
+
422
+ // trampoline
423
+ // Save to stack
424
+ stmfd sp!, {r0-r3}
425
+
426
+ // Load the context argument from the config page.
427
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
428
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
429
+ ldr r0, [pc, #-4092]
430
+
431
+ // Load the jump address from the config page.
432
+ ldr pc, [pc, #-4092]
433
+
434
+
435
+ // trampoline
436
+ // Save to stack
437
+ stmfd sp!, {r0-r3}
438
+
439
+ // Load the context argument from the config page.
440
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
441
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
442
+ ldr r0, [pc, #-4092]
443
+
444
+ // Load the jump address from the config page.
445
+ ldr pc, [pc, #-4092]
446
+
447
+
448
+ // trampoline
449
+ // Save to stack
450
+ stmfd sp!, {r0-r3}
451
+
452
+ // Load the context argument from the config page.
453
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
454
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
455
+ ldr r0, [pc, #-4092]
456
+
457
+ // Load the jump address from the config page.
458
+ ldr pc, [pc, #-4092]
459
+
460
+
461
+ // trampoline
462
+ // Save to stack
463
+ stmfd sp!, {r0-r3}
464
+
465
+ // Load the context argument from the config page.
466
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
467
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
468
+ ldr r0, [pc, #-4092]
469
+
470
+ // Load the jump address from the config page.
471
+ ldr pc, [pc, #-4092]
472
+
473
+
474
+ // trampoline
475
+ // Save to stack
476
+ stmfd sp!, {r0-r3}
477
+
478
+ // Load the context argument from the config page.
479
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
480
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
481
+ ldr r0, [pc, #-4092]
482
+
483
+ // Load the jump address from the config page.
484
+ ldr pc, [pc, #-4092]
485
+
486
+
487
+ // trampoline
488
+ // Save to stack
489
+ stmfd sp!, {r0-r3}
490
+
491
+ // Load the context argument from the config page.
492
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
493
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
494
+ ldr r0, [pc, #-4092]
495
+
496
+ // Load the jump address from the config page.
497
+ ldr pc, [pc, #-4092]
498
+
499
+
500
+ // trampoline
501
+ // Save to stack
502
+ stmfd sp!, {r0-r3}
503
+
504
+ // Load the context argument from the config page.
505
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
506
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
507
+ ldr r0, [pc, #-4092]
508
+
509
+ // Load the jump address from the config page.
510
+ ldr pc, [pc, #-4092]
511
+
512
+
513
+ // trampoline
514
+ // Save to stack
515
+ stmfd sp!, {r0-r3}
516
+
517
+ // Load the context argument from the config page.
518
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
519
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
520
+ ldr r0, [pc, #-4092]
521
+
522
+ // Load the jump address from the config page.
523
+ ldr pc, [pc, #-4092]
524
+
525
+
526
+ // trampoline
527
+ // Save to stack
528
+ stmfd sp!, {r0-r3}
529
+
530
+ // Load the context argument from the config page.
531
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
532
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
533
+ ldr r0, [pc, #-4092]
534
+
535
+ // Load the jump address from the config page.
536
+ ldr pc, [pc, #-4092]
537
+
538
+
539
+ // trampoline
540
+ // Save to stack
541
+ stmfd sp!, {r0-r3}
542
+
543
+ // Load the context argument from the config page.
544
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
545
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
546
+ ldr r0, [pc, #-4092]
547
+
548
+ // Load the jump address from the config page.
549
+ ldr pc, [pc, #-4092]
550
+
551
+
552
+ // trampoline
553
+ // Save to stack
554
+ stmfd sp!, {r0-r3}
555
+
556
+ // Load the context argument from the config page.
557
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
558
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
559
+ ldr r0, [pc, #-4092]
560
+
561
+ // Load the jump address from the config page.
562
+ ldr pc, [pc, #-4092]
563
+
564
+
565
+ // trampoline
566
+ // Save to stack
567
+ stmfd sp!, {r0-r3}
568
+
569
+ // Load the context argument from the config page.
570
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
571
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
572
+ ldr r0, [pc, #-4092]
573
+
574
+ // Load the jump address from the config page.
575
+ ldr pc, [pc, #-4092]
576
+
577
+
578
+ // trampoline
579
+ // Save to stack
580
+ stmfd sp!, {r0-r3}
581
+
582
+ // Load the context argument from the config page.
583
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
584
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
585
+ ldr r0, [pc, #-4092]
586
+
587
+ // Load the jump address from the config page.
588
+ ldr pc, [pc, #-4092]
589
+
590
+
591
+ // trampoline
592
+ // Save to stack
593
+ stmfd sp!, {r0-r3}
594
+
595
+ // Load the context argument from the config page.
596
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
597
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
598
+ ldr r0, [pc, #-4092]
599
+
600
+ // Load the jump address from the config page.
601
+ ldr pc, [pc, #-4092]
602
+
603
+
604
+ // trampoline
605
+ // Save to stack
606
+ stmfd sp!, {r0-r3}
607
+
608
+ // Load the context argument from the config page.
609
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
610
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
611
+ ldr r0, [pc, #-4092]
612
+
613
+ // Load the jump address from the config page.
614
+ ldr pc, [pc, #-4092]
615
+
616
+
617
+ // trampoline
618
+ // Save to stack
619
+ stmfd sp!, {r0-r3}
620
+
621
+ // Load the context argument from the config page.
622
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
623
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
624
+ ldr r0, [pc, #-4092]
625
+
626
+ // Load the jump address from the config page.
627
+ ldr pc, [pc, #-4092]
628
+
629
+
630
+ // trampoline
631
+ // Save to stack
632
+ stmfd sp!, {r0-r3}
633
+
634
+ // Load the context argument from the config page.
635
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
636
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
637
+ ldr r0, [pc, #-4092]
638
+
639
+ // Load the jump address from the config page.
640
+ ldr pc, [pc, #-4092]
641
+
642
+
643
+ // trampoline
644
+ // Save to stack
645
+ stmfd sp!, {r0-r3}
646
+
647
+ // Load the context argument from the config page.
648
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
649
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
650
+ ldr r0, [pc, #-4092]
651
+
652
+ // Load the jump address from the config page.
653
+ ldr pc, [pc, #-4092]
654
+
655
+
656
+ // trampoline
657
+ // Save to stack
658
+ stmfd sp!, {r0-r3}
659
+
660
+ // Load the context argument from the config page.
661
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
662
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
663
+ ldr r0, [pc, #-4092]
664
+
665
+ // Load the jump address from the config page.
666
+ ldr pc, [pc, #-4092]
667
+
668
+
669
+ // trampoline
670
+ // Save to stack
671
+ stmfd sp!, {r0-r3}
672
+
673
+ // Load the context argument from the config page.
674
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
675
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
676
+ ldr r0, [pc, #-4092]
677
+
678
+ // Load the jump address from the config page.
679
+ ldr pc, [pc, #-4092]
680
+
681
+
682
+ // trampoline
683
+ // Save to stack
684
+ stmfd sp!, {r0-r3}
685
+
686
+ // Load the context argument from the config page.
687
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
688
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
689
+ ldr r0, [pc, #-4092]
690
+
691
+ // Load the jump address from the config page.
692
+ ldr pc, [pc, #-4092]
693
+
694
+
695
+ // trampoline
696
+ // Save to stack
697
+ stmfd sp!, {r0-r3}
698
+
699
+ // Load the context argument from the config page.
700
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
701
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
702
+ ldr r0, [pc, #-4092]
703
+
704
+ // Load the jump address from the config page.
705
+ ldr pc, [pc, #-4092]
706
+
707
+
708
+ // trampoline
709
+ // Save to stack
710
+ stmfd sp!, {r0-r3}
711
+
712
+ // Load the context argument from the config page.
713
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
714
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
715
+ ldr r0, [pc, #-4092]
716
+
717
+ // Load the jump address from the config page.
718
+ ldr pc, [pc, #-4092]
719
+
720
+
721
+ // trampoline
722
+ // Save to stack
723
+ stmfd sp!, {r0-r3}
724
+
725
+ // Load the context argument from the config page.
726
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
727
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
728
+ ldr r0, [pc, #-4092]
729
+
730
+ // Load the jump address from the config page.
731
+ ldr pc, [pc, #-4092]
732
+
733
+
734
+ // trampoline
735
+ // Save to stack
736
+ stmfd sp!, {r0-r3}
737
+
738
+ // Load the context argument from the config page.
739
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
740
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
741
+ ldr r0, [pc, #-4092]
742
+
743
+ // Load the jump address from the config page.
744
+ ldr pc, [pc, #-4092]
745
+
746
+
747
+ // trampoline
748
+ // Save to stack
749
+ stmfd sp!, {r0-r3}
750
+
751
+ // Load the context argument from the config page.
752
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
753
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
754
+ ldr r0, [pc, #-4092]
755
+
756
+ // Load the jump address from the config page.
757
+ ldr pc, [pc, #-4092]
758
+
759
+
760
+ // trampoline
761
+ // Save to stack
762
+ stmfd sp!, {r0-r3}
763
+
764
+ // Load the context argument from the config page.
765
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
766
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
767
+ ldr r0, [pc, #-4092]
768
+
769
+ // Load the jump address from the config page.
770
+ ldr pc, [pc, #-4092]
771
+
772
+
773
+ // trampoline
774
+ // Save to stack
775
+ stmfd sp!, {r0-r3}
776
+
777
+ // Load the context argument from the config page.
778
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
779
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
780
+ ldr r0, [pc, #-4092]
781
+
782
+ // Load the jump address from the config page.
783
+ ldr pc, [pc, #-4092]
784
+
785
+
786
+ // trampoline
787
+ // Save to stack
788
+ stmfd sp!, {r0-r3}
789
+
790
+ // Load the context argument from the config page.
791
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
792
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
793
+ ldr r0, [pc, #-4092]
794
+
795
+ // Load the jump address from the config page.
796
+ ldr pc, [pc, #-4092]
797
+
798
+
799
+ // trampoline
800
+ // Save to stack
801
+ stmfd sp!, {r0-r3}
802
+
803
+ // Load the context argument from the config page.
804
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
805
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
806
+ ldr r0, [pc, #-4092]
807
+
808
+ // Load the jump address from the config page.
809
+ ldr pc, [pc, #-4092]
810
+
811
+
812
+ // trampoline
813
+ // Save to stack
814
+ stmfd sp!, {r0-r3}
815
+
816
+ // Load the context argument from the config page.
817
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
818
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
819
+ ldr r0, [pc, #-4092]
820
+
821
+ // Load the jump address from the config page.
822
+ ldr pc, [pc, #-4092]
823
+
824
+
825
+ // trampoline
826
+ // Save to stack
827
+ stmfd sp!, {r0-r3}
828
+
829
+ // Load the context argument from the config page.
830
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
831
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
832
+ ldr r0, [pc, #-4092]
833
+
834
+ // Load the jump address from the config page.
835
+ ldr pc, [pc, #-4092]
836
+
837
+
838
+ // trampoline
839
+ // Save to stack
840
+ stmfd sp!, {r0-r3}
841
+
842
+ // Load the context argument from the config page.
843
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
844
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
845
+ ldr r0, [pc, #-4092]
846
+
847
+ // Load the jump address from the config page.
848
+ ldr pc, [pc, #-4092]
849
+
850
+
851
+ // trampoline
852
+ // Save to stack
853
+ stmfd sp!, {r0-r3}
854
+
855
+ // Load the context argument from the config page.
856
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
857
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
858
+ ldr r0, [pc, #-4092]
859
+
860
+ // Load the jump address from the config page.
861
+ ldr pc, [pc, #-4092]
862
+
863
+
864
+ // trampoline
865
+ // Save to stack
866
+ stmfd sp!, {r0-r3}
867
+
868
+ // Load the context argument from the config page.
869
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
870
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
871
+ ldr r0, [pc, #-4092]
872
+
873
+ // Load the jump address from the config page.
874
+ ldr pc, [pc, #-4092]
875
+
876
+
877
+ // trampoline
878
+ // Save to stack
879
+ stmfd sp!, {r0-r3}
880
+
881
+ // Load the context argument from the config page.
882
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
883
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
884
+ ldr r0, [pc, #-4092]
885
+
886
+ // Load the jump address from the config page.
887
+ ldr pc, [pc, #-4092]
888
+
889
+
890
+ // trampoline
891
+ // Save to stack
892
+ stmfd sp!, {r0-r3}
893
+
894
+ // Load the context argument from the config page.
895
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
896
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
897
+ ldr r0, [pc, #-4092]
898
+
899
+ // Load the jump address from the config page.
900
+ ldr pc, [pc, #-4092]
901
+
902
+
903
+ // trampoline
904
+ // Save to stack
905
+ stmfd sp!, {r0-r3}
906
+
907
+ // Load the context argument from the config page.
908
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
909
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
910
+ ldr r0, [pc, #-4092]
911
+
912
+ // Load the jump address from the config page.
913
+ ldr pc, [pc, #-4092]
914
+
915
+
916
+ // trampoline
917
+ // Save to stack
918
+ stmfd sp!, {r0-r3}
919
+
920
+ // Load the context argument from the config page.
921
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
922
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
923
+ ldr r0, [pc, #-4092]
924
+
925
+ // Load the jump address from the config page.
926
+ ldr pc, [pc, #-4092]
927
+
928
+
929
+ // trampoline
930
+ // Save to stack
931
+ stmfd sp!, {r0-r3}
932
+
933
+ // Load the context argument from the config page.
934
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
935
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
936
+ ldr r0, [pc, #-4092]
937
+
938
+ // Load the jump address from the config page.
939
+ ldr pc, [pc, #-4092]
940
+
941
+
942
+ // trampoline
943
+ // Save to stack
944
+ stmfd sp!, {r0-r3}
945
+
946
+ // Load the context argument from the config page.
947
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
948
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
949
+ ldr r0, [pc, #-4092]
950
+
951
+ // Load the jump address from the config page.
952
+ ldr pc, [pc, #-4092]
953
+
954
+
955
+ // trampoline
956
+ // Save to stack
957
+ stmfd sp!, {r0-r3}
958
+
959
+ // Load the context argument from the config page.
960
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
961
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
962
+ ldr r0, [pc, #-4092]
963
+
964
+ // Load the jump address from the config page.
965
+ ldr pc, [pc, #-4092]
966
+
967
+
968
+ // trampoline
969
+ // Save to stack
970
+ stmfd sp!, {r0-r3}
971
+
972
+ // Load the context argument from the config page.
973
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
974
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
975
+ ldr r0, [pc, #-4092]
976
+
977
+ // Load the jump address from the config page.
978
+ ldr pc, [pc, #-4092]
979
+
980
+
981
+ // trampoline
982
+ // Save to stack
983
+ stmfd sp!, {r0-r3}
984
+
985
+ // Load the context argument from the config page.
986
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
987
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
988
+ ldr r0, [pc, #-4092]
989
+
990
+ // Load the jump address from the config page.
991
+ ldr pc, [pc, #-4092]
992
+
993
+
994
+ // trampoline
995
+ // Save to stack
996
+ stmfd sp!, {r0-r3}
997
+
998
+ // Load the context argument from the config page.
999
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1000
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1001
+ ldr r0, [pc, #-4092]
1002
+
1003
+ // Load the jump address from the config page.
1004
+ ldr pc, [pc, #-4092]
1005
+
1006
+
1007
+ // trampoline
1008
+ // Save to stack
1009
+ stmfd sp!, {r0-r3}
1010
+
1011
+ // Load the context argument from the config page.
1012
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1013
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1014
+ ldr r0, [pc, #-4092]
1015
+
1016
+ // Load the jump address from the config page.
1017
+ ldr pc, [pc, #-4092]
1018
+
1019
+
1020
+ // trampoline
1021
+ // Save to stack
1022
+ stmfd sp!, {r0-r3}
1023
+
1024
+ // Load the context argument from the config page.
1025
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1026
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1027
+ ldr r0, [pc, #-4092]
1028
+
1029
+ // Load the jump address from the config page.
1030
+ ldr pc, [pc, #-4092]
1031
+
1032
+
1033
+ // trampoline
1034
+ // Save to stack
1035
+ stmfd sp!, {r0-r3}
1036
+
1037
+ // Load the context argument from the config page.
1038
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1039
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1040
+ ldr r0, [pc, #-4092]
1041
+
1042
+ // Load the jump address from the config page.
1043
+ ldr pc, [pc, #-4092]
1044
+
1045
+
1046
+ // trampoline
1047
+ // Save to stack
1048
+ stmfd sp!, {r0-r3}
1049
+
1050
+ // Load the context argument from the config page.
1051
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1052
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1053
+ ldr r0, [pc, #-4092]
1054
+
1055
+ // Load the jump address from the config page.
1056
+ ldr pc, [pc, #-4092]
1057
+
1058
+
1059
+ // trampoline
1060
+ // Save to stack
1061
+ stmfd sp!, {r0-r3}
1062
+
1063
+ // Load the context argument from the config page.
1064
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1065
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1066
+ ldr r0, [pc, #-4092]
1067
+
1068
+ // Load the jump address from the config page.
1069
+ ldr pc, [pc, #-4092]
1070
+
1071
+
1072
+ // trampoline
1073
+ // Save to stack
1074
+ stmfd sp!, {r0-r3}
1075
+
1076
+ // Load the context argument from the config page.
1077
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1078
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1079
+ ldr r0, [pc, #-4092]
1080
+
1081
+ // Load the jump address from the config page.
1082
+ ldr pc, [pc, #-4092]
1083
+
1084
+
1085
+ // trampoline
1086
+ // Save to stack
1087
+ stmfd sp!, {r0-r3}
1088
+
1089
+ // Load the context argument from the config page.
1090
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1091
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1092
+ ldr r0, [pc, #-4092]
1093
+
1094
+ // Load the jump address from the config page.
1095
+ ldr pc, [pc, #-4092]
1096
+
1097
+
1098
+ // trampoline
1099
+ // Save to stack
1100
+ stmfd sp!, {r0-r3}
1101
+
1102
+ // Load the context argument from the config page.
1103
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1104
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1105
+ ldr r0, [pc, #-4092]
1106
+
1107
+ // Load the jump address from the config page.
1108
+ ldr pc, [pc, #-4092]
1109
+
1110
+
1111
+ // trampoline
1112
+ // Save to stack
1113
+ stmfd sp!, {r0-r3}
1114
+
1115
+ // Load the context argument from the config page.
1116
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1117
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1118
+ ldr r0, [pc, #-4092]
1119
+
1120
+ // Load the jump address from the config page.
1121
+ ldr pc, [pc, #-4092]
1122
+
1123
+
1124
+ // trampoline
1125
+ // Save to stack
1126
+ stmfd sp!, {r0-r3}
1127
+
1128
+ // Load the context argument from the config page.
1129
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1130
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1131
+ ldr r0, [pc, #-4092]
1132
+
1133
+ // Load the jump address from the config page.
1134
+ ldr pc, [pc, #-4092]
1135
+
1136
+
1137
+ // trampoline
1138
+ // Save to stack
1139
+ stmfd sp!, {r0-r3}
1140
+
1141
+ // Load the context argument from the config page.
1142
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1143
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1144
+ ldr r0, [pc, #-4092]
1145
+
1146
+ // Load the jump address from the config page.
1147
+ ldr pc, [pc, #-4092]
1148
+
1149
+
1150
+ // trampoline
1151
+ // Save to stack
1152
+ stmfd sp!, {r0-r3}
1153
+
1154
+ // Load the context argument from the config page.
1155
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1156
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1157
+ ldr r0, [pc, #-4092]
1158
+
1159
+ // Load the jump address from the config page.
1160
+ ldr pc, [pc, #-4092]
1161
+
1162
+
1163
+ // trampoline
1164
+ // Save to stack
1165
+ stmfd sp!, {r0-r3}
1166
+
1167
+ // Load the context argument from the config page.
1168
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1169
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1170
+ ldr r0, [pc, #-4092]
1171
+
1172
+ // Load the jump address from the config page.
1173
+ ldr pc, [pc, #-4092]
1174
+
1175
+
1176
+ // trampoline
1177
+ // Save to stack
1178
+ stmfd sp!, {r0-r3}
1179
+
1180
+ // Load the context argument from the config page.
1181
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1182
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1183
+ ldr r0, [pc, #-4092]
1184
+
1185
+ // Load the jump address from the config page.
1186
+ ldr pc, [pc, #-4092]
1187
+
1188
+
1189
+ // trampoline
1190
+ // Save to stack
1191
+ stmfd sp!, {r0-r3}
1192
+
1193
+ // Load the context argument from the config page.
1194
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1195
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1196
+ ldr r0, [pc, #-4092]
1197
+
1198
+ // Load the jump address from the config page.
1199
+ ldr pc, [pc, #-4092]
1200
+
1201
+
1202
+ // trampoline
1203
+ // Save to stack
1204
+ stmfd sp!, {r0-r3}
1205
+
1206
+ // Load the context argument from the config page.
1207
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1208
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1209
+ ldr r0, [pc, #-4092]
1210
+
1211
+ // Load the jump address from the config page.
1212
+ ldr pc, [pc, #-4092]
1213
+
1214
+
1215
+ // trampoline
1216
+ // Save to stack
1217
+ stmfd sp!, {r0-r3}
1218
+
1219
+ // Load the context argument from the config page.
1220
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1221
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1222
+ ldr r0, [pc, #-4092]
1223
+
1224
+ // Load the jump address from the config page.
1225
+ ldr pc, [pc, #-4092]
1226
+
1227
+
1228
+ // trampoline
1229
+ // Save to stack
1230
+ stmfd sp!, {r0-r3}
1231
+
1232
+ // Load the context argument from the config page.
1233
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1234
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1235
+ ldr r0, [pc, #-4092]
1236
+
1237
+ // Load the jump address from the config page.
1238
+ ldr pc, [pc, #-4092]
1239
+
1240
+
1241
+ // trampoline
1242
+ // Save to stack
1243
+ stmfd sp!, {r0-r3}
1244
+
1245
+ // Load the context argument from the config page.
1246
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1247
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1248
+ ldr r0, [pc, #-4092]
1249
+
1250
+ // Load the jump address from the config page.
1251
+ ldr pc, [pc, #-4092]
1252
+
1253
+
1254
+ // trampoline
1255
+ // Save to stack
1256
+ stmfd sp!, {r0-r3}
1257
+
1258
+ // Load the context argument from the config page.
1259
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1260
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1261
+ ldr r0, [pc, #-4092]
1262
+
1263
+ // Load the jump address from the config page.
1264
+ ldr pc, [pc, #-4092]
1265
+
1266
+
1267
+ // trampoline
1268
+ // Save to stack
1269
+ stmfd sp!, {r0-r3}
1270
+
1271
+ // Load the context argument from the config page.
1272
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1273
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1274
+ ldr r0, [pc, #-4092]
1275
+
1276
+ // Load the jump address from the config page.
1277
+ ldr pc, [pc, #-4092]
1278
+
1279
+
1280
+ // trampoline
1281
+ // Save to stack
1282
+ stmfd sp!, {r0-r3}
1283
+
1284
+ // Load the context argument from the config page.
1285
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1286
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1287
+ ldr r0, [pc, #-4092]
1288
+
1289
+ // Load the jump address from the config page.
1290
+ ldr pc, [pc, #-4092]
1291
+
1292
+
1293
+ // trampoline
1294
+ // Save to stack
1295
+ stmfd sp!, {r0-r3}
1296
+
1297
+ // Load the context argument from the config page.
1298
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1299
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1300
+ ldr r0, [pc, #-4092]
1301
+
1302
+ // Load the jump address from the config page.
1303
+ ldr pc, [pc, #-4092]
1304
+
1305
+
1306
+ // trampoline
1307
+ // Save to stack
1308
+ stmfd sp!, {r0-r3}
1309
+
1310
+ // Load the context argument from the config page.
1311
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1312
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1313
+ ldr r0, [pc, #-4092]
1314
+
1315
+ // Load the jump address from the config page.
1316
+ ldr pc, [pc, #-4092]
1317
+
1318
+
1319
+ // trampoline
1320
+ // Save to stack
1321
+ stmfd sp!, {r0-r3}
1322
+
1323
+ // Load the context argument from the config page.
1324
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1325
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1326
+ ldr r0, [pc, #-4092]
1327
+
1328
+ // Load the jump address from the config page.
1329
+ ldr pc, [pc, #-4092]
1330
+
1331
+
1332
+ // trampoline
1333
+ // Save to stack
1334
+ stmfd sp!, {r0-r3}
1335
+
1336
+ // Load the context argument from the config page.
1337
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1338
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1339
+ ldr r0, [pc, #-4092]
1340
+
1341
+ // Load the jump address from the config page.
1342
+ ldr pc, [pc, #-4092]
1343
+
1344
+
1345
+ // trampoline
1346
+ // Save to stack
1347
+ stmfd sp!, {r0-r3}
1348
+
1349
+ // Load the context argument from the config page.
1350
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1351
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1352
+ ldr r0, [pc, #-4092]
1353
+
1354
+ // Load the jump address from the config page.
1355
+ ldr pc, [pc, #-4092]
1356
+
1357
+
1358
+ // trampoline
1359
+ // Save to stack
1360
+ stmfd sp!, {r0-r3}
1361
+
1362
+ // Load the context argument from the config page.
1363
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1364
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1365
+ ldr r0, [pc, #-4092]
1366
+
1367
+ // Load the jump address from the config page.
1368
+ ldr pc, [pc, #-4092]
1369
+
1370
+
1371
+ // trampoline
1372
+ // Save to stack
1373
+ stmfd sp!, {r0-r3}
1374
+
1375
+ // Load the context argument from the config page.
1376
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1377
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1378
+ ldr r0, [pc, #-4092]
1379
+
1380
+ // Load the jump address from the config page.
1381
+ ldr pc, [pc, #-4092]
1382
+
1383
+
1384
+ // trampoline
1385
+ // Save to stack
1386
+ stmfd sp!, {r0-r3}
1387
+
1388
+ // Load the context argument from the config page.
1389
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1390
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1391
+ ldr r0, [pc, #-4092]
1392
+
1393
+ // Load the jump address from the config page.
1394
+ ldr pc, [pc, #-4092]
1395
+
1396
+
1397
+ // trampoline
1398
+ // Save to stack
1399
+ stmfd sp!, {r0-r3}
1400
+
1401
+ // Load the context argument from the config page.
1402
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1403
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1404
+ ldr r0, [pc, #-4092]
1405
+
1406
+ // Load the jump address from the config page.
1407
+ ldr pc, [pc, #-4092]
1408
+
1409
+
1410
+ // trampoline
1411
+ // Save to stack
1412
+ stmfd sp!, {r0-r3}
1413
+
1414
+ // Load the context argument from the config page.
1415
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1416
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1417
+ ldr r0, [pc, #-4092]
1418
+
1419
+ // Load the jump address from the config page.
1420
+ ldr pc, [pc, #-4092]
1421
+
1422
+
1423
+ // trampoline
1424
+ // Save to stack
1425
+ stmfd sp!, {r0-r3}
1426
+
1427
+ // Load the context argument from the config page.
1428
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1429
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1430
+ ldr r0, [pc, #-4092]
1431
+
1432
+ // Load the jump address from the config page.
1433
+ ldr pc, [pc, #-4092]
1434
+
1435
+
1436
+ // trampoline
1437
+ // Save to stack
1438
+ stmfd sp!, {r0-r3}
1439
+
1440
+ // Load the context argument from the config page.
1441
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1442
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1443
+ ldr r0, [pc, #-4092]
1444
+
1445
+ // Load the jump address from the config page.
1446
+ ldr pc, [pc, #-4092]
1447
+
1448
+
1449
+ // trampoline
1450
+ // Save to stack
1451
+ stmfd sp!, {r0-r3}
1452
+
1453
+ // Load the context argument from the config page.
1454
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1455
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1456
+ ldr r0, [pc, #-4092]
1457
+
1458
+ // Load the jump address from the config page.
1459
+ ldr pc, [pc, #-4092]
1460
+
1461
+
1462
+ // trampoline
1463
+ // Save to stack
1464
+ stmfd sp!, {r0-r3}
1465
+
1466
+ // Load the context argument from the config page.
1467
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1468
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1469
+ ldr r0, [pc, #-4092]
1470
+
1471
+ // Load the jump address from the config page.
1472
+ ldr pc, [pc, #-4092]
1473
+
1474
+
1475
+ // trampoline
1476
+ // Save to stack
1477
+ stmfd sp!, {r0-r3}
1478
+
1479
+ // Load the context argument from the config page.
1480
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1481
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1482
+ ldr r0, [pc, #-4092]
1483
+
1484
+ // Load the jump address from the config page.
1485
+ ldr pc, [pc, #-4092]
1486
+
1487
+
1488
+ // trampoline
1489
+ // Save to stack
1490
+ stmfd sp!, {r0-r3}
1491
+
1492
+ // Load the context argument from the config page.
1493
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1494
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1495
+ ldr r0, [pc, #-4092]
1496
+
1497
+ // Load the jump address from the config page.
1498
+ ldr pc, [pc, #-4092]
1499
+
1500
+
1501
+ // trampoline
1502
+ // Save to stack
1503
+ stmfd sp!, {r0-r3}
1504
+
1505
+ // Load the context argument from the config page.
1506
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1507
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1508
+ ldr r0, [pc, #-4092]
1509
+
1510
+ // Load the jump address from the config page.
1511
+ ldr pc, [pc, #-4092]
1512
+
1513
+
1514
+ // trampoline
1515
+ // Save to stack
1516
+ stmfd sp!, {r0-r3}
1517
+
1518
+ // Load the context argument from the config page.
1519
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1520
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1521
+ ldr r0, [pc, #-4092]
1522
+
1523
+ // Load the jump address from the config page.
1524
+ ldr pc, [pc, #-4092]
1525
+
1526
+
1527
+ // trampoline
1528
+ // Save to stack
1529
+ stmfd sp!, {r0-r3}
1530
+
1531
+ // Load the context argument from the config page.
1532
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1533
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1534
+ ldr r0, [pc, #-4092]
1535
+
1536
+ // Load the jump address from the config page.
1537
+ ldr pc, [pc, #-4092]
1538
+
1539
+
1540
+ // trampoline
1541
+ // Save to stack
1542
+ stmfd sp!, {r0-r3}
1543
+
1544
+ // Load the context argument from the config page.
1545
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1546
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1547
+ ldr r0, [pc, #-4092]
1548
+
1549
+ // Load the jump address from the config page.
1550
+ ldr pc, [pc, #-4092]
1551
+
1552
+
1553
+ // trampoline
1554
+ // Save to stack
1555
+ stmfd sp!, {r0-r3}
1556
+
1557
+ // Load the context argument from the config page.
1558
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1559
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1560
+ ldr r0, [pc, #-4092]
1561
+
1562
+ // Load the jump address from the config page.
1563
+ ldr pc, [pc, #-4092]
1564
+
1565
+
1566
+ // trampoline
1567
+ // Save to stack
1568
+ stmfd sp!, {r0-r3}
1569
+
1570
+ // Load the context argument from the config page.
1571
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1572
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1573
+ ldr r0, [pc, #-4092]
1574
+
1575
+ // Load the jump address from the config page.
1576
+ ldr pc, [pc, #-4092]
1577
+
1578
+
1579
+ // trampoline
1580
+ // Save to stack
1581
+ stmfd sp!, {r0-r3}
1582
+
1583
+ // Load the context argument from the config page.
1584
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1585
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1586
+ ldr r0, [pc, #-4092]
1587
+
1588
+ // Load the jump address from the config page.
1589
+ ldr pc, [pc, #-4092]
1590
+
1591
+
1592
+ // trampoline
1593
+ // Save to stack
1594
+ stmfd sp!, {r0-r3}
1595
+
1596
+ // Load the context argument from the config page.
1597
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1598
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1599
+ ldr r0, [pc, #-4092]
1600
+
1601
+ // Load the jump address from the config page.
1602
+ ldr pc, [pc, #-4092]
1603
+
1604
+
1605
+ // trampoline
1606
+ // Save to stack
1607
+ stmfd sp!, {r0-r3}
1608
+
1609
+ // Load the context argument from the config page.
1610
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1611
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1612
+ ldr r0, [pc, #-4092]
1613
+
1614
+ // Load the jump address from the config page.
1615
+ ldr pc, [pc, #-4092]
1616
+
1617
+
1618
+ // trampoline
1619
+ // Save to stack
1620
+ stmfd sp!, {r0-r3}
1621
+
1622
+ // Load the context argument from the config page.
1623
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1624
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1625
+ ldr r0, [pc, #-4092]
1626
+
1627
+ // Load the jump address from the config page.
1628
+ ldr pc, [pc, #-4092]
1629
+
1630
+
1631
+ // trampoline
1632
+ // Save to stack
1633
+ stmfd sp!, {r0-r3}
1634
+
1635
+ // Load the context argument from the config page.
1636
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1637
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1638
+ ldr r0, [pc, #-4092]
1639
+
1640
+ // Load the jump address from the config page.
1641
+ ldr pc, [pc, #-4092]
1642
+
1643
+
1644
+ // trampoline
1645
+ // Save to stack
1646
+ stmfd sp!, {r0-r3}
1647
+
1648
+ // Load the context argument from the config page.
1649
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1650
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1651
+ ldr r0, [pc, #-4092]
1652
+
1653
+ // Load the jump address from the config page.
1654
+ ldr pc, [pc, #-4092]
1655
+
1656
+
1657
+ // trampoline
1658
+ // Save to stack
1659
+ stmfd sp!, {r0-r3}
1660
+
1661
+ // Load the context argument from the config page.
1662
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1663
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1664
+ ldr r0, [pc, #-4092]
1665
+
1666
+ // Load the jump address from the config page.
1667
+ ldr pc, [pc, #-4092]
1668
+
1669
+
1670
+ // trampoline
1671
+ // Save to stack
1672
+ stmfd sp!, {r0-r3}
1673
+
1674
+ // Load the context argument from the config page.
1675
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1676
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1677
+ ldr r0, [pc, #-4092]
1678
+
1679
+ // Load the jump address from the config page.
1680
+ ldr pc, [pc, #-4092]
1681
+
1682
+
1683
+ // trampoline
1684
+ // Save to stack
1685
+ stmfd sp!, {r0-r3}
1686
+
1687
+ // Load the context argument from the config page.
1688
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1689
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1690
+ ldr r0, [pc, #-4092]
1691
+
1692
+ // Load the jump address from the config page.
1693
+ ldr pc, [pc, #-4092]
1694
+
1695
+
1696
+ // trampoline
1697
+ // Save to stack
1698
+ stmfd sp!, {r0-r3}
1699
+
1700
+ // Load the context argument from the config page.
1701
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1702
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1703
+ ldr r0, [pc, #-4092]
1704
+
1705
+ // Load the jump address from the config page.
1706
+ ldr pc, [pc, #-4092]
1707
+
1708
+
1709
+ // trampoline
1710
+ // Save to stack
1711
+ stmfd sp!, {r0-r3}
1712
+
1713
+ // Load the context argument from the config page.
1714
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1715
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1716
+ ldr r0, [pc, #-4092]
1717
+
1718
+ // Load the jump address from the config page.
1719
+ ldr pc, [pc, #-4092]
1720
+
1721
+
1722
+ // trampoline
1723
+ // Save to stack
1724
+ stmfd sp!, {r0-r3}
1725
+
1726
+ // Load the context argument from the config page.
1727
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1728
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1729
+ ldr r0, [pc, #-4092]
1730
+
1731
+ // Load the jump address from the config page.
1732
+ ldr pc, [pc, #-4092]
1733
+
1734
+
1735
+ // trampoline
1736
+ // Save to stack
1737
+ stmfd sp!, {r0-r3}
1738
+
1739
+ // Load the context argument from the config page.
1740
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1741
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1742
+ ldr r0, [pc, #-4092]
1743
+
1744
+ // Load the jump address from the config page.
1745
+ ldr pc, [pc, #-4092]
1746
+
1747
+
1748
+ // trampoline
1749
+ // Save to stack
1750
+ stmfd sp!, {r0-r3}
1751
+
1752
+ // Load the context argument from the config page.
1753
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1754
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1755
+ ldr r0, [pc, #-4092]
1756
+
1757
+ // Load the jump address from the config page.
1758
+ ldr pc, [pc, #-4092]
1759
+
1760
+
1761
+ // trampoline
1762
+ // Save to stack
1763
+ stmfd sp!, {r0-r3}
1764
+
1765
+ // Load the context argument from the config page.
1766
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1767
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1768
+ ldr r0, [pc, #-4092]
1769
+
1770
+ // Load the jump address from the config page.
1771
+ ldr pc, [pc, #-4092]
1772
+
1773
+
1774
+ // trampoline
1775
+ // Save to stack
1776
+ stmfd sp!, {r0-r3}
1777
+
1778
+ // Load the context argument from the config page.
1779
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1780
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1781
+ ldr r0, [pc, #-4092]
1782
+
1783
+ // Load the jump address from the config page.
1784
+ ldr pc, [pc, #-4092]
1785
+
1786
+
1787
+ // trampoline
1788
+ // Save to stack
1789
+ stmfd sp!, {r0-r3}
1790
+
1791
+ // Load the context argument from the config page.
1792
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1793
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1794
+ ldr r0, [pc, #-4092]
1795
+
1796
+ // Load the jump address from the config page.
1797
+ ldr pc, [pc, #-4092]
1798
+
1799
+
1800
+ // trampoline
1801
+ // Save to stack
1802
+ stmfd sp!, {r0-r3}
1803
+
1804
+ // Load the context argument from the config page.
1805
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1806
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1807
+ ldr r0, [pc, #-4092]
1808
+
1809
+ // Load the jump address from the config page.
1810
+ ldr pc, [pc, #-4092]
1811
+
1812
+
1813
+ // trampoline
1814
+ // Save to stack
1815
+ stmfd sp!, {r0-r3}
1816
+
1817
+ // Load the context argument from the config page.
1818
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1819
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1820
+ ldr r0, [pc, #-4092]
1821
+
1822
+ // Load the jump address from the config page.
1823
+ ldr pc, [pc, #-4092]
1824
+
1825
+
1826
+ // trampoline
1827
+ // Save to stack
1828
+ stmfd sp!, {r0-r3}
1829
+
1830
+ // Load the context argument from the config page.
1831
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1832
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1833
+ ldr r0, [pc, #-4092]
1834
+
1835
+ // Load the jump address from the config page.
1836
+ ldr pc, [pc, #-4092]
1837
+
1838
+
1839
+ // trampoline
1840
+ // Save to stack
1841
+ stmfd sp!, {r0-r3}
1842
+
1843
+ // Load the context argument from the config page.
1844
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1845
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1846
+ ldr r0, [pc, #-4092]
1847
+
1848
+ // Load the jump address from the config page.
1849
+ ldr pc, [pc, #-4092]
1850
+
1851
+
1852
+ // trampoline
1853
+ // Save to stack
1854
+ stmfd sp!, {r0-r3}
1855
+
1856
+ // Load the context argument from the config page.
1857
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1858
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1859
+ ldr r0, [pc, #-4092]
1860
+
1861
+ // Load the jump address from the config page.
1862
+ ldr pc, [pc, #-4092]
1863
+
1864
+
1865
+ // trampoline
1866
+ // Save to stack
1867
+ stmfd sp!, {r0-r3}
1868
+
1869
+ // Load the context argument from the config page.
1870
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1871
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1872
+ ldr r0, [pc, #-4092]
1873
+
1874
+ // Load the jump address from the config page.
1875
+ ldr pc, [pc, #-4092]
1876
+
1877
+
1878
+ // trampoline
1879
+ // Save to stack
1880
+ stmfd sp!, {r0-r3}
1881
+
1882
+ // Load the context argument from the config page.
1883
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1884
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1885
+ ldr r0, [pc, #-4092]
1886
+
1887
+ // Load the jump address from the config page.
1888
+ ldr pc, [pc, #-4092]
1889
+
1890
+
1891
+ // trampoline
1892
+ // Save to stack
1893
+ stmfd sp!, {r0-r3}
1894
+
1895
+ // Load the context argument from the config page.
1896
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1897
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1898
+ ldr r0, [pc, #-4092]
1899
+
1900
+ // Load the jump address from the config page.
1901
+ ldr pc, [pc, #-4092]
1902
+
1903
+
1904
+ // trampoline
1905
+ // Save to stack
1906
+ stmfd sp!, {r0-r3}
1907
+
1908
+ // Load the context argument from the config page.
1909
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1910
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1911
+ ldr r0, [pc, #-4092]
1912
+
1913
+ // Load the jump address from the config page.
1914
+ ldr pc, [pc, #-4092]
1915
+
1916
+
1917
+ // trampoline
1918
+ // Save to stack
1919
+ stmfd sp!, {r0-r3}
1920
+
1921
+ // Load the context argument from the config page.
1922
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1923
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1924
+ ldr r0, [pc, #-4092]
1925
+
1926
+ // Load the jump address from the config page.
1927
+ ldr pc, [pc, #-4092]
1928
+
1929
+
1930
+ // trampoline
1931
+ // Save to stack
1932
+ stmfd sp!, {r0-r3}
1933
+
1934
+ // Load the context argument from the config page.
1935
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1936
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1937
+ ldr r0, [pc, #-4092]
1938
+
1939
+ // Load the jump address from the config page.
1940
+ ldr pc, [pc, #-4092]
1941
+
1942
+
1943
+ // trampoline
1944
+ // Save to stack
1945
+ stmfd sp!, {r0-r3}
1946
+
1947
+ // Load the context argument from the config page.
1948
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1949
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1950
+ ldr r0, [pc, #-4092]
1951
+
1952
+ // Load the jump address from the config page.
1953
+ ldr pc, [pc, #-4092]
1954
+
1955
+
1956
+ // trampoline
1957
+ // Save to stack
1958
+ stmfd sp!, {r0-r3}
1959
+
1960
+ // Load the context argument from the config page.
1961
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1962
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1963
+ ldr r0, [pc, #-4092]
1964
+
1965
+ // Load the jump address from the config page.
1966
+ ldr pc, [pc, #-4092]
1967
+
1968
+
1969
+ // trampoline
1970
+ // Save to stack
1971
+ stmfd sp!, {r0-r3}
1972
+
1973
+ // Load the context argument from the config page.
1974
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1975
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1976
+ ldr r0, [pc, #-4092]
1977
+
1978
+ // Load the jump address from the config page.
1979
+ ldr pc, [pc, #-4092]
1980
+
1981
+
1982
+ // trampoline
1983
+ // Save to stack
1984
+ stmfd sp!, {r0-r3}
1985
+
1986
+ // Load the context argument from the config page.
1987
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
1988
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
1989
+ ldr r0, [pc, #-4092]
1990
+
1991
+ // Load the jump address from the config page.
1992
+ ldr pc, [pc, #-4092]
1993
+
1994
+
1995
+ // trampoline
1996
+ // Save to stack
1997
+ stmfd sp!, {r0-r3}
1998
+
1999
+ // Load the context argument from the config page.
2000
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2001
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2002
+ ldr r0, [pc, #-4092]
2003
+
2004
+ // Load the jump address from the config page.
2005
+ ldr pc, [pc, #-4092]
2006
+
2007
+
2008
+ // trampoline
2009
+ // Save to stack
2010
+ stmfd sp!, {r0-r3}
2011
+
2012
+ // Load the context argument from the config page.
2013
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2014
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2015
+ ldr r0, [pc, #-4092]
2016
+
2017
+ // Load the jump address from the config page.
2018
+ ldr pc, [pc, #-4092]
2019
+
2020
+
2021
+ // trampoline
2022
+ // Save to stack
2023
+ stmfd sp!, {r0-r3}
2024
+
2025
+ // Load the context argument from the config page.
2026
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2027
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2028
+ ldr r0, [pc, #-4092]
2029
+
2030
+ // Load the jump address from the config page.
2031
+ ldr pc, [pc, #-4092]
2032
+
2033
+
2034
+ // trampoline
2035
+ // Save to stack
2036
+ stmfd sp!, {r0-r3}
2037
+
2038
+ // Load the context argument from the config page.
2039
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2040
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2041
+ ldr r0, [pc, #-4092]
2042
+
2043
+ // Load the jump address from the config page.
2044
+ ldr pc, [pc, #-4092]
2045
+
2046
+
2047
+ // trampoline
2048
+ // Save to stack
2049
+ stmfd sp!, {r0-r3}
2050
+
2051
+ // Load the context argument from the config page.
2052
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2053
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2054
+ ldr r0, [pc, #-4092]
2055
+
2056
+ // Load the jump address from the config page.
2057
+ ldr pc, [pc, #-4092]
2058
+
2059
+
2060
+ // trampoline
2061
+ // Save to stack
2062
+ stmfd sp!, {r0-r3}
2063
+
2064
+ // Load the context argument from the config page.
2065
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2066
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2067
+ ldr r0, [pc, #-4092]
2068
+
2069
+ // Load the jump address from the config page.
2070
+ ldr pc, [pc, #-4092]
2071
+
2072
+
2073
+ // trampoline
2074
+ // Save to stack
2075
+ stmfd sp!, {r0-r3}
2076
+
2077
+ // Load the context argument from the config page.
2078
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2079
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2080
+ ldr r0, [pc, #-4092]
2081
+
2082
+ // Load the jump address from the config page.
2083
+ ldr pc, [pc, #-4092]
2084
+
2085
+
2086
+ // trampoline
2087
+ // Save to stack
2088
+ stmfd sp!, {r0-r3}
2089
+
2090
+ // Load the context argument from the config page.
2091
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2092
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2093
+ ldr r0, [pc, #-4092]
2094
+
2095
+ // Load the jump address from the config page.
2096
+ ldr pc, [pc, #-4092]
2097
+
2098
+
2099
+ // trampoline
2100
+ // Save to stack
2101
+ stmfd sp!, {r0-r3}
2102
+
2103
+ // Load the context argument from the config page.
2104
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2105
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2106
+ ldr r0, [pc, #-4092]
2107
+
2108
+ // Load the jump address from the config page.
2109
+ ldr pc, [pc, #-4092]
2110
+
2111
+
2112
+ // trampoline
2113
+ // Save to stack
2114
+ stmfd sp!, {r0-r3}
2115
+
2116
+ // Load the context argument from the config page.
2117
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2118
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2119
+ ldr r0, [pc, #-4092]
2120
+
2121
+ // Load the jump address from the config page.
2122
+ ldr pc, [pc, #-4092]
2123
+
2124
+
2125
+ // trampoline
2126
+ // Save to stack
2127
+ stmfd sp!, {r0-r3}
2128
+
2129
+ // Load the context argument from the config page.
2130
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2131
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2132
+ ldr r0, [pc, #-4092]
2133
+
2134
+ // Load the jump address from the config page.
2135
+ ldr pc, [pc, #-4092]
2136
+
2137
+
2138
+ // trampoline
2139
+ // Save to stack
2140
+ stmfd sp!, {r0-r3}
2141
+
2142
+ // Load the context argument from the config page.
2143
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2144
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2145
+ ldr r0, [pc, #-4092]
2146
+
2147
+ // Load the jump address from the config page.
2148
+ ldr pc, [pc, #-4092]
2149
+
2150
+
2151
+ // trampoline
2152
+ // Save to stack
2153
+ stmfd sp!, {r0-r3}
2154
+
2155
+ // Load the context argument from the config page.
2156
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2157
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2158
+ ldr r0, [pc, #-4092]
2159
+
2160
+ // Load the jump address from the config page.
2161
+ ldr pc, [pc, #-4092]
2162
+
2163
+
2164
+ // trampoline
2165
+ // Save to stack
2166
+ stmfd sp!, {r0-r3}
2167
+
2168
+ // Load the context argument from the config page.
2169
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2170
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2171
+ ldr r0, [pc, #-4092]
2172
+
2173
+ // Load the jump address from the config page.
2174
+ ldr pc, [pc, #-4092]
2175
+
2176
+
2177
+ // trampoline
2178
+ // Save to stack
2179
+ stmfd sp!, {r0-r3}
2180
+
2181
+ // Load the context argument from the config page.
2182
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2183
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2184
+ ldr r0, [pc, #-4092]
2185
+
2186
+ // Load the jump address from the config page.
2187
+ ldr pc, [pc, #-4092]
2188
+
2189
+
2190
+ // trampoline
2191
+ // Save to stack
2192
+ stmfd sp!, {r0-r3}
2193
+
2194
+ // Load the context argument from the config page.
2195
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2196
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2197
+ ldr r0, [pc, #-4092]
2198
+
2199
+ // Load the jump address from the config page.
2200
+ ldr pc, [pc, #-4092]
2201
+
2202
+
2203
+ // trampoline
2204
+ // Save to stack
2205
+ stmfd sp!, {r0-r3}
2206
+
2207
+ // Load the context argument from the config page.
2208
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2209
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2210
+ ldr r0, [pc, #-4092]
2211
+
2212
+ // Load the jump address from the config page.
2213
+ ldr pc, [pc, #-4092]
2214
+
2215
+
2216
+ // trampoline
2217
+ // Save to stack
2218
+ stmfd sp!, {r0-r3}
2219
+
2220
+ // Load the context argument from the config page.
2221
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2222
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2223
+ ldr r0, [pc, #-4092]
2224
+
2225
+ // Load the jump address from the config page.
2226
+ ldr pc, [pc, #-4092]
2227
+
2228
+
2229
+ // trampoline
2230
+ // Save to stack
2231
+ stmfd sp!, {r0-r3}
2232
+
2233
+ // Load the context argument from the config page.
2234
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2235
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2236
+ ldr r0, [pc, #-4092]
2237
+
2238
+ // Load the jump address from the config page.
2239
+ ldr pc, [pc, #-4092]
2240
+
2241
+
2242
+ // trampoline
2243
+ // Save to stack
2244
+ stmfd sp!, {r0-r3}
2245
+
2246
+ // Load the context argument from the config page.
2247
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2248
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2249
+ ldr r0, [pc, #-4092]
2250
+
2251
+ // Load the jump address from the config page.
2252
+ ldr pc, [pc, #-4092]
2253
+
2254
+
2255
+ // trampoline
2256
+ // Save to stack
2257
+ stmfd sp!, {r0-r3}
2258
+
2259
+ // Load the context argument from the config page.
2260
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2261
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2262
+ ldr r0, [pc, #-4092]
2263
+
2264
+ // Load the jump address from the config page.
2265
+ ldr pc, [pc, #-4092]
2266
+
2267
+
2268
+ // trampoline
2269
+ // Save to stack
2270
+ stmfd sp!, {r0-r3}
2271
+
2272
+ // Load the context argument from the config page.
2273
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2274
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2275
+ ldr r0, [pc, #-4092]
2276
+
2277
+ // Load the jump address from the config page.
2278
+ ldr pc, [pc, #-4092]
2279
+
2280
+
2281
+ // trampoline
2282
+ // Save to stack
2283
+ stmfd sp!, {r0-r3}
2284
+
2285
+ // Load the context argument from the config page.
2286
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2287
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2288
+ ldr r0, [pc, #-4092]
2289
+
2290
+ // Load the jump address from the config page.
2291
+ ldr pc, [pc, #-4092]
2292
+
2293
+
2294
+ // trampoline
2295
+ // Save to stack
2296
+ stmfd sp!, {r0-r3}
2297
+
2298
+ // Load the context argument from the config page.
2299
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2300
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2301
+ ldr r0, [pc, #-4092]
2302
+
2303
+ // Load the jump address from the config page.
2304
+ ldr pc, [pc, #-4092]
2305
+
2306
+
2307
+ // trampoline
2308
+ // Save to stack
2309
+ stmfd sp!, {r0-r3}
2310
+
2311
+ // Load the context argument from the config page.
2312
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2313
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2314
+ ldr r0, [pc, #-4092]
2315
+
2316
+ // Load the jump address from the config page.
2317
+ ldr pc, [pc, #-4092]
2318
+
2319
+
2320
+ // trampoline
2321
+ // Save to stack
2322
+ stmfd sp!, {r0-r3}
2323
+
2324
+ // Load the context argument from the config page.
2325
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2326
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2327
+ ldr r0, [pc, #-4092]
2328
+
2329
+ // Load the jump address from the config page.
2330
+ ldr pc, [pc, #-4092]
2331
+
2332
+
2333
+ // trampoline
2334
+ // Save to stack
2335
+ stmfd sp!, {r0-r3}
2336
+
2337
+ // Load the context argument from the config page.
2338
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2339
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2340
+ ldr r0, [pc, #-4092]
2341
+
2342
+ // Load the jump address from the config page.
2343
+ ldr pc, [pc, #-4092]
2344
+
2345
+
2346
+ // trampoline
2347
+ // Save to stack
2348
+ stmfd sp!, {r0-r3}
2349
+
2350
+ // Load the context argument from the config page.
2351
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2352
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2353
+ ldr r0, [pc, #-4092]
2354
+
2355
+ // Load the jump address from the config page.
2356
+ ldr pc, [pc, #-4092]
2357
+
2358
+
2359
+ // trampoline
2360
+ // Save to stack
2361
+ stmfd sp!, {r0-r3}
2362
+
2363
+ // Load the context argument from the config page.
2364
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2365
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2366
+ ldr r0, [pc, #-4092]
2367
+
2368
+ // Load the jump address from the config page.
2369
+ ldr pc, [pc, #-4092]
2370
+
2371
+
2372
+ // trampoline
2373
+ // Save to stack
2374
+ stmfd sp!, {r0-r3}
2375
+
2376
+ // Load the context argument from the config page.
2377
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2378
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2379
+ ldr r0, [pc, #-4092]
2380
+
2381
+ // Load the jump address from the config page.
2382
+ ldr pc, [pc, #-4092]
2383
+
2384
+
2385
+ // trampoline
2386
+ // Save to stack
2387
+ stmfd sp!, {r0-r3}
2388
+
2389
+ // Load the context argument from the config page.
2390
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2391
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2392
+ ldr r0, [pc, #-4092]
2393
+
2394
+ // Load the jump address from the config page.
2395
+ ldr pc, [pc, #-4092]
2396
+
2397
+
2398
+ // trampoline
2399
+ // Save to stack
2400
+ stmfd sp!, {r0-r3}
2401
+
2402
+ // Load the context argument from the config page.
2403
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2404
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2405
+ ldr r0, [pc, #-4092]
2406
+
2407
+ // Load the jump address from the config page.
2408
+ ldr pc, [pc, #-4092]
2409
+
2410
+
2411
+ // trampoline
2412
+ // Save to stack
2413
+ stmfd sp!, {r0-r3}
2414
+
2415
+ // Load the context argument from the config page.
2416
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2417
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2418
+ ldr r0, [pc, #-4092]
2419
+
2420
+ // Load the jump address from the config page.
2421
+ ldr pc, [pc, #-4092]
2422
+
2423
+
2424
+ // trampoline
2425
+ // Save to stack
2426
+ stmfd sp!, {r0-r3}
2427
+
2428
+ // Load the context argument from the config page.
2429
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2430
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2431
+ ldr r0, [pc, #-4092]
2432
+
2433
+ // Load the jump address from the config page.
2434
+ ldr pc, [pc, #-4092]
2435
+
2436
+
2437
+ // trampoline
2438
+ // Save to stack
2439
+ stmfd sp!, {r0-r3}
2440
+
2441
+ // Load the context argument from the config page.
2442
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2443
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2444
+ ldr r0, [pc, #-4092]
2445
+
2446
+ // Load the jump address from the config page.
2447
+ ldr pc, [pc, #-4092]
2448
+
2449
+
2450
+ // trampoline
2451
+ // Save to stack
2452
+ stmfd sp!, {r0-r3}
2453
+
2454
+ // Load the context argument from the config page.
2455
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2456
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2457
+ ldr r0, [pc, #-4092]
2458
+
2459
+ // Load the jump address from the config page.
2460
+ ldr pc, [pc, #-4092]
2461
+
2462
+
2463
+ // trampoline
2464
+ // Save to stack
2465
+ stmfd sp!, {r0-r3}
2466
+
2467
+ // Load the context argument from the config page.
2468
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2469
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2470
+ ldr r0, [pc, #-4092]
2471
+
2472
+ // Load the jump address from the config page.
2473
+ ldr pc, [pc, #-4092]
2474
+
2475
+
2476
+ // trampoline
2477
+ // Save to stack
2478
+ stmfd sp!, {r0-r3}
2479
+
2480
+ // Load the context argument from the config page.
2481
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2482
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2483
+ ldr r0, [pc, #-4092]
2484
+
2485
+ // Load the jump address from the config page.
2486
+ ldr pc, [pc, #-4092]
2487
+
2488
+
2489
+ // trampoline
2490
+ // Save to stack
2491
+ stmfd sp!, {r0-r3}
2492
+
2493
+ // Load the context argument from the config page.
2494
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2495
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2496
+ ldr r0, [pc, #-4092]
2497
+
2498
+ // Load the jump address from the config page.
2499
+ ldr pc, [pc, #-4092]
2500
+
2501
+
2502
+ // trampoline
2503
+ // Save to stack
2504
+ stmfd sp!, {r0-r3}
2505
+
2506
+ // Load the context argument from the config page.
2507
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2508
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2509
+ ldr r0, [pc, #-4092]
2510
+
2511
+ // Load the jump address from the config page.
2512
+ ldr pc, [pc, #-4092]
2513
+
2514
+
2515
+ // trampoline
2516
+ // Save to stack
2517
+ stmfd sp!, {r0-r3}
2518
+
2519
+ // Load the context argument from the config page.
2520
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2521
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2522
+ ldr r0, [pc, #-4092]
2523
+
2524
+ // Load the jump address from the config page.
2525
+ ldr pc, [pc, #-4092]
2526
+
2527
+
2528
+ // trampoline
2529
+ // Save to stack
2530
+ stmfd sp!, {r0-r3}
2531
+
2532
+ // Load the context argument from the config page.
2533
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2534
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2535
+ ldr r0, [pc, #-4092]
2536
+
2537
+ // Load the jump address from the config page.
2538
+ ldr pc, [pc, #-4092]
2539
+
2540
+
2541
+ // trampoline
2542
+ // Save to stack
2543
+ stmfd sp!, {r0-r3}
2544
+
2545
+ // Load the context argument from the config page.
2546
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2547
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2548
+ ldr r0, [pc, #-4092]
2549
+
2550
+ // Load the jump address from the config page.
2551
+ ldr pc, [pc, #-4092]
2552
+
2553
+
2554
+ // trampoline
2555
+ // Save to stack
2556
+ stmfd sp!, {r0-r3}
2557
+
2558
+ // Load the context argument from the config page.
2559
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2560
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2561
+ ldr r0, [pc, #-4092]
2562
+
2563
+ // Load the jump address from the config page.
2564
+ ldr pc, [pc, #-4092]
2565
+
2566
+
2567
+ // trampoline
2568
+ // Save to stack
2569
+ stmfd sp!, {r0-r3}
2570
+
2571
+ // Load the context argument from the config page.
2572
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2573
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2574
+ ldr r0, [pc, #-4092]
2575
+
2576
+ // Load the jump address from the config page.
2577
+ ldr pc, [pc, #-4092]
2578
+
2579
+
2580
+ // trampoline
2581
+ // Save to stack
2582
+ stmfd sp!, {r0-r3}
2583
+
2584
+ // Load the context argument from the config page.
2585
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2586
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2587
+ ldr r0, [pc, #-4092]
2588
+
2589
+ // Load the jump address from the config page.
2590
+ ldr pc, [pc, #-4092]
2591
+
2592
+
2593
+ // trampoline
2594
+ // Save to stack
2595
+ stmfd sp!, {r0-r3}
2596
+
2597
+ // Load the context argument from the config page.
2598
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2599
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2600
+ ldr r0, [pc, #-4092]
2601
+
2602
+ // Load the jump address from the config page.
2603
+ ldr pc, [pc, #-4092]
2604
+
2605
+
2606
+ // trampoline
2607
+ // Save to stack
2608
+ stmfd sp!, {r0-r3}
2609
+
2610
+ // Load the context argument from the config page.
2611
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2612
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2613
+ ldr r0, [pc, #-4092]
2614
+
2615
+ // Load the jump address from the config page.
2616
+ ldr pc, [pc, #-4092]
2617
+
2618
+
2619
+ // trampoline
2620
+ // Save to stack
2621
+ stmfd sp!, {r0-r3}
2622
+
2623
+ // Load the context argument from the config page.
2624
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2625
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2626
+ ldr r0, [pc, #-4092]
2627
+
2628
+ // Load the jump address from the config page.
2629
+ ldr pc, [pc, #-4092]
2630
+
2631
+
2632
+ // trampoline
2633
+ // Save to stack
2634
+ stmfd sp!, {r0-r3}
2635
+
2636
+ // Load the context argument from the config page.
2637
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2638
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2639
+ ldr r0, [pc, #-4092]
2640
+
2641
+ // Load the jump address from the config page.
2642
+ ldr pc, [pc, #-4092]
2643
+
2644
+
2645
+ // trampoline
2646
+ // Save to stack
2647
+ stmfd sp!, {r0-r3}
2648
+
2649
+ // Load the context argument from the config page.
2650
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2651
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2652
+ ldr r0, [pc, #-4092]
2653
+
2654
+ // Load the jump address from the config page.
2655
+ ldr pc, [pc, #-4092]
2656
+
2657
+
2658
+ // trampoline
2659
+ // Save to stack
2660
+ stmfd sp!, {r0-r3}
2661
+
2662
+ // Load the context argument from the config page.
2663
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2664
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2665
+ ldr r0, [pc, #-4092]
2666
+
2667
+ // Load the jump address from the config page.
2668
+ ldr pc, [pc, #-4092]
2669
+
2670
+
2671
+ // trampoline
2672
+ // Save to stack
2673
+ stmfd sp!, {r0-r3}
2674
+
2675
+ // Load the context argument from the config page.
2676
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2677
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2678
+ ldr r0, [pc, #-4092]
2679
+
2680
+ // Load the jump address from the config page.
2681
+ ldr pc, [pc, #-4092]
2682
+
2683
+
2684
+ // trampoline
2685
+ // Save to stack
2686
+ stmfd sp!, {r0-r3}
2687
+
2688
+ // Load the context argument from the config page.
2689
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2690
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2691
+ ldr r0, [pc, #-4092]
2692
+
2693
+ // Load the jump address from the config page.
2694
+ ldr pc, [pc, #-4092]
2695
+
2696
+
2697
+ // trampoline
2698
+ // Save to stack
2699
+ stmfd sp!, {r0-r3}
2700
+
2701
+ // Load the context argument from the config page.
2702
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2703
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2704
+ ldr r0, [pc, #-4092]
2705
+
2706
+ // Load the jump address from the config page.
2707
+ ldr pc, [pc, #-4092]
2708
+
2709
+
2710
+ // trampoline
2711
+ // Save to stack
2712
+ stmfd sp!, {r0-r3}
2713
+
2714
+ // Load the context argument from the config page.
2715
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2716
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2717
+ ldr r0, [pc, #-4092]
2718
+
2719
+ // Load the jump address from the config page.
2720
+ ldr pc, [pc, #-4092]
2721
+
2722
+
2723
+ // trampoline
2724
+ // Save to stack
2725
+ stmfd sp!, {r0-r3}
2726
+
2727
+ // Load the context argument from the config page.
2728
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2729
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2730
+ ldr r0, [pc, #-4092]
2731
+
2732
+ // Load the jump address from the config page.
2733
+ ldr pc, [pc, #-4092]
2734
+
2735
+
2736
+ // trampoline
2737
+ // Save to stack
2738
+ stmfd sp!, {r0-r3}
2739
+
2740
+ // Load the context argument from the config page.
2741
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2742
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2743
+ ldr r0, [pc, #-4092]
2744
+
2745
+ // Load the jump address from the config page.
2746
+ ldr pc, [pc, #-4092]
2747
+
2748
+
2749
+ // trampoline
2750
+ // Save to stack
2751
+ stmfd sp!, {r0-r3}
2752
+
2753
+ // Load the context argument from the config page.
2754
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2755
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2756
+ ldr r0, [pc, #-4092]
2757
+
2758
+ // Load the jump address from the config page.
2759
+ ldr pc, [pc, #-4092]
2760
+
2761
+
2762
+ // trampoline
2763
+ // Save to stack
2764
+ stmfd sp!, {r0-r3}
2765
+
2766
+ // Load the context argument from the config page.
2767
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2768
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2769
+ ldr r0, [pc, #-4092]
2770
+
2771
+ // Load the jump address from the config page.
2772
+ ldr pc, [pc, #-4092]
2773
+
2774
+
2775
+ // trampoline
2776
+ // Save to stack
2777
+ stmfd sp!, {r0-r3}
2778
+
2779
+ // Load the context argument from the config page.
2780
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2781
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2782
+ ldr r0, [pc, #-4092]
2783
+
2784
+ // Load the jump address from the config page.
2785
+ ldr pc, [pc, #-4092]
2786
+
2787
+
2788
+ // trampoline
2789
+ // Save to stack
2790
+ stmfd sp!, {r0-r3}
2791
+
2792
+ // Load the context argument from the config page.
2793
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2794
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2795
+ ldr r0, [pc, #-4092]
2796
+
2797
+ // Load the jump address from the config page.
2798
+ ldr pc, [pc, #-4092]
2799
+
2800
+
2801
+ // trampoline
2802
+ // Save to stack
2803
+ stmfd sp!, {r0-r3}
2804
+
2805
+ // Load the context argument from the config page.
2806
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2807
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2808
+ ldr r0, [pc, #-4092]
2809
+
2810
+ // Load the jump address from the config page.
2811
+ ldr pc, [pc, #-4092]
2812
+
2813
+
2814
+ // trampoline
2815
+ // Save to stack
2816
+ stmfd sp!, {r0-r3}
2817
+
2818
+ // Load the context argument from the config page.
2819
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2820
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2821
+ ldr r0, [pc, #-4092]
2822
+
2823
+ // Load the jump address from the config page.
2824
+ ldr pc, [pc, #-4092]
2825
+
2826
+
2827
+ // trampoline
2828
+ // Save to stack
2829
+ stmfd sp!, {r0-r3}
2830
+
2831
+ // Load the context argument from the config page.
2832
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2833
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2834
+ ldr r0, [pc, #-4092]
2835
+
2836
+ // Load the jump address from the config page.
2837
+ ldr pc, [pc, #-4092]
2838
+
2839
+
2840
+ // trampoline
2841
+ // Save to stack
2842
+ stmfd sp!, {r0-r3}
2843
+
2844
+ // Load the context argument from the config page.
2845
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2846
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2847
+ ldr r0, [pc, #-4092]
2848
+
2849
+ // Load the jump address from the config page.
2850
+ ldr pc, [pc, #-4092]
2851
+
2852
+
2853
+ // trampoline
2854
+ // Save to stack
2855
+ stmfd sp!, {r0-r3}
2856
+
2857
+ // Load the context argument from the config page.
2858
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2859
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2860
+ ldr r0, [pc, #-4092]
2861
+
2862
+ // Load the jump address from the config page.
2863
+ ldr pc, [pc, #-4092]
2864
+
2865
+
2866
+ // trampoline
2867
+ // Save to stack
2868
+ stmfd sp!, {r0-r3}
2869
+
2870
+ // Load the context argument from the config page.
2871
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2872
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2873
+ ldr r0, [pc, #-4092]
2874
+
2875
+ // Load the jump address from the config page.
2876
+ ldr pc, [pc, #-4092]
2877
+
2878
+
2879
+ // trampoline
2880
+ // Save to stack
2881
+ stmfd sp!, {r0-r3}
2882
+
2883
+ // Load the context argument from the config page.
2884
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2885
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2886
+ ldr r0, [pc, #-4092]
2887
+
2888
+ // Load the jump address from the config page.
2889
+ ldr pc, [pc, #-4092]
2890
+
2891
+
2892
+ // trampoline
2893
+ // Save to stack
2894
+ stmfd sp!, {r0-r3}
2895
+
2896
+ // Load the context argument from the config page.
2897
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2898
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2899
+ ldr r0, [pc, #-4092]
2900
+
2901
+ // Load the jump address from the config page.
2902
+ ldr pc, [pc, #-4092]
2903
+
2904
+
2905
+ // trampoline
2906
+ // Save to stack
2907
+ stmfd sp!, {r0-r3}
2908
+
2909
+ // Load the context argument from the config page.
2910
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2911
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2912
+ ldr r0, [pc, #-4092]
2913
+
2914
+ // Load the jump address from the config page.
2915
+ ldr pc, [pc, #-4092]
2916
+
2917
+
2918
+ // trampoline
2919
+ // Save to stack
2920
+ stmfd sp!, {r0-r3}
2921
+
2922
+ // Load the context argument from the config page.
2923
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2924
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2925
+ ldr r0, [pc, #-4092]
2926
+
2927
+ // Load the jump address from the config page.
2928
+ ldr pc, [pc, #-4092]
2929
+
2930
+
2931
+ // trampoline
2932
+ // Save to stack
2933
+ stmfd sp!, {r0-r3}
2934
+
2935
+ // Load the context argument from the config page.
2936
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2937
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2938
+ ldr r0, [pc, #-4092]
2939
+
2940
+ // Load the jump address from the config page.
2941
+ ldr pc, [pc, #-4092]
2942
+
2943
+
2944
+ // trampoline
2945
+ // Save to stack
2946
+ stmfd sp!, {r0-r3}
2947
+
2948
+ // Load the context argument from the config page.
2949
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2950
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2951
+ ldr r0, [pc, #-4092]
2952
+
2953
+ // Load the jump address from the config page.
2954
+ ldr pc, [pc, #-4092]
2955
+
2956
+
2957
+ // trampoline
2958
+ // Save to stack
2959
+ stmfd sp!, {r0-r3}
2960
+
2961
+ // Load the context argument from the config page.
2962
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2963
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2964
+ ldr r0, [pc, #-4092]
2965
+
2966
+ // Load the jump address from the config page.
2967
+ ldr pc, [pc, #-4092]
2968
+
2969
+
2970
+ // trampoline
2971
+ // Save to stack
2972
+ stmfd sp!, {r0-r3}
2973
+
2974
+ // Load the context argument from the config page.
2975
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2976
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2977
+ ldr r0, [pc, #-4092]
2978
+
2979
+ // Load the jump address from the config page.
2980
+ ldr pc, [pc, #-4092]
2981
+
2982
+
2983
+ // trampoline
2984
+ // Save to stack
2985
+ stmfd sp!, {r0-r3}
2986
+
2987
+ // Load the context argument from the config page.
2988
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
2989
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
2990
+ ldr r0, [pc, #-4092]
2991
+
2992
+ // Load the jump address from the config page.
2993
+ ldr pc, [pc, #-4092]
2994
+
2995
+
2996
+ // trampoline
2997
+ // Save to stack
2998
+ stmfd sp!, {r0-r3}
2999
+
3000
+ // Load the context argument from the config page.
3001
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3002
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3003
+ ldr r0, [pc, #-4092]
3004
+
3005
+ // Load the jump address from the config page.
3006
+ ldr pc, [pc, #-4092]
3007
+
3008
+
3009
+ // trampoline
3010
+ // Save to stack
3011
+ stmfd sp!, {r0-r3}
3012
+
3013
+ // Load the context argument from the config page.
3014
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3015
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3016
+ ldr r0, [pc, #-4092]
3017
+
3018
+ // Load the jump address from the config page.
3019
+ ldr pc, [pc, #-4092]
3020
+
3021
+
3022
+ // trampoline
3023
+ // Save to stack
3024
+ stmfd sp!, {r0-r3}
3025
+
3026
+ // Load the context argument from the config page.
3027
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3028
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3029
+ ldr r0, [pc, #-4092]
3030
+
3031
+ // Load the jump address from the config page.
3032
+ ldr pc, [pc, #-4092]
3033
+
3034
+
3035
+ // trampoline
3036
+ // Save to stack
3037
+ stmfd sp!, {r0-r3}
3038
+
3039
+ // Load the context argument from the config page.
3040
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3041
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3042
+ ldr r0, [pc, #-4092]
3043
+
3044
+ // Load the jump address from the config page.
3045
+ ldr pc, [pc, #-4092]
3046
+
3047
+
3048
+ // trampoline
3049
+ // Save to stack
3050
+ stmfd sp!, {r0-r3}
3051
+
3052
+ // Load the context argument from the config page.
3053
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3054
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3055
+ ldr r0, [pc, #-4092]
3056
+
3057
+ // Load the jump address from the config page.
3058
+ ldr pc, [pc, #-4092]
3059
+
3060
+
3061
+ // trampoline
3062
+ // Save to stack
3063
+ stmfd sp!, {r0-r3}
3064
+
3065
+ // Load the context argument from the config page.
3066
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3067
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3068
+ ldr r0, [pc, #-4092]
3069
+
3070
+ // Load the jump address from the config page.
3071
+ ldr pc, [pc, #-4092]
3072
+
3073
+
3074
+ // trampoline
3075
+ // Save to stack
3076
+ stmfd sp!, {r0-r3}
3077
+
3078
+ // Load the context argument from the config page.
3079
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3080
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3081
+ ldr r0, [pc, #-4092]
3082
+
3083
+ // Load the jump address from the config page.
3084
+ ldr pc, [pc, #-4092]
3085
+
3086
+
3087
+ // trampoline
3088
+ // Save to stack
3089
+ stmfd sp!, {r0-r3}
3090
+
3091
+ // Load the context argument from the config page.
3092
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3093
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3094
+ ldr r0, [pc, #-4092]
3095
+
3096
+ // Load the jump address from the config page.
3097
+ ldr pc, [pc, #-4092]
3098
+
3099
+
3100
+ // trampoline
3101
+ // Save to stack
3102
+ stmfd sp!, {r0-r3}
3103
+
3104
+ // Load the context argument from the config page.
3105
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3106
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3107
+ ldr r0, [pc, #-4092]
3108
+
3109
+ // Load the jump address from the config page.
3110
+ ldr pc, [pc, #-4092]
3111
+
3112
+
3113
+ // trampoline
3114
+ // Save to stack
3115
+ stmfd sp!, {r0-r3}
3116
+
3117
+ // Load the context argument from the config page.
3118
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3119
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3120
+ ldr r0, [pc, #-4092]
3121
+
3122
+ // Load the jump address from the config page.
3123
+ ldr pc, [pc, #-4092]
3124
+
3125
+
3126
+ // trampoline
3127
+ // Save to stack
3128
+ stmfd sp!, {r0-r3}
3129
+
3130
+ // Load the context argument from the config page.
3131
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3132
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3133
+ ldr r0, [pc, #-4092]
3134
+
3135
+ // Load the jump address from the config page.
3136
+ ldr pc, [pc, #-4092]
3137
+
3138
+
3139
+ // trampoline
3140
+ // Save to stack
3141
+ stmfd sp!, {r0-r3}
3142
+
3143
+ // Load the context argument from the config page.
3144
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3145
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3146
+ ldr r0, [pc, #-4092]
3147
+
3148
+ // Load the jump address from the config page.
3149
+ ldr pc, [pc, #-4092]
3150
+
3151
+
3152
+ // trampoline
3153
+ // Save to stack
3154
+ stmfd sp!, {r0-r3}
3155
+
3156
+ // Load the context argument from the config page.
3157
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3158
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3159
+ ldr r0, [pc, #-4092]
3160
+
3161
+ // Load the jump address from the config page.
3162
+ ldr pc, [pc, #-4092]
3163
+
3164
+
3165
+ // trampoline
3166
+ // Save to stack
3167
+ stmfd sp!, {r0-r3}
3168
+
3169
+ // Load the context argument from the config page.
3170
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3171
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3172
+ ldr r0, [pc, #-4092]
3173
+
3174
+ // Load the jump address from the config page.
3175
+ ldr pc, [pc, #-4092]
3176
+
3177
+
3178
+ // trampoline
3179
+ // Save to stack
3180
+ stmfd sp!, {r0-r3}
3181
+
3182
+ // Load the context argument from the config page.
3183
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3184
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3185
+ ldr r0, [pc, #-4092]
3186
+
3187
+ // Load the jump address from the config page.
3188
+ ldr pc, [pc, #-4092]
3189
+
3190
+
3191
+ // trampoline
3192
+ // Save to stack
3193
+ stmfd sp!, {r0-r3}
3194
+
3195
+ // Load the context argument from the config page.
3196
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3197
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3198
+ ldr r0, [pc, #-4092]
3199
+
3200
+ // Load the jump address from the config page.
3201
+ ldr pc, [pc, #-4092]
3202
+
3203
+
3204
+ // trampoline
3205
+ // Save to stack
3206
+ stmfd sp!, {r0-r3}
3207
+
3208
+ // Load the context argument from the config page.
3209
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3210
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3211
+ ldr r0, [pc, #-4092]
3212
+
3213
+ // Load the jump address from the config page.
3214
+ ldr pc, [pc, #-4092]
3215
+
3216
+
3217
+ // trampoline
3218
+ // Save to stack
3219
+ stmfd sp!, {r0-r3}
3220
+
3221
+ // Load the context argument from the config page.
3222
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3223
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3224
+ ldr r0, [pc, #-4092]
3225
+
3226
+ // Load the jump address from the config page.
3227
+ ldr pc, [pc, #-4092]
3228
+
3229
+
3230
+ // trampoline
3231
+ // Save to stack
3232
+ stmfd sp!, {r0-r3}
3233
+
3234
+ // Load the context argument from the config page.
3235
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3236
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3237
+ ldr r0, [pc, #-4092]
3238
+
3239
+ // Load the jump address from the config page.
3240
+ ldr pc, [pc, #-4092]
3241
+
3242
+
3243
+ // trampoline
3244
+ // Save to stack
3245
+ stmfd sp!, {r0-r3}
3246
+
3247
+ // Load the context argument from the config page.
3248
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3249
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3250
+ ldr r0, [pc, #-4092]
3251
+
3252
+ // Load the jump address from the config page.
3253
+ ldr pc, [pc, #-4092]
3254
+
3255
+
3256
+ // trampoline
3257
+ // Save to stack
3258
+ stmfd sp!, {r0-r3}
3259
+
3260
+ // Load the context argument from the config page.
3261
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3262
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3263
+ ldr r0, [pc, #-4092]
3264
+
3265
+ // Load the jump address from the config page.
3266
+ ldr pc, [pc, #-4092]
3267
+
3268
+
3269
+ // trampoline
3270
+ // Save to stack
3271
+ stmfd sp!, {r0-r3}
3272
+
3273
+ // Load the context argument from the config page.
3274
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3275
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3276
+ ldr r0, [pc, #-4092]
3277
+
3278
+ // Load the jump address from the config page.
3279
+ ldr pc, [pc, #-4092]
3280
+
3281
+
3282
+ // trampoline
3283
+ // Save to stack
3284
+ stmfd sp!, {r0-r3}
3285
+
3286
+ // Load the context argument from the config page.
3287
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3288
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3289
+ ldr r0, [pc, #-4092]
3290
+
3291
+ // Load the jump address from the config page.
3292
+ ldr pc, [pc, #-4092]
3293
+
3294
+
3295
+ // trampoline
3296
+ // Save to stack
3297
+ stmfd sp!, {r0-r3}
3298
+
3299
+ // Load the context argument from the config page.
3300
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3301
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3302
+ ldr r0, [pc, #-4092]
3303
+
3304
+ // Load the jump address from the config page.
3305
+ ldr pc, [pc, #-4092]
3306
+
3307
+
3308
+ // trampoline
3309
+ // Save to stack
3310
+ stmfd sp!, {r0-r3}
3311
+
3312
+ // Load the context argument from the config page.
3313
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3314
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3315
+ ldr r0, [pc, #-4092]
3316
+
3317
+ // Load the jump address from the config page.
3318
+ ldr pc, [pc, #-4092]
3319
+
3320
+
3321
+ // trampoline
3322
+ // Save to stack
3323
+ stmfd sp!, {r0-r3}
3324
+
3325
+ // Load the context argument from the config page.
3326
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3327
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3328
+ ldr r0, [pc, #-4092]
3329
+
3330
+ // Load the jump address from the config page.
3331
+ ldr pc, [pc, #-4092]
3332
+
3333
+
3334
+ // trampoline
3335
+ // Save to stack
3336
+ stmfd sp!, {r0-r3}
3337
+
3338
+ // Load the context argument from the config page.
3339
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3340
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3341
+ ldr r0, [pc, #-4092]
3342
+
3343
+ // Load the jump address from the config page.
3344
+ ldr pc, [pc, #-4092]
3345
+
3346
+
3347
+ // trampoline
3348
+ // Save to stack
3349
+ stmfd sp!, {r0-r3}
3350
+
3351
+ // Load the context argument from the config page.
3352
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3353
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3354
+ ldr r0, [pc, #-4092]
3355
+
3356
+ // Load the jump address from the config page.
3357
+ ldr pc, [pc, #-4092]
3358
+
3359
+
3360
+ // trampoline
3361
+ // Save to stack
3362
+ stmfd sp!, {r0-r3}
3363
+
3364
+ // Load the context argument from the config page.
3365
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3366
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3367
+ ldr r0, [pc, #-4092]
3368
+
3369
+ // Load the jump address from the config page.
3370
+ ldr pc, [pc, #-4092]
3371
+
3372
+
3373
+ // trampoline
3374
+ // Save to stack
3375
+ stmfd sp!, {r0-r3}
3376
+
3377
+ // Load the context argument from the config page.
3378
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3379
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3380
+ ldr r0, [pc, #-4092]
3381
+
3382
+ // Load the jump address from the config page.
3383
+ ldr pc, [pc, #-4092]
3384
+
3385
+
3386
+ // trampoline
3387
+ // Save to stack
3388
+ stmfd sp!, {r0-r3}
3389
+
3390
+ // Load the context argument from the config page.
3391
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3392
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3393
+ ldr r0, [pc, #-4092]
3394
+
3395
+ // Load the jump address from the config page.
3396
+ ldr pc, [pc, #-4092]
3397
+
3398
+
3399
+ // trampoline
3400
+ // Save to stack
3401
+ stmfd sp!, {r0-r3}
3402
+
3403
+ // Load the context argument from the config page.
3404
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3405
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3406
+ ldr r0, [pc, #-4092]
3407
+
3408
+ // Load the jump address from the config page.
3409
+ ldr pc, [pc, #-4092]
3410
+
3411
+
3412
+ // trampoline
3413
+ // Save to stack
3414
+ stmfd sp!, {r0-r3}
3415
+
3416
+ // Load the context argument from the config page.
3417
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3418
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3419
+ ldr r0, [pc, #-4092]
3420
+
3421
+ // Load the jump address from the config page.
3422
+ ldr pc, [pc, #-4092]
3423
+
3424
+
3425
+ // trampoline
3426
+ // Save to stack
3427
+ stmfd sp!, {r0-r3}
3428
+
3429
+ // Load the context argument from the config page.
3430
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3431
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3432
+ ldr r0, [pc, #-4092]
3433
+
3434
+ // Load the jump address from the config page.
3435
+ ldr pc, [pc, #-4092]
3436
+
3437
+
3438
+ // trampoline
3439
+ // Save to stack
3440
+ stmfd sp!, {r0-r3}
3441
+
3442
+ // Load the context argument from the config page.
3443
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3444
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3445
+ ldr r0, [pc, #-4092]
3446
+
3447
+ // Load the jump address from the config page.
3448
+ ldr pc, [pc, #-4092]
3449
+
3450
+
3451
+ // trampoline
3452
+ // Save to stack
3453
+ stmfd sp!, {r0-r3}
3454
+
3455
+ // Load the context argument from the config page.
3456
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3457
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3458
+ ldr r0, [pc, #-4092]
3459
+
3460
+ // Load the jump address from the config page.
3461
+ ldr pc, [pc, #-4092]
3462
+
3463
+
3464
+ // trampoline
3465
+ // Save to stack
3466
+ stmfd sp!, {r0-r3}
3467
+
3468
+ // Load the context argument from the config page.
3469
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3470
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3471
+ ldr r0, [pc, #-4092]
3472
+
3473
+ // Load the jump address from the config page.
3474
+ ldr pc, [pc, #-4092]
3475
+
3476
+
3477
+ // trampoline
3478
+ // Save to stack
3479
+ stmfd sp!, {r0-r3}
3480
+
3481
+ // Load the context argument from the config page.
3482
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3483
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3484
+ ldr r0, [pc, #-4092]
3485
+
3486
+ // Load the jump address from the config page.
3487
+ ldr pc, [pc, #-4092]
3488
+
3489
+
3490
+ // trampoline
3491
+ // Save to stack
3492
+ stmfd sp!, {r0-r3}
3493
+
3494
+ // Load the context argument from the config page.
3495
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3496
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3497
+ ldr r0, [pc, #-4092]
3498
+
3499
+ // Load the jump address from the config page.
3500
+ ldr pc, [pc, #-4092]
3501
+
3502
+
3503
+ // trampoline
3504
+ // Save to stack
3505
+ stmfd sp!, {r0-r3}
3506
+
3507
+ // Load the context argument from the config page.
3508
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3509
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3510
+ ldr r0, [pc, #-4092]
3511
+
3512
+ // Load the jump address from the config page.
3513
+ ldr pc, [pc, #-4092]
3514
+
3515
+
3516
+ // trampoline
3517
+ // Save to stack
3518
+ stmfd sp!, {r0-r3}
3519
+
3520
+ // Load the context argument from the config page.
3521
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3522
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3523
+ ldr r0, [pc, #-4092]
3524
+
3525
+ // Load the jump address from the config page.
3526
+ ldr pc, [pc, #-4092]
3527
+
3528
+
3529
+ // trampoline
3530
+ // Save to stack
3531
+ stmfd sp!, {r0-r3}
3532
+
3533
+ // Load the context argument from the config page.
3534
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3535
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3536
+ ldr r0, [pc, #-4092]
3537
+
3538
+ // Load the jump address from the config page.
3539
+ ldr pc, [pc, #-4092]
3540
+
3541
+
3542
+ // trampoline
3543
+ // Save to stack
3544
+ stmfd sp!, {r0-r3}
3545
+
3546
+ // Load the context argument from the config page.
3547
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3548
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3549
+ ldr r0, [pc, #-4092]
3550
+
3551
+ // Load the jump address from the config page.
3552
+ ldr pc, [pc, #-4092]
3553
+
3554
+
3555
+ // trampoline
3556
+ // Save to stack
3557
+ stmfd sp!, {r0-r3}
3558
+
3559
+ // Load the context argument from the config page.
3560
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3561
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3562
+ ldr r0, [pc, #-4092]
3563
+
3564
+ // Load the jump address from the config page.
3565
+ ldr pc, [pc, #-4092]
3566
+
3567
+
3568
+ // trampoline
3569
+ // Save to stack
3570
+ stmfd sp!, {r0-r3}
3571
+
3572
+ // Load the context argument from the config page.
3573
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3574
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3575
+ ldr r0, [pc, #-4092]
3576
+
3577
+ // Load the jump address from the config page.
3578
+ ldr pc, [pc, #-4092]
3579
+
3580
+
3581
+ // trampoline
3582
+ // Save to stack
3583
+ stmfd sp!, {r0-r3}
3584
+
3585
+ // Load the context argument from the config page.
3586
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3587
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3588
+ ldr r0, [pc, #-4092]
3589
+
3590
+ // Load the jump address from the config page.
3591
+ ldr pc, [pc, #-4092]
3592
+
3593
+
3594
+ // trampoline
3595
+ // Save to stack
3596
+ stmfd sp!, {r0-r3}
3597
+
3598
+ // Load the context argument from the config page.
3599
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3600
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3601
+ ldr r0, [pc, #-4092]
3602
+
3603
+ // Load the jump address from the config page.
3604
+ ldr pc, [pc, #-4092]
3605
+
3606
+
3607
+ // trampoline
3608
+ // Save to stack
3609
+ stmfd sp!, {r0-r3}
3610
+
3611
+ // Load the context argument from the config page.
3612
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3613
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3614
+ ldr r0, [pc, #-4092]
3615
+
3616
+ // Load the jump address from the config page.
3617
+ ldr pc, [pc, #-4092]
3618
+
3619
+
3620
+ // trampoline
3621
+ // Save to stack
3622
+ stmfd sp!, {r0-r3}
3623
+
3624
+ // Load the context argument from the config page.
3625
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3626
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3627
+ ldr r0, [pc, #-4092]
3628
+
3629
+ // Load the jump address from the config page.
3630
+ ldr pc, [pc, #-4092]
3631
+
3632
+
3633
+ // trampoline
3634
+ // Save to stack
3635
+ stmfd sp!, {r0-r3}
3636
+
3637
+ // Load the context argument from the config page.
3638
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3639
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3640
+ ldr r0, [pc, #-4092]
3641
+
3642
+ // Load the jump address from the config page.
3643
+ ldr pc, [pc, #-4092]
3644
+
3645
+
3646
+ // trampoline
3647
+ // Save to stack
3648
+ stmfd sp!, {r0-r3}
3649
+
3650
+ // Load the context argument from the config page.
3651
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3652
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3653
+ ldr r0, [pc, #-4092]
3654
+
3655
+ // Load the jump address from the config page.
3656
+ ldr pc, [pc, #-4092]
3657
+
3658
+
3659
+ // trampoline
3660
+ // Save to stack
3661
+ stmfd sp!, {r0-r3}
3662
+
3663
+ // Load the context argument from the config page.
3664
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3665
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3666
+ ldr r0, [pc, #-4092]
3667
+
3668
+ // Load the jump address from the config page.
3669
+ ldr pc, [pc, #-4092]
3670
+
3671
+
3672
+ // trampoline
3673
+ // Save to stack
3674
+ stmfd sp!, {r0-r3}
3675
+
3676
+ // Load the context argument from the config page.
3677
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3678
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3679
+ ldr r0, [pc, #-4092]
3680
+
3681
+ // Load the jump address from the config page.
3682
+ ldr pc, [pc, #-4092]
3683
+
3684
+
3685
+ // trampoline
3686
+ // Save to stack
3687
+ stmfd sp!, {r0-r3}
3688
+
3689
+ // Load the context argument from the config page.
3690
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3691
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3692
+ ldr r0, [pc, #-4092]
3693
+
3694
+ // Load the jump address from the config page.
3695
+ ldr pc, [pc, #-4092]
3696
+
3697
+
3698
+ // trampoline
3699
+ // Save to stack
3700
+ stmfd sp!, {r0-r3}
3701
+
3702
+ // Load the context argument from the config page.
3703
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3704
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3705
+ ldr r0, [pc, #-4092]
3706
+
3707
+ // Load the jump address from the config page.
3708
+ ldr pc, [pc, #-4092]
3709
+
3710
+
3711
+ // trampoline
3712
+ // Save to stack
3713
+ stmfd sp!, {r0-r3}
3714
+
3715
+ // Load the context argument from the config page.
3716
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3717
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3718
+ ldr r0, [pc, #-4092]
3719
+
3720
+ // Load the jump address from the config page.
3721
+ ldr pc, [pc, #-4092]
3722
+
3723
+
3724
+ // trampoline
3725
+ // Save to stack
3726
+ stmfd sp!, {r0-r3}
3727
+
3728
+ // Load the context argument from the config page.
3729
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3730
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3731
+ ldr r0, [pc, #-4092]
3732
+
3733
+ // Load the jump address from the config page.
3734
+ ldr pc, [pc, #-4092]
3735
+
3736
+
3737
+ // trampoline
3738
+ // Save to stack
3739
+ stmfd sp!, {r0-r3}
3740
+
3741
+ // Load the context argument from the config page.
3742
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3743
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3744
+ ldr r0, [pc, #-4092]
3745
+
3746
+ // Load the jump address from the config page.
3747
+ ldr pc, [pc, #-4092]
3748
+
3749
+
3750
+ // trampoline
3751
+ // Save to stack
3752
+ stmfd sp!, {r0-r3}
3753
+
3754
+ // Load the context argument from the config page.
3755
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3756
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3757
+ ldr r0, [pc, #-4092]
3758
+
3759
+ // Load the jump address from the config page.
3760
+ ldr pc, [pc, #-4092]
3761
+
3762
+
3763
+ // trampoline
3764
+ // Save to stack
3765
+ stmfd sp!, {r0-r3}
3766
+
3767
+ // Load the context argument from the config page.
3768
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3769
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3770
+ ldr r0, [pc, #-4092]
3771
+
3772
+ // Load the jump address from the config page.
3773
+ ldr pc, [pc, #-4092]
3774
+
3775
+
3776
+ // trampoline
3777
+ // Save to stack
3778
+ stmfd sp!, {r0-r3}
3779
+
3780
+ // Load the context argument from the config page.
3781
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3782
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3783
+ ldr r0, [pc, #-4092]
3784
+
3785
+ // Load the jump address from the config page.
3786
+ ldr pc, [pc, #-4092]
3787
+
3788
+
3789
+ // trampoline
3790
+ // Save to stack
3791
+ stmfd sp!, {r0-r3}
3792
+
3793
+ // Load the context argument from the config page.
3794
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3795
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3796
+ ldr r0, [pc, #-4092]
3797
+
3798
+ // Load the jump address from the config page.
3799
+ ldr pc, [pc, #-4092]
3800
+
3801
+
3802
+ // trampoline
3803
+ // Save to stack
3804
+ stmfd sp!, {r0-r3}
3805
+
3806
+ // Load the context argument from the config page.
3807
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3808
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3809
+ ldr r0, [pc, #-4092]
3810
+
3811
+ // Load the jump address from the config page.
3812
+ ldr pc, [pc, #-4092]
3813
+
3814
+
3815
+ // trampoline
3816
+ // Save to stack
3817
+ stmfd sp!, {r0-r3}
3818
+
3819
+ // Load the context argument from the config page.
3820
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3821
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3822
+ ldr r0, [pc, #-4092]
3823
+
3824
+ // Load the jump address from the config page.
3825
+ ldr pc, [pc, #-4092]
3826
+
3827
+
3828
+ // trampoline
3829
+ // Save to stack
3830
+ stmfd sp!, {r0-r3}
3831
+
3832
+ // Load the context argument from the config page.
3833
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3834
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3835
+ ldr r0, [pc, #-4092]
3836
+
3837
+ // Load the jump address from the config page.
3838
+ ldr pc, [pc, #-4092]
3839
+
3840
+
3841
+ // trampoline
3842
+ // Save to stack
3843
+ stmfd sp!, {r0-r3}
3844
+
3845
+ // Load the context argument from the config page.
3846
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3847
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3848
+ ldr r0, [pc, #-4092]
3849
+
3850
+ // Load the jump address from the config page.
3851
+ ldr pc, [pc, #-4092]
3852
+
3853
+
3854
+ // trampoline
3855
+ // Save to stack
3856
+ stmfd sp!, {r0-r3}
3857
+
3858
+ // Load the context argument from the config page.
3859
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3860
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3861
+ ldr r0, [pc, #-4092]
3862
+
3863
+ // Load the jump address from the config page.
3864
+ ldr pc, [pc, #-4092]
3865
+
3866
+
3867
+ // trampoline
3868
+ // Save to stack
3869
+ stmfd sp!, {r0-r3}
3870
+
3871
+ // Load the context argument from the config page.
3872
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3873
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3874
+ ldr r0, [pc, #-4092]
3875
+
3876
+ // Load the jump address from the config page.
3877
+ ldr pc, [pc, #-4092]
3878
+
3879
+
3880
+ // trampoline
3881
+ // Save to stack
3882
+ stmfd sp!, {r0-r3}
3883
+
3884
+ // Load the context argument from the config page.
3885
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3886
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3887
+ ldr r0, [pc, #-4092]
3888
+
3889
+ // Load the jump address from the config page.
3890
+ ldr pc, [pc, #-4092]
3891
+
3892
+
3893
+ // trampoline
3894
+ // Save to stack
3895
+ stmfd sp!, {r0-r3}
3896
+
3897
+ // Load the context argument from the config page.
3898
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3899
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3900
+ ldr r0, [pc, #-4092]
3901
+
3902
+ // Load the jump address from the config page.
3903
+ ldr pc, [pc, #-4092]
3904
+
3905
+
3906
+ // trampoline
3907
+ // Save to stack
3908
+ stmfd sp!, {r0-r3}
3909
+
3910
+ // Load the context argument from the config page.
3911
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3912
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3913
+ ldr r0, [pc, #-4092]
3914
+
3915
+ // Load the jump address from the config page.
3916
+ ldr pc, [pc, #-4092]
3917
+
3918
+
3919
+ // trampoline
3920
+ // Save to stack
3921
+ stmfd sp!, {r0-r3}
3922
+
3923
+ // Load the context argument from the config page.
3924
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3925
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3926
+ ldr r0, [pc, #-4092]
3927
+
3928
+ // Load the jump address from the config page.
3929
+ ldr pc, [pc, #-4092]
3930
+
3931
+
3932
+ // trampoline
3933
+ // Save to stack
3934
+ stmfd sp!, {r0-r3}
3935
+
3936
+ // Load the context argument from the config page.
3937
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3938
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3939
+ ldr r0, [pc, #-4092]
3940
+
3941
+ // Load the jump address from the config page.
3942
+ ldr pc, [pc, #-4092]
3943
+
3944
+
3945
+ // trampoline
3946
+ // Save to stack
3947
+ stmfd sp!, {r0-r3}
3948
+
3949
+ // Load the context argument from the config page.
3950
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3951
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3952
+ ldr r0, [pc, #-4092]
3953
+
3954
+ // Load the jump address from the config page.
3955
+ ldr pc, [pc, #-4092]
3956
+
3957
+
3958
+ // trampoline
3959
+ // Save to stack
3960
+ stmfd sp!, {r0-r3}
3961
+
3962
+ // Load the context argument from the config page.
3963
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3964
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3965
+ ldr r0, [pc, #-4092]
3966
+
3967
+ // Load the jump address from the config page.
3968
+ ldr pc, [pc, #-4092]
3969
+
3970
+
3971
+ // trampoline
3972
+ // Save to stack
3973
+ stmfd sp!, {r0-r3}
3974
+
3975
+ // Load the context argument from the config page.
3976
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3977
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3978
+ ldr r0, [pc, #-4092]
3979
+
3980
+ // Load the jump address from the config page.
3981
+ ldr pc, [pc, #-4092]
3982
+
3983
+
3984
+ // trampoline
3985
+ // Save to stack
3986
+ stmfd sp!, {r0-r3}
3987
+
3988
+ // Load the context argument from the config page.
3989
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
3990
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
3991
+ ldr r0, [pc, #-4092]
3992
+
3993
+ // Load the jump address from the config page.
3994
+ ldr pc, [pc, #-4092]
3995
+
3996
+
3997
+ // trampoline
3998
+ // Save to stack
3999
+ stmfd sp!, {r0-r3}
4000
+
4001
+ // Load the context argument from the config page.
4002
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4003
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4004
+ ldr r0, [pc, #-4092]
4005
+
4006
+ // Load the jump address from the config page.
4007
+ ldr pc, [pc, #-4092]
4008
+
4009
+
4010
+ // trampoline
4011
+ // Save to stack
4012
+ stmfd sp!, {r0-r3}
4013
+
4014
+ // Load the context argument from the config page.
4015
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4016
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4017
+ ldr r0, [pc, #-4092]
4018
+
4019
+ // Load the jump address from the config page.
4020
+ ldr pc, [pc, #-4092]
4021
+
4022
+
4023
+ // trampoline
4024
+ // Save to stack
4025
+ stmfd sp!, {r0-r3}
4026
+
4027
+ // Load the context argument from the config page.
4028
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4029
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4030
+ ldr r0, [pc, #-4092]
4031
+
4032
+ // Load the jump address from the config page.
4033
+ ldr pc, [pc, #-4092]
4034
+
4035
+
4036
+ // trampoline
4037
+ // Save to stack
4038
+ stmfd sp!, {r0-r3}
4039
+
4040
+ // Load the context argument from the config page.
4041
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4042
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4043
+ ldr r0, [pc, #-4092]
4044
+
4045
+ // Load the jump address from the config page.
4046
+ ldr pc, [pc, #-4092]
4047
+
4048
+
4049
+ // trampoline
4050
+ // Save to stack
4051
+ stmfd sp!, {r0-r3}
4052
+
4053
+ // Load the context argument from the config page.
4054
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4055
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4056
+ ldr r0, [pc, #-4092]
4057
+
4058
+ // Load the jump address from the config page.
4059
+ ldr pc, [pc, #-4092]
4060
+
4061
+
4062
+ // trampoline
4063
+ // Save to stack
4064
+ stmfd sp!, {r0-r3}
4065
+
4066
+ // Load the context argument from the config page.
4067
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4068
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4069
+ ldr r0, [pc, #-4092]
4070
+
4071
+ // Load the jump address from the config page.
4072
+ ldr pc, [pc, #-4092]
4073
+
4074
+
4075
+ // trampoline
4076
+ // Save to stack
4077
+ stmfd sp!, {r0-r3}
4078
+
4079
+ // Load the context argument from the config page.
4080
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4081
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4082
+ ldr r0, [pc, #-4092]
4083
+
4084
+ // Load the jump address from the config page.
4085
+ ldr pc, [pc, #-4092]
4086
+
4087
+
4088
+ // trampoline
4089
+ // Save to stack
4090
+ stmfd sp!, {r0-r3}
4091
+
4092
+ // Load the context argument from the config page.
4093
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4094
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4095
+ ldr r0, [pc, #-4092]
4096
+
4097
+ // Load the jump address from the config page.
4098
+ ldr pc, [pc, #-4092]
4099
+
4100
+
4101
+ // trampoline
4102
+ // Save to stack
4103
+ stmfd sp!, {r0-r3}
4104
+
4105
+ // Load the context argument from the config page.
4106
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4107
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4108
+ ldr r0, [pc, #-4092]
4109
+
4110
+ // Load the jump address from the config page.
4111
+ ldr pc, [pc, #-4092]
4112
+
4113
+
4114
+ // trampoline
4115
+ // Save to stack
4116
+ stmfd sp!, {r0-r3}
4117
+
4118
+ // Load the context argument from the config page.
4119
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4120
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4121
+ ldr r0, [pc, #-4092]
4122
+
4123
+ // Load the jump address from the config page.
4124
+ ldr pc, [pc, #-4092]
4125
+
4126
+
4127
+ // trampoline
4128
+ // Save to stack
4129
+ stmfd sp!, {r0-r3}
4130
+
4131
+ // Load the context argument from the config page.
4132
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4133
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4134
+ ldr r0, [pc, #-4092]
4135
+
4136
+ // Load the jump address from the config page.
4137
+ ldr pc, [pc, #-4092]
4138
+
4139
+
4140
+ // trampoline
4141
+ // Save to stack
4142
+ stmfd sp!, {r0-r3}
4143
+
4144
+ // Load the context argument from the config page.
4145
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4146
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4147
+ ldr r0, [pc, #-4092]
4148
+
4149
+ // Load the jump address from the config page.
4150
+ ldr pc, [pc, #-4092]
4151
+
4152
+
4153
+ // trampoline
4154
+ // Save to stack
4155
+ stmfd sp!, {r0-r3}
4156
+
4157
+ // Load the context argument from the config page.
4158
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4159
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4160
+ ldr r0, [pc, #-4092]
4161
+
4162
+ // Load the jump address from the config page.
4163
+ ldr pc, [pc, #-4092]
4164
+
4165
+
4166
+ // trampoline
4167
+ // Save to stack
4168
+ stmfd sp!, {r0-r3}
4169
+
4170
+ // Load the context argument from the config page.
4171
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4172
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4173
+ ldr r0, [pc, #-4092]
4174
+
4175
+ // Load the jump address from the config page.
4176
+ ldr pc, [pc, #-4092]
4177
+
4178
+
4179
+ // trampoline
4180
+ // Save to stack
4181
+ stmfd sp!, {r0-r3}
4182
+
4183
+ // Load the context argument from the config page.
4184
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4185
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4186
+ ldr r0, [pc, #-4092]
4187
+
4188
+ // Load the jump address from the config page.
4189
+ ldr pc, [pc, #-4092]
4190
+
4191
+
4192
+ // trampoline
4193
+ // Save to stack
4194
+ stmfd sp!, {r0-r3}
4195
+
4196
+ // Load the context argument from the config page.
4197
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4198
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4199
+ ldr r0, [pc, #-4092]
4200
+
4201
+ // Load the jump address from the config page.
4202
+ ldr pc, [pc, #-4092]
4203
+
4204
+
4205
+ // trampoline
4206
+ // Save to stack
4207
+ stmfd sp!, {r0-r3}
4208
+
4209
+ // Load the context argument from the config page.
4210
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4211
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4212
+ ldr r0, [pc, #-4092]
4213
+
4214
+ // Load the jump address from the config page.
4215
+ ldr pc, [pc, #-4092]
4216
+
4217
+
4218
+ // trampoline
4219
+ // Save to stack
4220
+ stmfd sp!, {r0-r3}
4221
+
4222
+ // Load the context argument from the config page.
4223
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4224
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4225
+ ldr r0, [pc, #-4092]
4226
+
4227
+ // Load the jump address from the config page.
4228
+ ldr pc, [pc, #-4092]
4229
+
4230
+
4231
+ // trampoline
4232
+ // Save to stack
4233
+ stmfd sp!, {r0-r3}
4234
+
4235
+ // Load the context argument from the config page.
4236
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4237
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4238
+ ldr r0, [pc, #-4092]
4239
+
4240
+ // Load the jump address from the config page.
4241
+ ldr pc, [pc, #-4092]
4242
+
4243
+
4244
+ // trampoline
4245
+ // Save to stack
4246
+ stmfd sp!, {r0-r3}
4247
+
4248
+ // Load the context argument from the config page.
4249
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4250
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4251
+ ldr r0, [pc, #-4092]
4252
+
4253
+ // Load the jump address from the config page.
4254
+ ldr pc, [pc, #-4092]
4255
+
4256
+
4257
+ // trampoline
4258
+ // Save to stack
4259
+ stmfd sp!, {r0-r3}
4260
+
4261
+ // Load the context argument from the config page.
4262
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4263
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4264
+ ldr r0, [pc, #-4092]
4265
+
4266
+ // Load the jump address from the config page.
4267
+ ldr pc, [pc, #-4092]
4268
+
4269
+
4270
+ // trampoline
4271
+ // Save to stack
4272
+ stmfd sp!, {r0-r3}
4273
+
4274
+ // Load the context argument from the config page.
4275
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4276
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4277
+ ldr r0, [pc, #-4092]
4278
+
4279
+ // Load the jump address from the config page.
4280
+ ldr pc, [pc, #-4092]
4281
+
4282
+
4283
+ // trampoline
4284
+ // Save to stack
4285
+ stmfd sp!, {r0-r3}
4286
+
4287
+ // Load the context argument from the config page.
4288
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4289
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4290
+ ldr r0, [pc, #-4092]
4291
+
4292
+ // Load the jump address from the config page.
4293
+ ldr pc, [pc, #-4092]
4294
+
4295
+
4296
+ // trampoline
4297
+ // Save to stack
4298
+ stmfd sp!, {r0-r3}
4299
+
4300
+ // Load the context argument from the config page.
4301
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4302
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4303
+ ldr r0, [pc, #-4092]
4304
+
4305
+ // Load the jump address from the config page.
4306
+ ldr pc, [pc, #-4092]
4307
+
4308
+
4309
+ // trampoline
4310
+ // Save to stack
4311
+ stmfd sp!, {r0-r3}
4312
+
4313
+ // Load the context argument from the config page.
4314
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4315
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4316
+ ldr r0, [pc, #-4092]
4317
+
4318
+ // Load the jump address from the config page.
4319
+ ldr pc, [pc, #-4092]
4320
+
4321
+
4322
+ // trampoline
4323
+ // Save to stack
4324
+ stmfd sp!, {r0-r3}
4325
+
4326
+ // Load the context argument from the config page.
4327
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4328
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4329
+ ldr r0, [pc, #-4092]
4330
+
4331
+ // Load the jump address from the config page.
4332
+ ldr pc, [pc, #-4092]
4333
+
4334
+
4335
+ // trampoline
4336
+ // Save to stack
4337
+ stmfd sp!, {r0-r3}
4338
+
4339
+ // Load the context argument from the config page.
4340
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4341
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4342
+ ldr r0, [pc, #-4092]
4343
+
4344
+ // Load the jump address from the config page.
4345
+ ldr pc, [pc, #-4092]
4346
+
4347
+
4348
+ // trampoline
4349
+ // Save to stack
4350
+ stmfd sp!, {r0-r3}
4351
+
4352
+ // Load the context argument from the config page.
4353
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4354
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4355
+ ldr r0, [pc, #-4092]
4356
+
4357
+ // Load the jump address from the config page.
4358
+ ldr pc, [pc, #-4092]
4359
+
4360
+
4361
+ // trampoline
4362
+ // Save to stack
4363
+ stmfd sp!, {r0-r3}
4364
+
4365
+ // Load the context argument from the config page.
4366
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4367
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4368
+ ldr r0, [pc, #-4092]
4369
+
4370
+ // Load the jump address from the config page.
4371
+ ldr pc, [pc, #-4092]
4372
+
4373
+
4374
+ // trampoline
4375
+ // Save to stack
4376
+ stmfd sp!, {r0-r3}
4377
+
4378
+ // Load the context argument from the config page.
4379
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4380
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4381
+ ldr r0, [pc, #-4092]
4382
+
4383
+ // Load the jump address from the config page.
4384
+ ldr pc, [pc, #-4092]
4385
+
4386
+
4387
+ // trampoline
4388
+ // Save to stack
4389
+ stmfd sp!, {r0-r3}
4390
+
4391
+ // Load the context argument from the config page.
4392
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4393
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4394
+ ldr r0, [pc, #-4092]
4395
+
4396
+ // Load the jump address from the config page.
4397
+ ldr pc, [pc, #-4092]
4398
+
4399
+
4400
+ // trampoline
4401
+ // Save to stack
4402
+ stmfd sp!, {r0-r3}
4403
+
4404
+ // Load the context argument from the config page.
4405
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4406
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4407
+ ldr r0, [pc, #-4092]
4408
+
4409
+ // Load the jump address from the config page.
4410
+ ldr pc, [pc, #-4092]
4411
+
4412
+
4413
+ // trampoline
4414
+ // Save to stack
4415
+ stmfd sp!, {r0-r3}
4416
+
4417
+ // Load the context argument from the config page.
4418
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4419
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4420
+ ldr r0, [pc, #-4092]
4421
+
4422
+ // Load the jump address from the config page.
4423
+ ldr pc, [pc, #-4092]
4424
+
4425
+
4426
+ // trampoline
4427
+ // Save to stack
4428
+ stmfd sp!, {r0-r3}
4429
+
4430
+ // Load the context argument from the config page.
4431
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4432
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4433
+ ldr r0, [pc, #-4092]
4434
+
4435
+ // Load the jump address from the config page.
4436
+ ldr pc, [pc, #-4092]
4437
+
4438
+
4439
+ // trampoline
4440
+ // Save to stack
4441
+ stmfd sp!, {r0-r3}
4442
+
4443
+ // Load the context argument from the config page.
4444
+ // This places the first usable config value at _ffi_closure_trampoline_table-4080
4445
+ // This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from pc.
4446
+ ldr r0, [pc, #-4092]
4447
+
4448
+ // Load the jump address from the config page.
4449
+ ldr pc, [pc, #-4092]
4450
+