iisconfig 0.0.1.pre1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (668) hide show
  1. data/VERSION +1 -0
  2. data/bin/iisconfig +8 -0
  3. data/build/bundler/ruby/1.9.1/bin/bozo +19 -0
  4. data/build/bundler/ruby/1.9.1/bin/bozo.bat +6 -0
  5. data/build/bundler/ruby/1.9.1/bin/erubis +19 -0
  6. data/build/bundler/ruby/1.9.1/bin/erubis.bat +6 -0
  7. data/build/bundler/ruby/1.9.1/bin/gli +19 -0
  8. data/build/bundler/ruby/1.9.1/bin/gli.bat +6 -0
  9. data/build/bundler/ruby/1.9.1/bin/nokogiri +19 -0
  10. data/build/bundler/ruby/1.9.1/bin/nokogiri.bat +6 -0
  11. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-2cbbc5714688/Gemfile +8 -0
  12. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-2cbbc5714688/LICENSE +19 -0
  13. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-2cbbc5714688/README.md +401 -0
  14. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-2cbbc5714688/VERSION +1 -0
  15. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-2cbbc5714688/bin/bozo +9 -0
  16. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-2cbbc5714688/bozo.gemspec +28 -0
  17. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-2cbbc5714688/bozorc.rb +10 -0
  18. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-2cbbc5714688/lib/bozo/bozo.rb +7 -0
  19. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-2cbbc5714688/lib/bozo/bozo_configuration.rb +298 -0
  20. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-2cbbc5714688/lib/bozo/configuration_error.rb +30 -0
  21. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-2cbbc5714688/lib/bozo/execution_error.rb +36 -0
  22. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-2cbbc5714688/lib/bozo/executor.rb +271 -0
  23. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-2cbbc5714688/lib/bozo/runner.rb +87 -0
  24. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-2cbbc5714688/lib/bozo.rb +122 -0
  25. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/Gemfile +7 -0
  26. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/LICENSE +19 -0
  27. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/bozo-scripts.gemspec +21 -0
  28. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/compilers/msbuild.rb +117 -0
  29. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/configuration.rb +141 -0
  30. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/dependency_resolvers/bundler.rb +54 -0
  31. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/dependency_resolvers/nuget.rb +86 -0
  32. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/erubis_templating_coordinator.rb +128 -0
  33. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/hooks/common_assembly_info.rb +34 -0
  34. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/hooks/file_templating.rb +153 -0
  35. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/hooks/fxcop.rb +152 -0
  36. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/hooks/git_commit_hashes.rb +12 -0
  37. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/hooks/git_tag_release.rb +23 -0
  38. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/hooks/teamcity.rb +57 -0
  39. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/hooks/timing.rb +41 -0
  40. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/packagers/nuget.rb +121 -0
  41. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/packagers/rubygems.rb +24 -0
  42. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/publishers/file_copy.rb +83 -0
  43. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/publishers/rubygems.rb +18 -0
  44. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/test_runners/nunit.rb +71 -0
  45. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/test_runners/runit.rb +35 -0
  46. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo/version.rb +5 -0
  47. data/build/bundler/ruby/1.9.1/bundler/gems/bozo-scripts-950046ad1602/lib/bozo_scripts.rb +25 -0
  48. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-722eb92a76ba7fa008fa1137197acb57509a3678/HEAD +1 -0
  49. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-722eb92a76ba7fa008fa1137197acb57509a3678/config +9 -0
  50. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-722eb92a76ba7fa008fa1137197acb57509a3678/description +1 -0
  51. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-722eb92a76ba7fa008fa1137197acb57509a3678/hooks/applypatch-msg.sample +15 -0
  52. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-722eb92a76ba7fa008fa1137197acb57509a3678/hooks/commit-msg.sample +24 -0
  53. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-722eb92a76ba7fa008fa1137197acb57509a3678/hooks/post-commit.sample +8 -0
  54. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-722eb92a76ba7fa008fa1137197acb57509a3678/hooks/post-receive.sample +15 -0
  55. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-722eb92a76ba7fa008fa1137197acb57509a3678/hooks/post-update.sample +8 -0
  56. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-722eb92a76ba7fa008fa1137197acb57509a3678/hooks/pre-applypatch.sample +14 -0
  57. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-722eb92a76ba7fa008fa1137197acb57509a3678/hooks/pre-commit.sample +46 -0
  58. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-722eb92a76ba7fa008fa1137197acb57509a3678/hooks/pre-rebase.sample +169 -0
  59. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-722eb92a76ba7fa008fa1137197acb57509a3678/hooks/prepare-commit-msg.sample +36 -0
  60. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-722eb92a76ba7fa008fa1137197acb57509a3678/hooks/update.sample +128 -0
  61. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-722eb92a76ba7fa008fa1137197acb57509a3678/info/exclude +6 -0
  62. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-722eb92a76ba7fa008fa1137197acb57509a3678/objects/pack/pack-ffc0fcd152360f2bb83e27ce34f3b79a6da13362.idx +0 -0
  63. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-722eb92a76ba7fa008fa1137197acb57509a3678/objects/pack/pack-ffc0fcd152360f2bb83e27ce34f3b79a6da13362.pack +0 -0
  64. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-722eb92a76ba7fa008fa1137197acb57509a3678/packed-refs +7 -0
  65. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-scripts-8d4b32f4951cc00251004a852f4ac5ea682bf45e/HEAD +1 -0
  66. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-scripts-8d4b32f4951cc00251004a852f4ac5ea682bf45e/config +9 -0
  67. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-scripts-8d4b32f4951cc00251004a852f4ac5ea682bf45e/description +1 -0
  68. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-scripts-8d4b32f4951cc00251004a852f4ac5ea682bf45e/hooks/applypatch-msg.sample +15 -0
  69. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-scripts-8d4b32f4951cc00251004a852f4ac5ea682bf45e/hooks/commit-msg.sample +24 -0
  70. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-scripts-8d4b32f4951cc00251004a852f4ac5ea682bf45e/hooks/post-commit.sample +8 -0
  71. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-scripts-8d4b32f4951cc00251004a852f4ac5ea682bf45e/hooks/post-receive.sample +15 -0
  72. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-scripts-8d4b32f4951cc00251004a852f4ac5ea682bf45e/hooks/post-update.sample +8 -0
  73. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-scripts-8d4b32f4951cc00251004a852f4ac5ea682bf45e/hooks/pre-applypatch.sample +14 -0
  74. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-scripts-8d4b32f4951cc00251004a852f4ac5ea682bf45e/hooks/pre-commit.sample +46 -0
  75. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-scripts-8d4b32f4951cc00251004a852f4ac5ea682bf45e/hooks/pre-rebase.sample +169 -0
  76. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-scripts-8d4b32f4951cc00251004a852f4ac5ea682bf45e/hooks/prepare-commit-msg.sample +36 -0
  77. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-scripts-8d4b32f4951cc00251004a852f4ac5ea682bf45e/hooks/update.sample +128 -0
  78. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-scripts-8d4b32f4951cc00251004a852f4ac5ea682bf45e/info/exclude +6 -0
  79. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-scripts-8d4b32f4951cc00251004a852f4ac5ea682bf45e/objects/pack/pack-d66ef3590acf75731eec24e3bc6fb40dd0693dd5.idx +0 -0
  80. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-scripts-8d4b32f4951cc00251004a852f4ac5ea682bf45e/objects/pack/pack-d66ef3590acf75731eec24e3bc6fb40dd0693dd5.pack +0 -0
  81. data/build/bundler/ruby/1.9.1/cache/bundler/git/bozo-scripts-8d4b32f4951cc00251004a852f4ac5ea682bf45e/packed-refs +22 -0
  82. data/build/bundler/ruby/1.9.1/cache/erubis-2.7.0.gem +0 -0
  83. data/build/bundler/ruby/1.9.1/cache/gli-1.4.0.gem +0 -0
  84. data/build/bundler/ruby/1.9.1/cache/nokogiri-1.5.0-x86-mingw32.gem +0 -0
  85. data/build/bundler/ruby/1.9.1/cache/rainbow-1.1.3.gem +0 -0
  86. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/CHANGES.txt +828 -0
  87. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/MIT-LICENSE +20 -0
  88. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/README.txt +102 -0
  89. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/benchmark/Makefile +6 -0
  90. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/benchmark/bench.rb +313 -0
  91. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/benchmark/bench_context.yaml +141 -0
  92. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/benchmark/templates/_footer.html +4 -0
  93. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/benchmark/templates/_header.html +52 -0
  94. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/benchmark/templates/bench_erb.rhtml +29 -0
  95. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/benchmark/templates/bench_erubis.rhtml +29 -0
  96. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/benchmark/templates/bench_eruby.rhtml +29 -0
  97. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/bin/erubis +10 -0
  98. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/contrib/erubis +3468 -0
  99. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/contrib/erubis-run.rb +132 -0
  100. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/contrib/inline-require +179 -0
  101. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc/docstyle.css +209 -0
  102. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc/users-guide.html +3551 -0
  103. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/ActionView/TemplateHandlers/ErubisHandler.html +209 -0
  104. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/ActionView.html +105 -0
  105. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/ERB.html +101 -0
  106. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/ArrayBufferEnhancer.html +175 -0
  107. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/ArrayBufferEruby.html +120 -0
  108. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/ArrayEnhancer.html +174 -0
  109. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/ArrayEruby.html +120 -0
  110. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Basic/Converter.html +327 -0
  111. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Basic/Engine.html +130 -0
  112. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Basic.html +112 -0
  113. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/BiPatternEnhancer.html +215 -0
  114. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/BiPatternEruby.html +120 -0
  115. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/CGenerator.html +386 -0
  116. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/CommandOptionError.html +113 -0
  117. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Context.html +344 -0
  118. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Converter.html +283 -0
  119. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/CppGenerator.html +382 -0
  120. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/DeleteIndentEnhancer.html +150 -0
  121. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/DeleteIndentEruby.html +120 -0
  122. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Ec.html +126 -0
  123. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Ecpp.html +126 -0
  124. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Ejava.html +126 -0
  125. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Ejavascript.html +126 -0
  126. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Engine.html +305 -0
  127. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Eperl.html +126 -0
  128. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Ephp.html +126 -0
  129. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/ErboutEnhancer.html +175 -0
  130. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/ErboutEruby.html +120 -0
  131. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/ErubisError.html +117 -0
  132. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Eruby.html +132 -0
  133. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapeEnhancer.html +165 -0
  134. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEc.html +120 -0
  135. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEcpp.html +120 -0
  136. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEjava.html +120 -0
  137. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEjavascript.html +120 -0
  138. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEperl.html +120 -0
  139. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEphp.html +120 -0
  140. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEruby.html +127 -0
  141. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEscheme.html +120 -0
  142. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Escheme.html +126 -0
  143. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Evaluator.html +212 -0
  144. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/FastEruby.html +131 -0
  145. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Generator.html +416 -0
  146. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/HeaderFooterEnhancer.html +267 -0
  147. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/HeaderFooterEruby.html +120 -0
  148. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Helpers/RailsFormHelper.html +787 -0
  149. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Helpers/RailsHelper/TemplateConverter.html +213 -0
  150. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Helpers/RailsHelper.html +349 -0
  151. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Helpers.html +116 -0
  152. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/InterpolationEnhancer.html +305 -0
  153. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/InterpolationEruby.html +120 -0
  154. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/JavaGenerator.html +359 -0
  155. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/JavascriptGenerator.html +386 -0
  156. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/Main.html +341 -0
  157. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/NoCodeEnhancer.html +249 -0
  158. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/NoCodeEruby.html +120 -0
  159. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/NoTextEnhancer.html +159 -0
  160. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/NoTextEruby.html +120 -0
  161. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/NotSupportedError.html +119 -0
  162. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/OptimizedEruby.html +163 -0
  163. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/OptimizedGenerator.html +439 -0
  164. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/OptimizedXmlEruby.html +163 -0
  165. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Converter.html +266 -0
  166. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Ec.html +166 -0
  167. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Ecpp.html +166 -0
  168. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Ejava.html +166 -0
  169. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Ejavascript.html +166 -0
  170. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Engine.html +122 -0
  171. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Eperl.html +166 -0
  172. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Ephp.html +166 -0
  173. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Eruby.html +155 -0
  174. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Escheme.html +166 -0
  175. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/TinyEruby.html +293 -0
  176. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PI.html +125 -0
  177. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PercentLineEnhancer.html +163 -0
  178. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PercentLineEruby.html +120 -0
  179. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PerlGenerator.html +344 -0
  180. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PhpGenerator.html +350 -0
  181. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PrefixedLineEnhancer.html +210 -0
  182. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PrefixedLineEruby.html +120 -0
  183. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PreprocessingEruby.html +183 -0
  184. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PreprocessingHelper.html +212 -0
  185. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PrintEnabledEnhancer.html +212 -0
  186. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PrintEnabledEruby.html +120 -0
  187. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PrintOutEnhancer.html +244 -0
  188. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PrintOutEruby.html +120 -0
  189. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/PrintOutSimplifiedEruby.html +121 -0
  190. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/RubyEvaluator.html +227 -0
  191. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/RubyGenerator.html +328 -0
  192. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/SchemeGenerator.html +382 -0
  193. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/SimplifiedEruby.html +120 -0
  194. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/SimplifyEnhancer.html +191 -0
  195. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/StdoutEnhancer.html +173 -0
  196. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/StdoutEruby.html +120 -0
  197. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/StdoutSimplifiedEruby.html +121 -0
  198. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/StringBufferEnhancer.html +174 -0
  199. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/StringBufferEruby.html +120 -0
  200. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/StringIOEruby.html +120 -0
  201. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/TinyEruby.html +298 -0
  202. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/XmlEruby.html +130 -0
  203. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis/XmlHelper.html +255 -0
  204. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Erubis.html +362 -0
  205. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/classes/Kernel.html +155 -0
  206. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/created.rid +1 -0
  207. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/README_txt.html +247 -0
  208. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/context_rb.html +107 -0
  209. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/converter_rb.html +114 -0
  210. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/ec_rb.html +115 -0
  211. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/ecpp_rb.html +115 -0
  212. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/ejava_rb.html +115 -0
  213. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/ejavascript_rb.html +115 -0
  214. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/enhanced_rb.html +115 -0
  215. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/eperl_rb.html +115 -0
  216. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/ephp_rb.html +115 -0
  217. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/eruby_rb.html +115 -0
  218. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/escheme_rb.html +115 -0
  219. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine/optimized_rb.html +114 -0
  220. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/engine_rb.html +117 -0
  221. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/enhancer_rb.html +107 -0
  222. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/error_rb.html +107 -0
  223. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/evaluator_rb.html +115 -0
  224. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/generator_rb.html +114 -0
  225. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/helper_rb.html +107 -0
  226. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/helpers/rails_form_helper_rb.html +107 -0
  227. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/helpers/rails_helper_rb.html +116 -0
  228. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/local-setting_rb.html +107 -0
  229. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/main_rb.html +129 -0
  230. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/preprocessing_rb.html +114 -0
  231. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/tiny_rb.html +107 -0
  232. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis/util_rb.html +107 -0
  233. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/files/erubis_rb.html +118 -0
  234. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/fr_class_index.html +129 -0
  235. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/fr_file_index.html +53 -0
  236. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/fr_method_index.html +265 -0
  237. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/index.html +24 -0
  238. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/doc-api/rdoc-style.css +208 -0
  239. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/examples/basic/Makefile +58 -0
  240. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/examples/basic/example.ec +42 -0
  241. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/examples/basic/example.ecpp +33 -0
  242. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/examples/basic/example.ejava +45 -0
  243. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/examples/basic/example.ejs +16 -0
  244. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/examples/basic/example.eperl +16 -0
  245. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/examples/basic/example.ephp +17 -0
  246. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/examples/basic/example.eruby +15 -0
  247. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/examples/basic/example.escheme +26 -0
  248. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/examples/pi/Makefile +54 -0
  249. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/examples/pi/example.ec +42 -0
  250. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/examples/pi/example.ejava +45 -0
  251. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/examples/pi/example.ejs +16 -0
  252. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/examples/pi/example.eperl +16 -0
  253. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/examples/pi/example.ephp +17 -0
  254. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/examples/pi/example.eruby +15 -0
  255. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/examples/pi/example.escheme +26 -0
  256. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/context.rb +83 -0
  257. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/converter.rb +357 -0
  258. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/ec.rb +117 -0
  259. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/ecpp.rb +113 -0
  260. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/ejava.rb +110 -0
  261. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/ejavascript.rb +119 -0
  262. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/enhanced.rb +126 -0
  263. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/eperl.rb +95 -0
  264. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/ephp.rb +99 -0
  265. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/eruby.rb +125 -0
  266. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/escheme.rb +114 -0
  267. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine/optimized.rb +127 -0
  268. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/engine.rb +120 -0
  269. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/enhancer.rb +723 -0
  270. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/error.rb +23 -0
  271. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/evaluator.rb +88 -0
  272. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/generator.rb +85 -0
  273. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/helper.rb +47 -0
  274. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/helpers/rails_form_helper.rb +197 -0
  275. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/helpers/rails_helper.rb +353 -0
  276. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/local-setting.rb +9 -0
  277. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/main.rb +516 -0
  278. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/preprocessing.rb +58 -0
  279. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/tiny.rb +144 -0
  280. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis/util.rb +22 -0
  281. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/lib/erubis.rb +73 -0
  282. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/setup.rb +1331 -0
  283. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/assert-text-equal.rb +44 -0
  284. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/Example.ejava +55 -0
  285. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/array_example.result +9 -0
  286. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/arraybuffer_example.result +9 -0
  287. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/bipattern-example.rhtml +4 -0
  288. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/bipattern_example.result +6 -0
  289. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/bufvar-example.rb +10 -0
  290. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/bufvar-example.result +17 -0
  291. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/context.rb +6 -0
  292. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/context.yaml +8 -0
  293. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/def_method.rb +14 -0
  294. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/def_method.result +3 -0
  295. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/escape_example.result +9 -0
  296. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example.ec +27 -0
  297. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example.ecpp +30 -0
  298. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example.ejs +20 -0
  299. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example.eperl +18 -0
  300. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example.ephp +18 -0
  301. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example.eruby +6 -0
  302. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example.escheme +28 -0
  303. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example1.eruby +6 -0
  304. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example1.rb +17 -0
  305. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example1.result +16 -0
  306. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example10.rb +4 -0
  307. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example10.result +17 -0
  308. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example10.xhtml +14 -0
  309. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example10_x.result +17 -0
  310. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example11.php +20 -0
  311. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example11.result +23 -0
  312. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example11.rhtml +21 -0
  313. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example11_C.result +10 -0
  314. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example11_N.result +16 -0
  315. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example11_U.result +16 -0
  316. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example11_php.result +15 -0
  317. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example1_x.result +9 -0
  318. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example2.eruby +7 -0
  319. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example2.rb +10 -0
  320. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example2.result +27 -0
  321. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example2_trim.result +10 -0
  322. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example2_x.result +10 -0
  323. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example3.eruby +6 -0
  324. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example3.rb +10 -0
  325. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example31.result +22 -0
  326. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example32.result +4 -0
  327. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example3_e.result +8 -0
  328. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example4.eruby +3 -0
  329. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example4.rb +11 -0
  330. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example4.result +10 -0
  331. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example4_x.result +5 -0
  332. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example5.eruby +6 -0
  333. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example5.rb +16 -0
  334. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example5.result +7 -0
  335. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example6.rb +12 -0
  336. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example6.result +7 -0
  337. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example7.eruby +8 -0
  338. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example71.result +13 -0
  339. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example72.result +13 -0
  340. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example8.eruby +6 -0
  341. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example8_ruby.result +7 -0
  342. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example8_yaml.result +7 -0
  343. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example9.eruby +3 -0
  344. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example9.rb +8 -0
  345. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example9.result +9 -0
  346. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example91.result +5 -0
  347. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example92.result +4 -0
  348. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example_c.result +32 -0
  349. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example_java.result +56 -0
  350. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example_js.result +22 -0
  351. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example_perl.result +20 -0
  352. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example_php.result +19 -0
  353. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example_scheme.result +30 -0
  354. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/example_scheme_display.result +29 -0
  355. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/fasteruby-example.rb +8 -0
  356. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/fasteruby-example.result +18 -0
  357. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/fasteruby.rb +11 -0
  358. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/fasteruby.result +38 -0
  359. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/fasteruby.rhtml +15 -0
  360. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/headerfooter-example.eruby +9 -0
  361. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/headerfooter-example2.rb +8 -0
  362. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/headerfooter-example2.rhtml +10 -0
  363. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/headerfooter_example.result +11 -0
  364. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/headerfooter_example2.result +13 -0
  365. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/interpolation_example.result +9 -0
  366. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/main_program1.rb +8 -0
  367. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/main_program1.result +6 -0
  368. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/main_program2.rb +8 -0
  369. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/main_program2.result +6 -0
  370. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/nocode-example.eruby +14 -0
  371. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/nocode-php.result +20 -0
  372. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/nocode_example.result +15 -0
  373. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/normal-eruby-test.eruby +9 -0
  374. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/normal_eruby_test.result +11 -0
  375. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/notext-example.eruby +14 -0
  376. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/notext-example.php +19 -0
  377. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/notext-php.result +20 -0
  378. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/notext_example.result +16 -0
  379. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/percentline-example.rhtml +6 -0
  380. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/percentline_example.result +9 -0
  381. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/prefixedline-example.rb +9 -0
  382. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/prefixedline-example.rhtml +6 -0
  383. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/prefixedline_example.result +9 -0
  384. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/printenable_example.result +4 -0
  385. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/printenabled-example.eruby +3 -0
  386. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/printenabled-example.rb +8 -0
  387. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/printstatement_example.result +8 -0
  388. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/simplify_example.result +9 -0
  389. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/stderr.log +3 -0
  390. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/stdout_exmple.result +9 -0
  391. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/stringbuffer_example.result +9 -0
  392. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/tail_260.result +4 -0
  393. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/tailnewline.rhtml +3 -0
  394. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/template1.rhtml +4 -0
  395. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/data/users-guide/template2.rhtml +4 -0
  396. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/test-engines.rb +425 -0
  397. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/test-enhancers.rb +646 -0
  398. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/test-erubis.rb +887 -0
  399. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/test-index-cgi.rb +191 -0
  400. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/test-main.rb +752 -0
  401. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/test-users-guide.rb +73 -0
  402. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/test.rb +45 -0
  403. data/build/bundler/ruby/1.9.1/gems/erubis-2.7.0/test/testutil.rb +111 -0
  404. data/build/bundler/ruby/1.9.1/gems/gli-1.4.0/README.rdoc +55 -0
  405. data/build/bundler/ruby/1.9.1/gems/gli-1.4.0/bin/gli +72 -0
  406. data/build/bundler/ruby/1.9.1/gems/gli-1.4.0/gli.rdoc +51 -0
  407. data/build/bundler/ruby/1.9.1/gems/gli-1.4.0/lib/gli/command.rb +124 -0
  408. data/build/bundler/ruby/1.9.1/gems/gli-1.4.0/lib/gli/command_line_token.rb +58 -0
  409. data/build/bundler/ruby/1.9.1/gems/gli-1.4.0/lib/gli/copy_options_to_aliases.rb +33 -0
  410. data/build/bundler/ruby/1.9.1/gems/gli-1.4.0/lib/gli/exceptions.rb +45 -0
  411. data/build/bundler/ruby/1.9.1/gems/gli-1.4.0/lib/gli/flag.rb +67 -0
  412. data/build/bundler/ruby/1.9.1/gems/gli-1.4.0/lib/gli/options.rb +19 -0
  413. data/build/bundler/ruby/1.9.1/gems/gli-1.4.0/lib/gli/switch.rb +63 -0
  414. data/build/bundler/ruby/1.9.1/gems/gli-1.4.0/lib/gli/terminal.rb +79 -0
  415. data/build/bundler/ruby/1.9.1/gems/gli-1.4.0/lib/gli.rb +568 -0
  416. data/build/bundler/ruby/1.9.1/gems/gli-1.4.0/lib/gli_version.rb +3 -0
  417. data/build/bundler/ruby/1.9.1/gems/gli-1.4.0/lib/support/help.rb +181 -0
  418. data/build/bundler/ruby/1.9.1/gems/gli-1.4.0/lib/support/initconfig.rb +34 -0
  419. data/build/bundler/ruby/1.9.1/gems/gli-1.4.0/lib/support/rdoc.rb +119 -0
  420. data/build/bundler/ruby/1.9.1/gems/gli-1.4.0/lib/support/scaffold.rb +284 -0
  421. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/CHANGELOG.ja.rdoc +544 -0
  422. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/CHANGELOG.rdoc +532 -0
  423. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/Manifest.txt +283 -0
  424. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/README.ja.rdoc +106 -0
  425. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/README.rdoc +174 -0
  426. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/Rakefile +167 -0
  427. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/bin/nokogiri +53 -0
  428. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/depend +358 -0
  429. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/extconf.rb +124 -0
  430. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/html_document.c +154 -0
  431. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/html_document.h +10 -0
  432. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/html_element_description.c +276 -0
  433. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/html_element_description.h +10 -0
  434. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/html_entity_lookup.c +32 -0
  435. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/html_entity_lookup.h +8 -0
  436. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/html_sax_parser_context.c +94 -0
  437. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/html_sax_parser_context.h +11 -0
  438. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/nokogiri.c +115 -0
  439. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/nokogiri.h +160 -0
  440. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_attr.c +94 -0
  441. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_attr.h +9 -0
  442. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_attribute_decl.c +70 -0
  443. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_attribute_decl.h +9 -0
  444. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_cdata.c +56 -0
  445. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_cdata.h +9 -0
  446. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_comment.c +54 -0
  447. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_comment.h +9 -0
  448. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_document.c +478 -0
  449. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_document.h +23 -0
  450. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_document_fragment.c +48 -0
  451. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_document_fragment.h +10 -0
  452. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_dtd.c +202 -0
  453. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_dtd.h +10 -0
  454. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_element_content.c +123 -0
  455. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_element_content.h +10 -0
  456. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_element_decl.c +69 -0
  457. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_element_decl.h +9 -0
  458. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_encoding_handler.c +79 -0
  459. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_encoding_handler.h +8 -0
  460. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_entity_decl.c +110 -0
  461. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_entity_decl.h +10 -0
  462. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_entity_reference.c +52 -0
  463. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_entity_reference.h +9 -0
  464. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_io.c +56 -0
  465. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_io.h +11 -0
  466. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_libxml2_hacks.c +112 -0
  467. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_libxml2_hacks.h +12 -0
  468. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_namespace.c +84 -0
  469. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_namespace.h +13 -0
  470. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_node.c +1385 -0
  471. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_node.h +13 -0
  472. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_node_set.c +418 -0
  473. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_node_set.h +9 -0
  474. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_processing_instruction.c +56 -0
  475. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_processing_instruction.h +9 -0
  476. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_reader.c +684 -0
  477. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_reader.h +10 -0
  478. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_relax_ng.c +161 -0
  479. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_relax_ng.h +9 -0
  480. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_sax_parser.c +293 -0
  481. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_sax_parser.h +39 -0
  482. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_sax_parser_context.c +199 -0
  483. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_sax_parser_context.h +10 -0
  484. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_sax_push_parser.c +115 -0
  485. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_sax_push_parser.h +9 -0
  486. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_schema.c +205 -0
  487. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_schema.h +9 -0
  488. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_syntax_error.c +58 -0
  489. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_syntax_error.h +13 -0
  490. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_text.c +50 -0
  491. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_text.h +9 -0
  492. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_xpath_context.c +309 -0
  493. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xml_xpath_context.h +9 -0
  494. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xslt_stylesheet.c +264 -0
  495. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/ext/nokogiri/xslt_stylesheet.h +9 -0
  496. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/1.8/nokogiri.so +0 -0
  497. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/1.9/nokogiri.so +0 -0
  498. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/css/node.rb +99 -0
  499. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/css/parser.rb +677 -0
  500. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/css/parser.y +237 -0
  501. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/css/parser_extras.rb +91 -0
  502. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/css/syntax_error.rb +7 -0
  503. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/css/tokenizer.rb +152 -0
  504. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/css/tokenizer.rex +55 -0
  505. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/css/xpath_visitor.rb +171 -0
  506. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/css.rb +27 -0
  507. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/decorators/slop.rb +35 -0
  508. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/html/builder.rb +35 -0
  509. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/html/document.rb +213 -0
  510. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/html/document_fragment.rb +41 -0
  511. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/html/element_description.rb +23 -0
  512. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/html/element_description_defaults.rb +671 -0
  513. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/html/entity_lookup.rb +13 -0
  514. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/html/sax/parser.rb +52 -0
  515. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/html/sax/parser_context.rb +16 -0
  516. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/html.rb +36 -0
  517. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/nokogiri.rb +1 -0
  518. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/syntax_error.rb +4 -0
  519. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/version.rb +88 -0
  520. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/attr.rb +14 -0
  521. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/attribute_decl.rb +18 -0
  522. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/builder.rb +425 -0
  523. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/cdata.rb +11 -0
  524. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/character_data.rb +7 -0
  525. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/document.rb +234 -0
  526. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/document_fragment.rb +98 -0
  527. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/dtd.rb +22 -0
  528. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/element_content.rb +36 -0
  529. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/element_decl.rb +13 -0
  530. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/entity_decl.rb +19 -0
  531. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/namespace.rb +13 -0
  532. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/node/save_options.rb +61 -0
  533. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/node.rb +915 -0
  534. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/node_set.rb +357 -0
  535. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/notation.rb +6 -0
  536. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/parse_options.rb +93 -0
  537. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/pp/character_data.rb +18 -0
  538. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/pp/node.rb +56 -0
  539. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/pp.rb +2 -0
  540. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/processing_instruction.rb +8 -0
  541. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/reader.rb +112 -0
  542. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/relax_ng.rb +32 -0
  543. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/sax/document.rb +164 -0
  544. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/sax/parser.rb +115 -0
  545. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/sax/parser_context.rb +16 -0
  546. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/sax/push_parser.rb +60 -0
  547. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/sax.rb +4 -0
  548. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/schema.rb +63 -0
  549. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/syntax_error.rb +47 -0
  550. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/text.rb +9 -0
  551. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/xpath/syntax_error.rb +11 -0
  552. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/xpath.rb +10 -0
  553. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml/xpath_context.rb +16 -0
  554. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xml.rb +67 -0
  555. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xslt/stylesheet.rb +25 -0
  556. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri/xslt.rb +52 -0
  557. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/nokogiri.rb +127 -0
  558. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/lib/xsd/xmlparser/nokogiri.rb +90 -0
  559. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/nokogiri_help_responses.md +40 -0
  560. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/tasks/cross_compile.rb +152 -0
  561. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/tasks/nokogiri.org.rb +18 -0
  562. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/tasks/test.rb +94 -0
  563. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/css/test_nthiness.rb +159 -0
  564. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/css/test_parser.rb +303 -0
  565. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/css/test_tokenizer.rb +198 -0
  566. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/css/test_xpath_visitor.rb +85 -0
  567. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/decorators/test_slop.rb +16 -0
  568. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/2ch.html +108 -0
  569. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/address_book.rlx +12 -0
  570. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/address_book.xml +10 -0
  571. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/bar/bar.xsd +4 -0
  572. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/dont_hurt_em_why.xml +422 -0
  573. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/encoding.html +82 -0
  574. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/encoding.xhtml +84 -0
  575. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/exslt.xml +8 -0
  576. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/exslt.xslt +35 -0
  577. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/foo/foo.xsd +4 -0
  578. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/metacharset.html +10 -0
  579. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/noencoding.html +47 -0
  580. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/po.xml +32 -0
  581. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/po.xsd +66 -0
  582. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/shift_jis.html +10 -0
  583. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/shift_jis.xml +5 -0
  584. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/snuggles.xml +3 -0
  585. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/staff.dtd +10 -0
  586. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/staff.xml +59 -0
  587. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/staff.xslt +32 -0
  588. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/tlm.html +850 -0
  589. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/files/valid_bar.xml +2 -0
  590. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/helper.rb +173 -0
  591. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/html/sax/test_parser.rb +136 -0
  592. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/html/sax/test_parser_context.rb +48 -0
  593. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/html/test_builder.rb +164 -0
  594. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/html/test_document.rb +472 -0
  595. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/html/test_document_encoding.rb +138 -0
  596. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/html/test_document_fragment.rb +255 -0
  597. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/html/test_element_description.rb +100 -0
  598. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/html/test_named_characters.rb +14 -0
  599. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/html/test_node.rb +190 -0
  600. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/html/test_node_encoding.rb +27 -0
  601. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/test_convert_xpath.rb +135 -0
  602. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/test_css_cache.rb +45 -0
  603. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/test_encoding_handler.rb +46 -0
  604. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/test_memory_leak.rb +72 -0
  605. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/test_nokogiri.rb +132 -0
  606. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/test_reader.rb +425 -0
  607. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/test_soap4r_sax.rb +52 -0
  608. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/test_xslt_transforms.rb +193 -0
  609. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/node/test_save_options.rb +28 -0
  610. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/node/test_subclass.rb +44 -0
  611. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/sax/test_parser.rb +338 -0
  612. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/sax/test_parser_context.rb +113 -0
  613. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/sax/test_push_parser.rb +156 -0
  614. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_attr.rb +65 -0
  615. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_attribute_decl.rb +86 -0
  616. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_builder.rb +227 -0
  617. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_cdata.rb +50 -0
  618. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_comment.rb +29 -0
  619. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_document.rb +697 -0
  620. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_document_encoding.rb +26 -0
  621. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_document_fragment.rb +192 -0
  622. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_dtd.rb +107 -0
  623. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_dtd_encoding.rb +33 -0
  624. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_element_content.rb +56 -0
  625. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_element_decl.rb +73 -0
  626. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_entity_decl.rb +122 -0
  627. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_entity_reference.rb +21 -0
  628. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_namespace.rb +70 -0
  629. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_node.rb +917 -0
  630. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_node_attributes.rb +34 -0
  631. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_node_encoding.rb +107 -0
  632. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_node_reparenting.rb +334 -0
  633. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_node_set.rb +742 -0
  634. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_parse_options.rb +52 -0
  635. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_processing_instruction.rb +30 -0
  636. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_reader_encoding.rb +126 -0
  637. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_relax_ng.rb +60 -0
  638. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_schema.rb +94 -0
  639. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_syntax_error.rb +12 -0
  640. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_text.rb +47 -0
  641. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_unparented_node.rb +381 -0
  642. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xml/test_xpath.rb +237 -0
  643. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xslt/test_custom_functions.rb +94 -0
  644. data/build/bundler/ruby/1.9.1/gems/nokogiri-1.5.0-x86-mingw32/test/xslt/test_exception_handling.rb +37 -0
  645. data/build/bundler/ruby/1.9.1/gems/rainbow-1.1.3/Changelog +3 -0
  646. data/build/bundler/ruby/1.9.1/gems/rainbow-1.1.3/LICENSE +20 -0
  647. data/build/bundler/ruby/1.9.1/gems/rainbow-1.1.3/README.markdown +75 -0
  648. data/build/bundler/ruby/1.9.1/gems/rainbow-1.1.3/lib/ansi_color.rb +71 -0
  649. data/build/bundler/ruby/1.9.1/gems/rainbow-1.1.3/lib/ansi_rgb.rb +43 -0
  650. data/build/bundler/ruby/1.9.1/gems/rainbow-1.1.3/lib/rainbow.rb +108 -0
  651. data/build/bundler/ruby/1.9.1/gems/rainbow-1.1.3/test/rainbow_test.rb +271 -0
  652. data/build/bundler/ruby/1.9.1/specifications/erubis-2.7.0.gemspec +42 -0
  653. data/build/bundler/ruby/1.9.1/specifications/gli-1.4.0.gemspec +52 -0
  654. data/build/bundler/ruby/1.9.1/specifications/nokogiri-1.5.0-x86-mingw32.gemspec +68 -0
  655. data/build/bundler/ruby/1.9.1/specifications/rainbow-1.1.3.gemspec +25 -0
  656. data/lib/iisconfig/app_pool.rb +81 -0
  657. data/lib/iisconfig/application.rb +47 -0
  658. data/lib/iisconfig/configuration.rb +40 -0
  659. data/lib/iisconfig/iis_object.rb +35 -0
  660. data/lib/iisconfig/iisconfig.rb +3 -0
  661. data/lib/iisconfig/process_model.rb +18 -0
  662. data/lib/iisconfig/runner.rb +23 -0
  663. data/lib/iisconfig/site.rb +74 -0
  664. data/lib/iisconfig/version.rb +5 -0
  665. data/lib/iisconfig/virtual_directory.rb +30 -0
  666. data/lib/iisconfig.rb +23 -0
  667. data/test/example.rb +35 -0
  668. metadata +738 -0
@@ -0,0 +1,568 @@
1
+ require 'gli/command.rb'
2
+ require 'gli/command_line_token.rb'
3
+ require 'gli/copy_options_to_aliases.rb'
4
+ require 'gli/exceptions.rb'
5
+ require 'gli/flag.rb'
6
+ require 'gli/options.rb'
7
+ require 'gli/switch.rb'
8
+ require 'gli_version.rb'
9
+ require 'support/help.rb'
10
+ require 'support/rdoc.rb'
11
+ require 'support/initconfig.rb'
12
+ require 'etc'
13
+
14
+ # A means to define and parse a command line interface that works as
15
+ # Git's does, in that you specify global options, a command name, command
16
+ # specific options, and then command arguments.
17
+ module GLI
18
+ extend self
19
+ include CopyOptionsToAliases
20
+
21
+ @@program_name = $0.split(/\//)[-1]
22
+ @@post_block = nil
23
+ @@pre_block = nil
24
+ @@error_block = nil
25
+ @@config_file = nil
26
+ @@use_openstruct = false
27
+ @@version = nil
28
+ @@stderr = $stderr
29
+ @@program_desc = nil
30
+ @@skips_pre = false
31
+ @@skips_post = false
32
+
33
+ # Override the device of stderr; exposed only for testing
34
+ def error_device=(e) #:nodoc:
35
+ @@stderr = e
36
+ end
37
+
38
+ # Reset the GLI module internal data structures; mostly useful for testing
39
+ def reset # :nodoc:
40
+ switches.clear
41
+ flags.clear
42
+ commands.clear
43
+ @@version = nil
44
+ @@config_file = nil
45
+ @@use_openstruct = false
46
+ @@prog_desc = nil
47
+ clear_nexts
48
+
49
+ desc 'Show this message'
50
+ switch :help
51
+ end
52
+
53
+ # Describe the next switch, flag, or command. This should be a
54
+ # short, one-line description
55
+ #
56
+ # +description+:: A String of the short descripiton of the switch, flag, or command following
57
+ def desc(description); @@next_desc = description; end
58
+
59
+ # Describe the overall application/programm. This should be a one-sentence summary
60
+ # of what your program does that will appear in the help output.
61
+ #
62
+ # +description+:: A String of the short description of your program's purpose
63
+ def program_desc(description=nil)
64
+ if description
65
+ @@program_desc = description
66
+ end
67
+ @@program_desc
68
+ end
69
+
70
+ # Use this if the following command should not have the pre block executed.
71
+ # By default, the pre block is executed before each command and can result in
72
+ # aborting the call. Using this will avoid that behavior for the following command
73
+ def skips_pre
74
+ @@skips_pre = true
75
+ end
76
+
77
+ # Use this if the following command should not have the post block executed.
78
+ # By default, the post block is executed after each command.
79
+ # Using this will avoid that behavior for the following command
80
+ def skips_post
81
+ @@skips_post = true
82
+ end
83
+
84
+ # Provide a longer, more detailed description. This
85
+ # will be reformatted and wrapped to fit in the terminal's columns
86
+ #
87
+ # +long_desc+:: A String that is s longer description of the switch, flag, or command following.
88
+ def long_desc(long_desc); @@next_long_desc = long_desc; end
89
+
90
+ # Describe the argument name of the next flag. It's important to keep
91
+ # this VERY short and, ideally, without any spaces (see Example).
92
+ #
93
+ # +name+:: A String that *briefly* describes the argument given to the following command or flag.
94
+ #
95
+ # Example:
96
+ # desc 'Set the filename'
97
+ # arg_name 'file_name'
98
+ # flag [:f,:filename]
99
+ #
100
+ # Produces:
101
+ # -f, --filename=file_name Set the filename
102
+ def arg_name(name); @@next_arg_name = name; end
103
+
104
+ # set the default value of the next flag
105
+ #
106
+ # +val+:: A String reprensenting the default value to be used for the following flag if the user doesn't specify one
107
+ # and, when using a config file, the config also doesn't specify one
108
+ def default_value(val); @@next_default_value = val; end
109
+
110
+ # Create a flag, which is a switch that takes an argument
111
+ #
112
+ # +names+:: a String or Symbol, or an Array of String or Symbol that represent all the different names
113
+ # and aliases for this flag.
114
+ #
115
+ # Example:
116
+ #
117
+ # desc 'Set the filename'
118
+ # flag [:f,:filename,'file-name']
119
+ #
120
+ # Produces:
121
+ #
122
+ # -f, --filename, --file-name=arg Set the filename
123
+ def flag(*names)
124
+ names = [names].flatten
125
+ verify_unused(names,flags,switches,"in global options")
126
+ flag = Flag.new(names,@@next_desc,@@next_arg_name,@@next_default_value,@@next_long_desc)
127
+ flags[flag.name] = flag
128
+ clear_nexts
129
+ end
130
+
131
+ # Create a switch, which is a command line flag that takes no arguments (thus, it _switches_ something on)
132
+ #
133
+ # +names+:: a String or Symbol, or an Array of String or Symbol that represent all the different names
134
+ # and aliases for this switch.
135
+ def switch(*names)
136
+ names = [names].flatten
137
+ verify_unused(names,flags,switches,"in global options")
138
+ switch = Switch.new(names,@@next_desc,@@next_long_desc)
139
+ switches[switch.name] = switch
140
+ clear_nexts
141
+ end
142
+
143
+ # Sets that this app uses a config file as well as the name of the config file.
144
+ #
145
+ # +filename+:: A String representing the path to the file to use for the config file. If it's an absolute
146
+ # path, this is treated as the path to the file. If it's *not*, it's treated as relative to the user's home
147
+ # directory as produced by <code>File.expand_path('~')</code>.
148
+ def config_file(filename)
149
+ if filename =~ /^\//
150
+ @@config_file = filename
151
+ else
152
+ @@config_file = File.join(File.expand_path('~'),filename)
153
+ end
154
+ commands[:initconfig] = InitConfig.new(@@config_file)
155
+ @@config_file
156
+ end
157
+
158
+ # Define a new command. This takes a block that will be given an instance of the Command that was created.
159
+ # You then may call methods on this object to define aspects of that Command.
160
+ #
161
+ # +names+:: a String or Symbol, or an Array of String or Symbol that represent all the different names and aliases for this command.
162
+ #
163
+ def command(*names)
164
+ command = Command.new([names].flatten,@@next_desc,@@next_arg_name,@@next_long_desc,@@skips_pre,@@skips_post)
165
+ commands[command.name] = command
166
+ yield command
167
+ clear_nexts
168
+ end
169
+
170
+ # Define a block to run after command line arguments are parsed
171
+ # but before any command is run. If this block raises an exception
172
+ # the command specified will not be executed.
173
+ # The block will receive the global-options,command,options, and arguments
174
+ # If this block evaluates to true, the program will proceed; otherwise
175
+ # the program will end immediately
176
+ def pre(&a_proc)
177
+ @@pre_block = a_proc
178
+ end
179
+
180
+ # Define a block to run after the command was executed, <b>only
181
+ # if there was not an error</b>.
182
+ # The block will receive the global-options,command,options, and arguments
183
+ def post(&a_proc)
184
+ @@post_block = a_proc
185
+ end
186
+
187
+ # Define a block to run if an error occurs.
188
+ # The block will receive any Exception that was caught.
189
+ # It should evaluate to false to avoid the built-in error handling (which basically just
190
+ # prints out a message). GLI uses a variety of exceptions that you can use to find out what
191
+ # errors might've occurred during command-line parsing:
192
+ # * GLI::CustomExit
193
+ # * GLI::UnknownCommandArgument
194
+ # * GLI::UnknownGlobalArgument
195
+ # * GLI::UnknownCommand
196
+ # * GLI::BadCommandLine
197
+ def on_error(&a_proc)
198
+ @@error_block = a_proc
199
+ end
200
+
201
+ # Indicate the version of your application
202
+ #
203
+ # +version+:: String containing the version of your application.
204
+ def version(version)
205
+ @@version = version
206
+ end
207
+
208
+ # Call this with +true+ will cause the +global_options+ and
209
+ # +options+ passed to your code to be wrapped in
210
+ # Options, which is a subclass of +OpenStruct+ that adds
211
+ # <tt>[]</tt> and <tt>[]=</tt> methods.
212
+ #
213
+ # +use_openstruct+:: a Boolean indicating if we should use OpenStruct instead of Hashes
214
+ def use_openstruct(use_openstruct)
215
+ @@use_openstruct = use_openstruct
216
+ end
217
+
218
+ # Runs whatever command is needed based on the arguments.
219
+ #
220
+ # +args+:: the command line ARGV array
221
+ #
222
+ # Returns a number that would be a reasonable exit code
223
+ def run(args) #:nodoc:
224
+ rdoc = RDocCommand.new
225
+ commands[:rdoc] = rdoc if !commands[:rdoc]
226
+ commands[:help] = DefaultHelpCommand.new(@@version,rdoc) if !commands[:help]
227
+ exit_code = 0
228
+ begin
229
+ config = parse_config
230
+ override_defaults_based_on_config(config)
231
+ global_options,command,options,arguments = parse_options(args)
232
+ copy_options_to_aliased_versions(global_options,command,options)
233
+ global_options = convert_to_openstruct?(global_options)
234
+ options = convert_to_openstruct?(options)
235
+ if proceed?(global_options,command,options,arguments)
236
+ command = commands[:help] if !command
237
+ command.execute(global_options,options,arguments)
238
+ if !command.skips_post && @@post_block
239
+ @@post_block.call(global_options,command,options,arguments)
240
+ end
241
+ end
242
+ rescue Exception => ex
243
+
244
+ @@stderr.puts error_message(ex) if regular_error_handling?(ex)
245
+
246
+ exit_code = if ex.respond_to? :exit_code
247
+ ex.exit_code
248
+ else
249
+ -2
250
+ end
251
+ raise ex if ENV['GLI_DEBUG'] == 'true'
252
+ end
253
+ exit_code
254
+ end
255
+
256
+ # True if we should proceed with executing the command; this calls
257
+ # the pre block if it's defined
258
+ def proceed?(global_options,command,options,arguments) #:nodoc:
259
+ if command && command.skips_pre
260
+ true
261
+ elsif @@pre_block
262
+ @@pre_block.call(global_options,command,options,arguments)
263
+ else
264
+ true
265
+ end
266
+ end
267
+
268
+ # Returns true if we should proceed with GLI's basic error handling.
269
+ # This calls the error block if the user provided one
270
+ def regular_error_handling?(ex) #:nodoc:
271
+ if @@error_block
272
+ @@error_block.call(ex)
273
+ else
274
+ true
275
+ end
276
+ end
277
+
278
+ # Returns a String of the error message to show the user
279
+ # +ex+:: The exception we caught that launched the error handling routines
280
+ def error_message(ex) #:nodoc:
281
+ msg = "error: #{ex.message}"
282
+ case ex
283
+ when UnknownCommand
284
+ msg += ". Use '#{program_name} help' for a list of commands"
285
+ when UnknownCommandArgument
286
+ msg += ". Use '#{program_name} help #{ex.command.name}' for a list of command options"
287
+ when UnknownGlobalArgument
288
+ msg += ". Use '#{program_name} help' for a list of global options"
289
+ end
290
+ msg
291
+ end
292
+
293
+ # Simpler means of exiting with a custom exit code. This will
294
+ # raise a CustomExit with the given message and exit code, which will ultimatley
295
+ # cause your application to exit with the given exit_code as its exit status
296
+ def exit_now!(message,exit_code)
297
+ raise CustomExit.new(message,exit_code)
298
+ end
299
+
300
+ # Set or get the name of the program, if you don't want the default (which is
301
+ # the name of the command line program). This
302
+ # is only used currently in the help and rdoc commands.
303
+ #
304
+ # +override+:: A String that represents the name of the program to use, other than the default.
305
+ #
306
+ # Returns the current program name, as a String
307
+ def program_name(override=nil)
308
+ if override
309
+ @@program_name = override
310
+ end
311
+ @@program_name
312
+ end
313
+
314
+ alias :d :desc
315
+ alias :f :flag
316
+ alias :s :switch
317
+ alias :c :command
318
+
319
+ # Possibly returns a copy of the passed-in Hash as an instance of GLI::Option.
320
+ # By default, it will *not*. However by putting <tt>use_openstruct true</tt>
321
+ # in your CLI definition, it will
322
+ def convert_to_openstruct?(options) # :nodoc:
323
+ @@use_openstruct ? Options.new(options) : options
324
+ end
325
+
326
+ # Copies all options in both global_options and options to keys for the aliases of those flags.
327
+ # For example, if a flag works with either -f or --flag, this will copy the value from [:f] to [:flag]
328
+ # to allow the user to access the options by any alias
329
+ def copy_options_to_aliased_versions(global_options,command,options) # :nodoc:
330
+ copy_options_to_aliases(global_options)
331
+ command.copy_options_to_aliases(options)
332
+ end
333
+
334
+ def parse_config # :nodoc:
335
+ return nil if @@config_file.nil?
336
+ require 'yaml'
337
+ if File.exist?(@@config_file)
338
+ File.open(@@config_file) { |file| YAML::load(file) }
339
+ else
340
+ {}
341
+ end
342
+ end
343
+
344
+ # Returns an array of four values:
345
+ # * global options (as a Hash)
346
+ # * Command
347
+ # * command options (as a Hash)
348
+ # * arguments (as an Array)
349
+ def parse_options(args) # :nodoc:
350
+ global_options,command,options,arguments = parse_options_helper(args.clone,Hash.new,nil,Hash.new,Array.new)
351
+ flags.each { |name,flag| global_options[name] = flag.default_value if !global_options[name] }
352
+ command.flags.each { |name,flag| options[name] = flag.default_value if !options[name] }
353
+ return [global_options,command,options,arguments]
354
+ end
355
+
356
+ # Finds the index of the first non-flag
357
+ # argument or -1 if there wasn't one.
358
+ def find_non_flag_index(args) # :nodoc:
359
+ args.each_with_index do |item,index|
360
+ return index if item =~ /^[^\-]/
361
+ return index-1 if item =~ /^\-\-$/
362
+ end
363
+ -1
364
+ end
365
+
366
+ def flag_switch_index(args)
367
+ args.each_with_index do |item,index|
368
+ return index if item =~ /^[\-]/
369
+ end
370
+ -1
371
+ end
372
+
373
+ def clear_nexts # :nodoc:
374
+ @@next_desc = nil
375
+ @@next_arg_name = nil
376
+ @@next_default_value = nil
377
+ @@next_long_desc = nil
378
+ @@skips_pre = false
379
+ @@skips_post = false
380
+ end
381
+
382
+ clear_nexts
383
+
384
+ def flags # :nodoc:
385
+ @@flags ||= {}
386
+ end
387
+ def switches # :nodoc:
388
+ @@switches ||= {}
389
+ end
390
+ def commands # :nodoc:
391
+ @@commands ||= {}
392
+ end
393
+
394
+ # Recursive helper for parsing command line options
395
+ # <code>args</code>:: the arguments that have yet to be processed
396
+ # <code>global_options</code>:: the global options hash
397
+ # <code>command</code>:: the Command that has been identified (or nil if not identified yet)
398
+ # <code>command_options</code>:: options for Command
399
+ # <code>arguments</code>:: the arguments for Command
400
+ #
401
+ # This works by finding the first non-switch/flag argument, and taking that sublist and trying to pick out
402
+ # flags and switches. After this is done, one of the following is true:
403
+ # * the sublist is empty - in this case, go again, as there might be more flags to parse
404
+ # * the sublist has a flag left in it - unknown flag; we bail
405
+ # * the sublist has a non-flag left in it - this is the command (or the start of the arguments list)
406
+ #
407
+ # This sort of does the same thing in two phases; in the first phase, the command hasn't been identified, so
408
+ # we are looking for global switches and flags, ending when we get the command.
409
+ #
410
+ # Once the command has been found, we start looking for command-specific flags and switches.
411
+ # When those have been found, we know the rest of the argument list is arguments for the command
412
+ def parse_options_helper(args,global_options,command,command_options,arguments) # :nodoc:
413
+ non_flag_i = find_non_flag_index(args)
414
+ all_flags = false
415
+ if non_flag_i == 0
416
+ # no flags
417
+ if !command
418
+ command_name = args.shift
419
+ command = find_command(command_name)
420
+ raise UnknownCommand.new("Unknown command '#{command_name}'") if !command
421
+ return parse_options_helper(args,
422
+ global_options,
423
+ command,
424
+ Hash.new,
425
+ arguments)
426
+ elsif((index = flag_switch_index(args)) >= 0)
427
+ try_me = args[0..index-1]
428
+ rest = args[index..args.length]
429
+ new_args = rest + try_me
430
+ return parse_options_helper(new_args,
431
+ global_options,
432
+ command,
433
+ Hash.new,
434
+ arguments)
435
+ else
436
+ return global_options,command,command_options,arguments + args
437
+ end
438
+ elsif non_flag_i == -1
439
+ all_flags = true
440
+ end
441
+
442
+ try_me = args[0..non_flag_i]
443
+ rest = args[(non_flag_i+1)..args.length]
444
+ if all_flags
445
+ try_me = args
446
+ rest = []
447
+ end
448
+
449
+ # Suck up whatever options we can
450
+ switch_hash = switches
451
+ flag_hash = flags
452
+ options = global_options
453
+ if command
454
+ switch_hash = command.switches
455
+ flag_hash = command.flags
456
+ options = command_options
457
+ end
458
+
459
+ switch_hash.each do |name,switch|
460
+ value = switch.get_value!(try_me)
461
+ options[name] = value if !options[name]
462
+ end
463
+
464
+ flag_hash.each do |name,flag|
465
+ value = flag.get_value!(try_me)
466
+ # So, there's a case where the first time we request the value for a flag,
467
+ # we get the default and not the user-provided value. The next time we request
468
+ # it, we want to override it with the real value.
469
+ # HOWEVER, sometimes this happens in reverse, so we want to err on taking the
470
+ # user-provided, non-default value where possible.
471
+ if value
472
+ if options[name]
473
+ options[name] = value if options[name] == flag.default_value
474
+ else
475
+ options[name] = value
476
+ end
477
+ end
478
+ end
479
+
480
+ if try_me.empty?
481
+ return [global_options,command,command_options,arguments] if rest.empty?
482
+ # If we have no more options we've parsed them all
483
+ # and rest may have more
484
+ return parse_options_helper(rest,global_options,command,command_options,arguments)
485
+ else
486
+ if command
487
+ check = rest
488
+ check = rest + try_me if all_flags
489
+ check.each() do |arg|
490
+ if arg =~ /^\-\-$/
491
+ try_me.delete arg
492
+ break
493
+ end
494
+ raise UnknownCommandArgument.new("Unknown option #{arg}",command) if arg =~ /^\-/
495
+ end
496
+ return [global_options,command,command_options,try_me + rest]
497
+ else
498
+ # Now we have our command name
499
+ command_name = try_me.shift
500
+ raise UnknownGlobalArgument.new("Unknown option #{command_name}") if command_name =~ /^\-/
501
+
502
+ command = find_command(command_name)
503
+ raise UnknownCommand.new("Unknown command '#{command_name}'") if !command
504
+
505
+ return parse_options_helper(rest,
506
+ global_options,
507
+ command,
508
+ Hash.new,
509
+ arguments)
510
+ end
511
+ end
512
+ end
513
+
514
+ def find_command(name) # :nodoc:
515
+ sym = name.to_sym
516
+ return commands[name.to_sym] if commands[sym]
517
+ commands.each do |command_name,command|
518
+ return command if (command.aliases && command.aliases.include?(sym))
519
+ end
520
+ nil
521
+ end
522
+
523
+ # Checks that the names passed in have not been used in another flag or option
524
+ def verify_unused(names,flags,switches,context) # :nodoc:
525
+ names.each do |name|
526
+ verify_unused_in_option(name,flags,"flag",context)
527
+ verify_unused_in_option(name,switches,"switch",context)
528
+ end
529
+ end
530
+
531
+ private
532
+
533
+ def verify_unused_in_option(name,option_like,type,context) # :nodoc:
534
+ return if name.to_s == 'help'
535
+ raise ArgumentError.new("#{name} has already been specified as a #{type} #{context}") if option_like[name]
536
+ option_like.each do |one_option_name,one_option|
537
+ if one_option.aliases
538
+ raise ArgumentError.new("#{name} has already been specified as an alias of #{type} #{one_option_name} #{context}") if one_option.aliases.include? name
539
+ end
540
+ end
541
+ end
542
+
543
+ # Sets the default values for flags based on the configuration
544
+ def override_defaults_based_on_config(config)
545
+ config ||= {}
546
+ config['commands'] ||= {}
547
+
548
+ override_default(flags,config)
549
+ override_default(switches,config)
550
+
551
+ commands.each do |command_name,command|
552
+ command_config = config['commands'][command_name] || {}
553
+
554
+ override_default(command.flags,command_config)
555
+ override_default(command.switches,command_config)
556
+ end
557
+ end
558
+
559
+ def override_default(tokens,config)
560
+ tokens.each do |name,token|
561
+ token.default_value=config[name] if config[name]
562
+ end
563
+ end
564
+
565
+ desc 'Show this message'
566
+ switch :help
567
+
568
+ end
@@ -0,0 +1,3 @@
1
+ module GLI
2
+ VERSION = '1.4.0'
3
+ end