geminfo 0.1.0

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 (1467) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +14 -0
  5. data/CODE_OF_CONDUCT.md +13 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +480 -0
  9. data/Rakefile +8 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +7 -0
  12. data/geminfo.gemspec +32 -0
  13. data/lib/geminfo/version.rb +3 -0
  14. data/lib/geminfo.rb +374 -0
  15. data/path/bin/_guard-core +23 -0
  16. data/path/bin/_guard-core.bat +6 -0
  17. data/path/bin/coderay +23 -0
  18. data/path/bin/coderay.bat +6 -0
  19. data/path/bin/guard +23 -0
  20. data/path/bin/guard.bat +6 -0
  21. data/path/bin/htmldiff +25 -0
  22. data/path/bin/htmldiff.bat +6 -0
  23. data/path/bin/ldiff +25 -0
  24. data/path/bin/ldiff.bat +6 -0
  25. data/path/bin/listen +23 -0
  26. data/path/bin/listen.bat +6 -0
  27. data/path/bin/pry +23 -0
  28. data/path/bin/pry.bat +6 -0
  29. data/path/bin/rspec +23 -0
  30. data/path/bin/rspec.bat +6 -0
  31. data/path/bin/thor +23 -0
  32. data/path/bin/thor.bat +6 -0
  33. data/path/cache/coderay-1.1.0.gem +0 -0
  34. data/path/cache/diff-lcs-1.2.5.gem +0 -0
  35. data/path/cache/ffi-1.9.10-x86-mingw32.gem +0 -0
  36. data/path/cache/formatador-0.2.5.gem +0 -0
  37. data/path/cache/guard-2.13.0.gem +0 -0
  38. data/path/cache/guard-compat-1.2.1.gem +0 -0
  39. data/path/cache/guard-rspec-4.6.4.gem +0 -0
  40. data/path/cache/listen-3.0.3.gem +0 -0
  41. data/path/cache/lumberjack-1.0.9.gem +0 -0
  42. data/path/cache/method_source-0.8.2.gem +0 -0
  43. data/path/cache/nenv-0.2.0.gem +0 -0
  44. data/path/cache/notiffany-0.0.7.gem +0 -0
  45. data/path/cache/pry-0.10.1-i386-mingw32.gem +0 -0
  46. data/path/cache/pry-0.10.1-x86-mingw32.gem +0 -0
  47. data/path/cache/rb-fsevent-0.9.5.gem +0 -0
  48. data/path/cache/rb-inotify-0.9.5.gem +0 -0
  49. data/path/cache/rspec-3.3.0.gem +0 -0
  50. data/path/cache/rspec-core-3.3.2.gem +0 -0
  51. data/path/cache/rspec-expectations-3.3.1.gem +0 -0
  52. data/path/cache/rspec-mocks-3.3.2.gem +0 -0
  53. data/path/cache/rspec-support-3.3.0.gem +0 -0
  54. data/path/cache/shellany-0.0.1.gem +0 -0
  55. data/path/cache/slop-3.6.0.gem +0 -0
  56. data/path/cache/thor-0.19.1.gem +0 -0
  57. data/path/cache/win32console-1.3.2-x86-mingw32.gem +0 -0
  58. data/path/gems/coderay-1.1.0/README_INDEX.rdoc +123 -0
  59. data/path/gems/coderay-1.1.0/Rakefile +37 -0
  60. data/path/gems/coderay-1.1.0/bin/coderay +215 -0
  61. data/path/gems/coderay-1.1.0/lib/coderay/duo.rb +81 -0
  62. data/path/gems/coderay-1.1.0/lib/coderay/encoder.rb +201 -0
  63. data/path/gems/coderay-1.1.0/lib/coderay/encoders/_map.rb +17 -0
  64. data/path/gems/coderay-1.1.0/lib/coderay/encoders/comment_filter.rb +25 -0
  65. data/path/gems/coderay-1.1.0/lib/coderay/encoders/count.rb +39 -0
  66. data/path/gems/coderay-1.1.0/lib/coderay/encoders/debug.rb +49 -0
  67. data/path/gems/coderay-1.1.0/lib/coderay/encoders/debug_lint.rb +63 -0
  68. data/path/gems/coderay-1.1.0/lib/coderay/encoders/div.rb +23 -0
  69. data/path/gems/coderay-1.1.0/lib/coderay/encoders/filter.rb +58 -0
  70. data/path/gems/coderay-1.1.0/lib/coderay/encoders/html/css.rb +65 -0
  71. data/path/gems/coderay-1.1.0/lib/coderay/encoders/html/numbering.rb +108 -0
  72. data/path/gems/coderay-1.1.0/lib/coderay/encoders/html/output.rb +166 -0
  73. data/path/gems/coderay-1.1.0/lib/coderay/encoders/html.rb +332 -0
  74. data/path/gems/coderay-1.1.0/lib/coderay/encoders/json.rb +83 -0
  75. data/path/gems/coderay-1.1.0/lib/coderay/encoders/lines_of_code.rb +45 -0
  76. data/path/gems/coderay-1.1.0/lib/coderay/encoders/lint.rb +59 -0
  77. data/path/gems/coderay-1.1.0/lib/coderay/encoders/null.rb +18 -0
  78. data/path/gems/coderay-1.1.0/lib/coderay/encoders/page.rb +24 -0
  79. data/path/gems/coderay-1.1.0/lib/coderay/encoders/span.rb +23 -0
  80. data/path/gems/coderay-1.1.0/lib/coderay/encoders/statistic.rb +95 -0
  81. data/path/gems/coderay-1.1.0/lib/coderay/encoders/terminal.rb +195 -0
  82. data/path/gems/coderay-1.1.0/lib/coderay/encoders/text.rb +46 -0
  83. data/path/gems/coderay-1.1.0/lib/coderay/encoders/token_kind_filter.rb +111 -0
  84. data/path/gems/coderay-1.1.0/lib/coderay/encoders/xml.rb +72 -0
  85. data/path/gems/coderay-1.1.0/lib/coderay/encoders/yaml.rb +50 -0
  86. data/path/gems/coderay-1.1.0/lib/coderay/for_redcloth.rb +95 -0
  87. data/path/gems/coderay-1.1.0/lib/coderay/helpers/file_type.rb +151 -0
  88. data/path/gems/coderay-1.1.0/lib/coderay/helpers/plugin.rb +274 -0
  89. data/path/gems/coderay-1.1.0/lib/coderay/helpers/word_list.rb +72 -0
  90. data/path/gems/coderay-1.1.0/lib/coderay/scanner.rb +355 -0
  91. data/path/gems/coderay-1.1.0/lib/coderay/scanners/_map.rb +24 -0
  92. data/path/gems/coderay-1.1.0/lib/coderay/scanners/c.rb +189 -0
  93. data/path/gems/coderay-1.1.0/lib/coderay/scanners/clojure.rb +217 -0
  94. data/path/gems/coderay-1.1.0/lib/coderay/scanners/cpp.rb +215 -0
  95. data/path/gems/coderay-1.1.0/lib/coderay/scanners/css.rb +196 -0
  96. data/path/gems/coderay-1.1.0/lib/coderay/scanners/debug.rb +75 -0
  97. data/path/gems/coderay-1.1.0/lib/coderay/scanners/delphi.rb +144 -0
  98. data/path/gems/coderay-1.1.0/lib/coderay/scanners/diff.rb +221 -0
  99. data/path/gems/coderay-1.1.0/lib/coderay/scanners/erb.rb +81 -0
  100. data/path/gems/coderay-1.1.0/lib/coderay/scanners/go.rb +208 -0
  101. data/path/gems/coderay-1.1.0/lib/coderay/scanners/groovy.rb +268 -0
  102. data/path/gems/coderay-1.1.0/lib/coderay/scanners/haml.rb +168 -0
  103. data/path/gems/coderay-1.1.0/lib/coderay/scanners/html.rb +275 -0
  104. data/path/gems/coderay-1.1.0/lib/coderay/scanners/java/builtin_types.rb +421 -0
  105. data/path/gems/coderay-1.1.0/lib/coderay/scanners/java.rb +174 -0
  106. data/path/gems/coderay-1.1.0/lib/coderay/scanners/java_script.rb +237 -0
  107. data/path/gems/coderay-1.1.0/lib/coderay/scanners/json.rb +98 -0
  108. data/path/gems/coderay-1.1.0/lib/coderay/scanners/lua.rb +280 -0
  109. data/path/gems/coderay-1.1.0/lib/coderay/scanners/php.rb +527 -0
  110. data/path/gems/coderay-1.1.0/lib/coderay/scanners/python.rb +287 -0
  111. data/path/gems/coderay-1.1.0/lib/coderay/scanners/raydebug.rb +75 -0
  112. data/path/gems/coderay-1.1.0/lib/coderay/scanners/ruby/patterns.rb +178 -0
  113. data/path/gems/coderay-1.1.0/lib/coderay/scanners/ruby/string_state.rb +71 -0
  114. data/path/gems/coderay-1.1.0/lib/coderay/scanners/ruby.rb +470 -0
  115. data/path/gems/coderay-1.1.0/lib/coderay/scanners/sass.rb +232 -0
  116. data/path/gems/coderay-1.1.0/lib/coderay/scanners/sql.rb +177 -0
  117. data/path/gems/coderay-1.1.0/lib/coderay/scanners/taskpaper.rb +36 -0
  118. data/path/gems/coderay-1.1.0/lib/coderay/scanners/text.rb +26 -0
  119. data/path/gems/coderay-1.1.0/lib/coderay/scanners/xml.rb +17 -0
  120. data/path/gems/coderay-1.1.0/lib/coderay/scanners/yaml.rb +140 -0
  121. data/path/gems/coderay-1.1.0/lib/coderay/style.rb +23 -0
  122. data/path/gems/coderay-1.1.0/lib/coderay/styles/_map.rb +7 -0
  123. data/path/gems/coderay-1.1.0/lib/coderay/styles/alpha.rb +152 -0
  124. data/path/gems/coderay-1.1.0/lib/coderay/token_kinds.rb +85 -0
  125. data/path/gems/coderay-1.1.0/lib/coderay/tokens.rb +161 -0
  126. data/path/gems/coderay-1.1.0/lib/coderay/tokens_proxy.rb +55 -0
  127. data/path/gems/coderay-1.1.0/lib/coderay/version.rb +3 -0
  128. data/path/gems/coderay-1.1.0/lib/coderay.rb +284 -0
  129. data/path/gems/coderay-1.1.0/test/functional/basic.rb +318 -0
  130. data/path/gems/coderay-1.1.0/test/functional/examples.rb +129 -0
  131. data/path/gems/coderay-1.1.0/test/functional/for_redcloth.rb +78 -0
  132. data/path/gems/coderay-1.1.0/test/functional/suite.rb +15 -0
  133. data/path/gems/diff-lcs-1.2.5/.autotest +3 -0
  134. data/path/gems/diff-lcs-1.2.5/.gemtest +0 -0
  135. data/path/gems/diff-lcs-1.2.5/.hoerc +2 -0
  136. data/path/gems/diff-lcs-1.2.5/.rspec +2 -0
  137. data/path/gems/diff-lcs-1.2.5/.travis.yml +22 -0
  138. data/path/gems/diff-lcs-1.2.5/Contributing.rdoc +64 -0
  139. data/path/gems/diff-lcs-1.2.5/Gemfile +20 -0
  140. data/path/gems/diff-lcs-1.2.5/History.rdoc +152 -0
  141. data/path/gems/diff-lcs-1.2.5/License.rdoc +39 -0
  142. data/path/gems/diff-lcs-1.2.5/Manifest.txt +38 -0
  143. data/path/gems/diff-lcs-1.2.5/README.rdoc +85 -0
  144. data/path/gems/diff-lcs-1.2.5/Rakefile +41 -0
  145. data/path/gems/diff-lcs-1.2.5/autotest/discover.rb +1 -0
  146. data/path/gems/diff-lcs-1.2.5/bin/htmldiff +32 -0
  147. data/path/gems/diff-lcs-1.2.5/bin/ldiff +6 -0
  148. data/path/gems/diff-lcs-1.2.5/docs/COPYING.txt +339 -0
  149. data/path/gems/diff-lcs-1.2.5/docs/artistic.txt +127 -0
  150. data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/array.rb +7 -0
  151. data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/block.rb +37 -0
  152. data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/callbacks.rb +322 -0
  153. data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/change.rb +177 -0
  154. data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/htmldiff.rb +149 -0
  155. data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/hunk.rb +276 -0
  156. data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/internals.rb +301 -0
  157. data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/ldiff.rb +195 -0
  158. data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/string.rb +5 -0
  159. data/path/gems/diff-lcs-1.2.5/lib/diff/lcs.rb +805 -0
  160. data/path/gems/diff-lcs-1.2.5/lib/diff-lcs.rb +3 -0
  161. data/path/gems/diff-lcs-1.2.5/spec/change_spec.rb +65 -0
  162. data/path/gems/diff-lcs-1.2.5/spec/diff_spec.rb +47 -0
  163. data/path/gems/diff-lcs-1.2.5/spec/hunk_spec.rb +72 -0
  164. data/path/gems/diff-lcs-1.2.5/spec/issues_spec.rb +24 -0
  165. data/path/gems/diff-lcs-1.2.5/spec/lcs_spec.rb +54 -0
  166. data/path/gems/diff-lcs-1.2.5/spec/patch_spec.rb +414 -0
  167. data/path/gems/diff-lcs-1.2.5/spec/sdiff_spec.rb +214 -0
  168. data/path/gems/diff-lcs-1.2.5/spec/spec_helper.rb +290 -0
  169. data/path/gems/diff-lcs-1.2.5/spec/traverse_balanced_spec.rb +310 -0
  170. data/path/gems/diff-lcs-1.2.5/spec/traverse_sequences_spec.rb +139 -0
  171. data/path/gems/ffi-1.9.10-x86-mingw32/COPYING +49 -0
  172. data/path/gems/ffi-1.9.10-x86-mingw32/LICENSE +24 -0
  173. data/path/gems/ffi-1.9.10-x86-mingw32/README.md +109 -0
  174. data/path/gems/ffi-1.9.10-x86-mingw32/Rakefile +210 -0
  175. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/AbstractMemory.c +1032 -0
  176. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/AbstractMemory.h +175 -0
  177. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/ArrayType.c +162 -0
  178. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/ArrayType.h +59 -0
  179. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Buffer.c +365 -0
  180. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Call.c +530 -0
  181. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Call.h +93 -0
  182. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/ClosurePool.c +283 -0
  183. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/ClosurePool.h +57 -0
  184. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/DataConverter.c +91 -0
  185. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/DynamicLibrary.c +337 -0
  186. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/DynamicLibrary.h +98 -0
  187. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Function.c +1000 -0
  188. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Function.h +87 -0
  189. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/FunctionInfo.c +271 -0
  190. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/LastError.c +184 -0
  191. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/LastError.h +47 -0
  192. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/LongDouble.c +63 -0
  193. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/LongDouble.h +51 -0
  194. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/MappedType.c +168 -0
  195. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/MappedType.h +59 -0
  196. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/MemoryPointer.c +197 -0
  197. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/MemoryPointer.h +53 -0
  198. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/MethodHandle.c +360 -0
  199. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/MethodHandle.h +55 -0
  200. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Platform.c +121 -0
  201. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Platform.h +45 -0
  202. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Pointer.c +508 -0
  203. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Pointer.h +63 -0
  204. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Struct.c +829 -0
  205. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Struct.h +106 -0
  206. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/StructByReference.c +190 -0
  207. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/StructByReference.h +50 -0
  208. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/StructByValue.c +150 -0
  209. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/StructByValue.h +55 -0
  210. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/StructLayout.c +698 -0
  211. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Thread.c +352 -0
  212. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Thread.h +95 -0
  213. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Type.c +397 -0
  214. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Type.h +62 -0
  215. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Types.c +139 -0
  216. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Types.h +89 -0
  217. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Variadic.c +280 -0
  218. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/compat.h +83 -0
  219. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/extconf.rb +65 -0
  220. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/ffi.c +98 -0
  221. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/ChangeLog +4600 -0
  222. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/ChangeLog.libffi +584 -0
  223. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/ChangeLog.libgcj +40 -0
  224. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/ChangeLog.v1 +764 -0
  225. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/LICENSE +21 -0
  226. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/Makefile.am +196 -0
  227. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/Makefile.in +1820 -0
  228. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/Makefile.vc +141 -0
  229. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/Makefile.vc64 +141 -0
  230. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/README +342 -0
  231. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/acinclude.m4 +92 -0
  232. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/aclocal.m4 +1873 -0
  233. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/build-ios.sh +67 -0
  234. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/compile +143 -0
  235. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/config.guess +1501 -0
  236. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/config.sub +1705 -0
  237. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/configure +17191 -0
  238. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/configure.ac +496 -0
  239. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/configure.host +11 -0
  240. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/depcomp +630 -0
  241. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/doc/libffi.info +593 -0
  242. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/doc/libffi.texi +600 -0
  243. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/doc/stamp-vti +4 -0
  244. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/doc/version.texi +4 -0
  245. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/fficonfig.h.in +199 -0
  246. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/fficonfig.hw +57 -0
  247. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/include/Makefile.am +9 -0
  248. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/include/Makefile.in +487 -0
  249. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/include/ffi.h.in +427 -0
  250. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/include/ffi.h.vc +427 -0
  251. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/include/ffi.h.vc64 +427 -0
  252. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/include/ffi_common.h +126 -0
  253. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/install-sh +520 -0
  254. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/libffi.pc.in +10 -0
  255. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/libtool-version +29 -0
  256. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/ltmain.sh +9636 -0
  257. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +176 -0
  258. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +195 -0
  259. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ax_check_compiler_flags.m4 +76 -0
  260. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +63 -0
  261. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ax_configure_args.m4 +70 -0
  262. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +300 -0
  263. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +215 -0
  264. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +79 -0
  265. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/libtool.m4 +7831 -0
  266. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ltoptions.m4 +369 -0
  267. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ltsugar.m4 +123 -0
  268. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ltversion.m4 +23 -0
  269. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/lt~obsolete.m4 +98 -0
  270. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/man/Makefile.am +8 -0
  271. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/man/Makefile.in +466 -0
  272. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/man/ffi.3 +31 -0
  273. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/man/ffi_call.3 +103 -0
  274. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/man/ffi_prep_cif.3 +66 -0
  275. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/mdate-sh +201 -0
  276. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/missing +376 -0
  277. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/msvcc.sh +197 -0
  278. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/alpha/ffi.c +284 -0
  279. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/alpha/ffitarget.h +48 -0
  280. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/alpha/osf.S +387 -0
  281. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/arm/ffi.c +728 -0
  282. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/arm/ffitarget.h +65 -0
  283. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/arm/gentramp.sh +118 -0
  284. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/arm/sysv.S +497 -0
  285. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/arm/trampoline.S +4450 -0
  286. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/avr32/ffi.c +423 -0
  287. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/avr32/ffitarget.h +50 -0
  288. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/avr32/sysv.S +208 -0
  289. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/closures.c +615 -0
  290. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/cris/ffi.c +383 -0
  291. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/cris/ffitarget.h +51 -0
  292. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/cris/sysv.S +215 -0
  293. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/debug.c +59 -0
  294. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/dlmalloc.c +5161 -0
  295. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/frv/eabi.S +128 -0
  296. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/frv/ffi.c +292 -0
  297. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/frv/ffitarget.h +57 -0
  298. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/ia64/ffi.c +582 -0
  299. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/ia64/ffitarget.h +50 -0
  300. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/ia64/ia64_flags.h +40 -0
  301. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/ia64/unix.S +560 -0
  302. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/java_raw_api.c +356 -0
  303. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/m32r/ffi.c +232 -0
  304. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/m32r/ffitarget.h +48 -0
  305. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/m32r/sysv.S +121 -0
  306. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/m68k/ffi.c +288 -0
  307. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/m68k/ffitarget.h +49 -0
  308. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/m68k/sysv.S +270 -0
  309. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/mips/ffi.c +1036 -0
  310. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/mips/ffitarget.h +242 -0
  311. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/mips/n32.S +591 -0
  312. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/mips/o32.S +381 -0
  313. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/moxie/eabi.S +128 -0
  314. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/moxie/ffi.c +276 -0
  315. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/pa/ffi.c +719 -0
  316. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/pa/ffitarget.h +78 -0
  317. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/pa/hpux32.S +368 -0
  318. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/pa/linux.S +357 -0
  319. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/aix.S +328 -0
  320. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/aix_closure.S +445 -0
  321. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
  322. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/darwin.S +383 -0
  323. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +575 -0
  324. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/ffi.c +1448 -0
  325. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +1359 -0
  326. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/ffitarget.h +139 -0
  327. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/linux64.S +187 -0
  328. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +236 -0
  329. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +327 -0
  330. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/sysv.S +219 -0
  331. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/prep_cif.c +177 -0
  332. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/raw_api.c +254 -0
  333. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/s390/ffi.c +780 -0
  334. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/s390/ffitarget.h +62 -0
  335. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/s390/sysv.S +434 -0
  336. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sh/ffi.c +716 -0
  337. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sh/ffitarget.h +49 -0
  338. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sh/sysv.S +850 -0
  339. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sh64/ffi.c +468 -0
  340. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sh64/ffitarget.h +53 -0
  341. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sh64/sysv.S +539 -0
  342. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sparc/ffi.c +669 -0
  343. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sparc/ffitarget.h +68 -0
  344. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sparc/v8.S +313 -0
  345. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sparc/v9.S +307 -0
  346. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/types.c +77 -0
  347. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/darwin.S +444 -0
  348. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/darwin64.S +416 -0
  349. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/ffi.c +644 -0
  350. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/ffi64.c +635 -0
  351. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/ffitarget.h +121 -0
  352. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/freebsd.S +458 -0
  353. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/sysv.S +468 -0
  354. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/unix64.S +426 -0
  355. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/win32.S +1065 -0
  356. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/win64.S +468 -0
  357. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/Makefile.am +80 -0
  358. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/Makefile.in +500 -0
  359. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
  360. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +300 -0
  361. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/lib/libffi.exp +350 -0
  362. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +263 -0
  363. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +45 -0
  364. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +32 -0
  365. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +89 -0
  366. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +81 -0
  367. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +81 -0
  368. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +82 -0
  369. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +89 -0
  370. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +92 -0
  371. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +90 -0
  372. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c +95 -0
  373. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/closure_stdcall.c +64 -0
  374. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +94 -0
  375. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +95 -0
  376. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +96 -0
  377. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +102 -0
  378. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +89 -0
  379. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +91 -0
  380. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +93 -0
  381. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +113 -0
  382. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +90 -0
  383. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +95 -0
  384. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +90 -0
  385. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +90 -0
  386. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +98 -0
  387. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +90 -0
  388. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +109 -0
  389. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +98 -0
  390. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +124 -0
  391. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +113 -0
  392. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +99 -0
  393. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +117 -0
  394. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +97 -0
  395. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +88 -0
  396. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +90 -0
  397. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +91 -0
  398. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +93 -0
  399. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +91 -0
  400. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +92 -0
  401. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +134 -0
  402. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +117 -0
  403. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +95 -0
  404. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +91 -0
  405. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +91 -0
  406. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +92 -0
  407. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +91 -0
  408. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +91 -0
  409. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +93 -0
  410. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +66 -0
  411. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +43 -0
  412. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +60 -0
  413. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +42 -0
  414. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +105 -0
  415. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +60 -0
  416. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +74 -0
  417. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +74 -0
  418. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +86 -0
  419. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +91 -0
  420. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +74 -0
  421. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +86 -0
  422. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +74 -0
  423. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +140 -0
  424. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +44 -0
  425. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +42 -0
  426. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +42 -0
  427. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +42 -0
  428. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +43 -0
  429. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +47 -0
  430. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +43 -0
  431. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +36 -0
  432. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +26 -0
  433. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +153 -0
  434. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/float.c +59 -0
  435. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +58 -0
  436. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +58 -0
  437. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +72 -0
  438. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +62 -0
  439. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +342 -0
  440. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/many.c +69 -0
  441. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +63 -0
  442. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +53 -0
  443. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +152 -0
  444. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +161 -0
  445. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +133 -0
  446. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +110 -0
  447. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +111 -0
  448. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +111 -0
  449. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +112 -0
  450. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +131 -0
  451. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +111 -0
  452. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +131 -0
  453. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +131 -0
  454. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +90 -0
  455. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +59 -0
  456. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +114 -0
  457. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +35 -0
  458. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +43 -0
  459. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +42 -0
  460. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +35 -0
  461. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +36 -0
  462. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +49 -0
  463. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +42 -0
  464. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +34 -0
  465. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +41 -0
  466. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +43 -0
  467. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +36 -0
  468. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +38 -0
  469. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +38 -0
  470. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +38 -0
  471. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +145 -0
  472. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +148 -0
  473. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +124 -0
  474. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +125 -0
  475. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +44 -0
  476. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +44 -0
  477. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +65 -0
  478. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +67 -0
  479. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +59 -0
  480. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +63 -0
  481. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +65 -0
  482. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +64 -0
  483. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +74 -0
  484. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +80 -0
  485. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +67 -0
  486. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +70 -0
  487. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +96 -0
  488. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.special/special.exp +35 -0
  489. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest.cc +124 -0
  490. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest_ffi_call.cc +53 -0
  491. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/texinfo.tex +7210 -0
  492. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi.bsd.mk +34 -0
  493. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi.darwin.mk +95 -0
  494. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi.gnu.mk +31 -0
  495. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi.mk +13 -0
  496. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi.vc.mk +26 -0
  497. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi.vc64.mk +26 -0
  498. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/rbffi.h +57 -0
  499. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/rbffi_endian.h +59 -0
  500. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/win32/stdbool.h +8 -0
  501. data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/win32/stdint.h +201 -0
  502. data/path/gems/ffi-1.9.10-x86-mingw32/ffi.gemspec +23 -0
  503. data/path/gems/ffi-1.9.10-x86-mingw32/gen/Rakefile +30 -0
  504. data/path/gems/ffi-1.9.10-x86-mingw32/lib/1.8/ffi_c.so +0 -0
  505. data/path/gems/ffi-1.9.10-x86-mingw32/lib/1.9/ffi_c.so +0 -0
  506. data/path/gems/ffi-1.9.10-x86-mingw32/lib/2.0/ffi_c.so +0 -0
  507. data/path/gems/ffi-1.9.10-x86-mingw32/lib/2.1/ffi_c.so +0 -0
  508. data/path/gems/ffi-1.9.10-x86-mingw32/lib/2.2/ffi_c.so +0 -0
  509. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/autopointer.rb +194 -0
  510. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/buffer.rb +4 -0
  511. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/callback.rb +4 -0
  512. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/enum.rb +174 -0
  513. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/errno.rb +43 -0
  514. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/ffi.rb +44 -0
  515. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/io.rb +62 -0
  516. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/library.rb +524 -0
  517. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/managedstruct.rb +84 -0
  518. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/memorypointer.rb +1 -0
  519. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/aarch64-linux/types.conf +104 -0
  520. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/arm-linux/types.conf +104 -0
  521. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/i386-cygwin/types.conf +3 -0
  522. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/i386-darwin/types.conf +100 -0
  523. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/i386-freebsd/types.conf +152 -0
  524. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/i386-gnu/types.conf +107 -0
  525. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/i386-linux/types.conf +103 -0
  526. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/i386-netbsd/types.conf +126 -0
  527. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/i386-openbsd/types.conf +128 -0
  528. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/i386-solaris/types.conf +122 -0
  529. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/i386-windows/types.conf +105 -0
  530. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/ia64-linux/types.conf +104 -0
  531. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/mips-linux/types.conf +102 -0
  532. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/mips64el-linux/types.conf +104 -0
  533. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/mipsel-linux/types.conf +102 -0
  534. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/powerpc-aix/types.conf +180 -0
  535. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
  536. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/powerpc-linux/types.conf +100 -0
  537. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
  538. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/s390-linux/types.conf +102 -0
  539. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/s390x-linux/types.conf +102 -0
  540. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/sparc-linux/types.conf +102 -0
  541. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/sparc-solaris/types.conf +128 -0
  542. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
  543. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
  544. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/x86_64-darwin/types.conf +126 -0
  545. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
  546. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/x86_64-linux/types.conf +102 -0
  547. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/x86_64-netbsd/types.conf +128 -0
  548. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/x86_64-openbsd/types.conf +128 -0
  549. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
  550. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/x86_64-windows/types.conf +27 -0
  551. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform.rb +159 -0
  552. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/pointer.rb +134 -0
  553. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/struct.rb +373 -0
  554. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/struct_layout_builder.rb +227 -0
  555. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/tools/const_generator.rb +229 -0
  556. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/tools/generator.rb +60 -0
  557. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/tools/generator_task.rb +36 -0
  558. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/tools/struct_generator.rb +194 -0
  559. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/tools/types_generator.rb +135 -0
  560. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/types.rb +190 -0
  561. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/union.rb +43 -0
  562. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/variadic.rb +78 -0
  563. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/version.rb +4 -0
  564. data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi.rb +20 -0
  565. data/path/gems/ffi-1.9.10-x86-mingw32/libtest/Benchmark.c +52 -0
  566. data/path/gems/ffi-1.9.10-x86-mingw32/libtest/BoolTest.c +34 -0
  567. data/path/gems/ffi-1.9.10-x86-mingw32/libtest/BufferTest.c +31 -0
  568. data/path/gems/ffi-1.9.10-x86-mingw32/libtest/ClosureTest.c +205 -0
  569. data/path/gems/ffi-1.9.10-x86-mingw32/libtest/EnumTest.c +51 -0
  570. data/path/gems/ffi-1.9.10-x86-mingw32/libtest/FunctionTest.c +70 -0
  571. data/path/gems/ffi-1.9.10-x86-mingw32/libtest/GNUmakefile +149 -0
  572. data/path/gems/ffi-1.9.10-x86-mingw32/libtest/GlobalVariable.c +62 -0
  573. data/path/gems/ffi-1.9.10-x86-mingw32/libtest/LastErrorTest.c +21 -0
  574. data/path/gems/ffi-1.9.10-x86-mingw32/libtest/NumberTest.c +132 -0
  575. data/path/gems/ffi-1.9.10-x86-mingw32/libtest/PointerTest.c +63 -0
  576. data/path/gems/ffi-1.9.10-x86-mingw32/libtest/ReferenceTest.c +23 -0
  577. data/path/gems/ffi-1.9.10-x86-mingw32/libtest/StringTest.c +34 -0
  578. data/path/gems/ffi-1.9.10-x86-mingw32/libtest/StructTest.c +243 -0
  579. data/path/gems/ffi-1.9.10-x86-mingw32/libtest/UnionTest.c +43 -0
  580. data/path/gems/ffi-1.9.10-x86-mingw32/libtest/VariadicTest.c +62 -0
  581. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/LICENSE.SPECS +22 -0
  582. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/async_callback_spec.rb +35 -0
  583. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/bool_spec.rb +32 -0
  584. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/buffer_spec.rb +279 -0
  585. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/callback_spec.rb +773 -0
  586. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/custom_param_type.rb +37 -0
  587. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/custom_type_spec.rb +74 -0
  588. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/dup_spec.rb +52 -0
  589. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/enum_spec.rb +423 -0
  590. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/errno_spec.rb +20 -0
  591. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/ffi_spec.rb +28 -0
  592. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/Benchmark.c +52 -0
  593. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/BoolTest.c +34 -0
  594. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/BufferTest.c +31 -0
  595. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/ClosureTest.c +190 -0
  596. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/EnumTest.c +51 -0
  597. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/FunctionTest.c +58 -0
  598. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/GNUmakefile +149 -0
  599. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/GlobalVariable.c +62 -0
  600. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/LastErrorTest.c +21 -0
  601. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/NumberTest.c +132 -0
  602. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/PointerTest.c +63 -0
  603. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/ReferenceTest.c +23 -0
  604. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/StringTest.c +34 -0
  605. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/StructTest.c +243 -0
  606. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/UnionTest.c +43 -0
  607. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/VariadicTest.c +99 -0
  608. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/classes.rb +438 -0
  609. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/function_spec.rb +92 -0
  610. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/io_spec.rb +16 -0
  611. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/library_spec.rb +276 -0
  612. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/long_double.rb +30 -0
  613. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/managed_struct_spec.rb +68 -0
  614. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/memorypointer_spec.rb +78 -0
  615. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/number_spec.rb +247 -0
  616. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/platform_spec.rb +114 -0
  617. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/pointer_spec.rb +278 -0
  618. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/rbx/attach_function_spec.rb +33 -0
  619. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/rbx/memory_pointer_spec.rb +130 -0
  620. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/rbx/spec_helper.rb +6 -0
  621. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/rbx/struct_spec.rb +18 -0
  622. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/spec_helper.rb +93 -0
  623. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/string_spec.rb +118 -0
  624. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/strptr_spec.rb +50 -0
  625. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/struct_by_ref_spec.rb +43 -0
  626. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/struct_callback_spec.rb +69 -0
  627. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/struct_initialize_spec.rb +35 -0
  628. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/struct_packed_spec.rb +50 -0
  629. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/struct_spec.rb +886 -0
  630. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/typedef_spec.rb +91 -0
  631. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/union_spec.rb +67 -0
  632. data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/variadic_spec.rb +113 -0
  633. data/path/gems/ffi-1.9.10-x86-mingw32/spec/spec.opts +4 -0
  634. data/path/gems/formatador-0.2.5/CONTRIBUTING.md +18 -0
  635. data/path/gems/formatador-0.2.5/CONTRIBUTORS.md +16 -0
  636. data/path/gems/formatador-0.2.5/Gemfile +3 -0
  637. data/path/gems/formatador-0.2.5/LICENSE.md +20 -0
  638. data/path/gems/formatador-0.2.5/README.rdoc +117 -0
  639. data/path/gems/formatador-0.2.5/Rakefile +143 -0
  640. data/path/gems/formatador-0.2.5/changelog.txt +27 -0
  641. data/path/gems/formatador-0.2.5/formatador.gemspec +83 -0
  642. data/path/gems/formatador-0.2.5/lib/formatador/progressbar.rb +91 -0
  643. data/path/gems/formatador-0.2.5/lib/formatador/table.rb +98 -0
  644. data/path/gems/formatador-0.2.5/lib/formatador.rb +131 -0
  645. data/path/gems/formatador-0.2.5/tests/basic_tests.rb +29 -0
  646. data/path/gems/formatador-0.2.5/tests/table_tests.rb +96 -0
  647. data/path/gems/formatador-0.2.5/tests/tests_helper.rb +15 -0
  648. data/path/gems/guard-2.13.0/CHANGELOG.md +1 -0
  649. data/path/gems/guard-2.13.0/LICENSE +22 -0
  650. data/path/gems/guard-2.13.0/README.md +182 -0
  651. data/path/gems/guard-2.13.0/bin/_guard-core +11 -0
  652. data/path/gems/guard-2.13.0/bin/guard +115 -0
  653. data/path/gems/guard-2.13.0/images/failed.png +0 -0
  654. data/path/gems/guard-2.13.0/images/pending.png +0 -0
  655. data/path/gems/guard-2.13.0/images/success.png +0 -0
  656. data/path/gems/guard-2.13.0/lib/guard/aruba_adapter.rb +59 -0
  657. data/path/gems/guard-2.13.0/lib/guard/cli/environments/bundler.rb +22 -0
  658. data/path/gems/guard-2.13.0/lib/guard/cli/environments/evaluate_only.rb +35 -0
  659. data/path/gems/guard-2.13.0/lib/guard/cli/environments/valid.rb +63 -0
  660. data/path/gems/guard-2.13.0/lib/guard/cli.rb +200 -0
  661. data/path/gems/guard-2.13.0/lib/guard/commander.rb +103 -0
  662. data/path/gems/guard-2.13.0/lib/guard/commands/all.rb +37 -0
  663. data/path/gems/guard-2.13.0/lib/guard/commands/change.rb +31 -0
  664. data/path/gems/guard-2.13.0/lib/guard/commands/notification.rb +26 -0
  665. data/path/gems/guard-2.13.0/lib/guard/commands/pause.rb +29 -0
  666. data/path/gems/guard-2.13.0/lib/guard/commands/reload.rb +36 -0
  667. data/path/gems/guard-2.13.0/lib/guard/commands/scope.rb +38 -0
  668. data/path/gems/guard-2.13.0/lib/guard/commands/show.rb +24 -0
  669. data/path/gems/guard-2.13.0/lib/guard/config.rb +18 -0
  670. data/path/gems/guard-2.13.0/lib/guard/deprecated/dsl.rb +45 -0
  671. data/path/gems/guard-2.13.0/lib/guard/deprecated/evaluator.rb +39 -0
  672. data/path/gems/guard-2.13.0/lib/guard/deprecated/guard.rb +334 -0
  673. data/path/gems/guard-2.13.0/lib/guard/deprecated/guardfile.rb +84 -0
  674. data/path/gems/guard-2.13.0/lib/guard/deprecated/watcher.rb +27 -0
  675. data/path/gems/guard-2.13.0/lib/guard/dsl.rb +437 -0
  676. data/path/gems/guard-2.13.0/lib/guard/dsl_describer.rb +160 -0
  677. data/path/gems/guard-2.13.0/lib/guard/dsl_reader.rb +51 -0
  678. data/path/gems/guard-2.13.0/lib/guard/group.rb +64 -0
  679. data/path/gems/guard-2.13.0/lib/guard/guardfile/evaluator.rb +226 -0
  680. data/path/gems/guard-2.13.0/lib/guard/guardfile/generator.rb +115 -0
  681. data/path/gems/guard-2.13.0/lib/guard/guardfile.rb +37 -0
  682. data/path/gems/guard-2.13.0/lib/guard/interactor.rb +62 -0
  683. data/path/gems/guard-2.13.0/lib/guard/internals/debugging.rb +67 -0
  684. data/path/gems/guard-2.13.0/lib/guard/internals/groups.rb +40 -0
  685. data/path/gems/guard-2.13.0/lib/guard/internals/helpers.rb +13 -0
  686. data/path/gems/guard-2.13.0/lib/guard/internals/plugins.rb +53 -0
  687. data/path/gems/guard-2.13.0/lib/guard/internals/queue.rb +50 -0
  688. data/path/gems/guard-2.13.0/lib/guard/internals/scope.rb +121 -0
  689. data/path/gems/guard-2.13.0/lib/guard/internals/session.rb +182 -0
  690. data/path/gems/guard-2.13.0/lib/guard/internals/state.rb +25 -0
  691. data/path/gems/guard-2.13.0/lib/guard/internals/tracing.rb +33 -0
  692. data/path/gems/guard-2.13.0/lib/guard/internals/traps.rb +10 -0
  693. data/path/gems/guard-2.13.0/lib/guard/jobs/base.rb +21 -0
  694. data/path/gems/guard-2.13.0/lib/guard/jobs/pry_wrapper.rb +293 -0
  695. data/path/gems/guard-2.13.0/lib/guard/jobs/sleep.rb +26 -0
  696. data/path/gems/guard-2.13.0/lib/guard/notifier.rb +71 -0
  697. data/path/gems/guard-2.13.0/lib/guard/options.rb +17 -0
  698. data/path/gems/guard-2.13.0/lib/guard/plugin.rb +303 -0
  699. data/path/gems/guard-2.13.0/lib/guard/plugin_util.rb +188 -0
  700. data/path/gems/guard-2.13.0/lib/guard/rake_task.rb +42 -0
  701. data/path/gems/guard-2.13.0/lib/guard/runner.rb +126 -0
  702. data/path/gems/guard-2.13.0/lib/guard/templates/Guardfile +16 -0
  703. data/path/gems/guard-2.13.0/lib/guard/terminal.rb +13 -0
  704. data/path/gems/guard-2.13.0/lib/guard/ui/colors.rb +56 -0
  705. data/path/gems/guard-2.13.0/lib/guard/ui.rb +268 -0
  706. data/path/gems/guard-2.13.0/lib/guard/version.rb +3 -0
  707. data/path/gems/guard-2.13.0/lib/guard/watcher.rb +113 -0
  708. data/path/gems/guard-2.13.0/lib/guard.rb +172 -0
  709. data/path/gems/guard-2.13.0/man/guard.1 +108 -0
  710. data/path/gems/guard-2.13.0/man/guard.1.html +196 -0
  711. data/path/gems/guard-compat-1.2.1/.gitignore +14 -0
  712. data/path/gems/guard-compat-1.2.1/.rspec +3 -0
  713. data/path/gems/guard-compat-1.2.1/.rubocop.yml +6 -0
  714. data/path/gems/guard-compat-1.2.1/.rubocop_todo.yml +10 -0
  715. data/path/gems/guard-compat-1.2.1/Gemfile +9 -0
  716. data/path/gems/guard-compat-1.2.1/LICENSE.txt +22 -0
  717. data/path/gems/guard-compat-1.2.1/README.md +80 -0
  718. data/path/gems/guard-compat-1.2.1/Rakefile +10 -0
  719. data/path/gems/guard-compat-1.2.1/guard-compat.gemspec +23 -0
  720. data/path/gems/guard-compat-1.2.1/lib/guard/compat/example.rb +34 -0
  721. data/path/gems/guard-compat-1.2.1/lib/guard/compat/plugin.rb +124 -0
  722. data/path/gems/guard-compat-1.2.1/lib/guard/compat/test/helper.rb +36 -0
  723. data/path/gems/guard-compat-1.2.1/lib/guard/compat/test/template.rb +68 -0
  724. data/path/gems/guard-compat-1.2.1/lib/guard/compat/version.rb +5 -0
  725. data/path/gems/guard-compat-1.2.1/lib/guard/compat.rb +7 -0
  726. data/path/gems/guard-compat-1.2.1/spec/guard/compat/example_spec.rb +53 -0
  727. data/path/gems/guard-compat-1.2.1/spec/guard/compat/example_template_spec.rb +30 -0
  728. data/path/gems/guard-compat-1.2.1/spec/guard/compat/no_guard_spec.rb +63 -0
  729. data/path/gems/guard-compat-1.2.1/spec/spec_helper.rb +73 -0
  730. data/path/gems/guard-rspec-4.6.4/.gitignore +10 -0
  731. data/path/gems/guard-rspec-4.6.4/.hound.yml +262 -0
  732. data/path/gems/guard-rspec-4.6.4/.rspec +2 -0
  733. data/path/gems/guard-rspec-4.6.4/.rubocop.yml +2 -0
  734. data/path/gems/guard-rspec-4.6.4/.rubocop_todo.yml +6 -0
  735. data/path/gems/guard-rspec-4.6.4/.travis.yml +13 -0
  736. data/path/gems/guard-rspec-4.6.4/CONTRIBUTING.md +38 -0
  737. data/path/gems/guard-rspec-4.6.4/Gemfile +23 -0
  738. data/path/gems/guard-rspec-4.6.4/Guardfile +28 -0
  739. data/path/gems/guard-rspec-4.6.4/LICENSE.txt +22 -0
  740. data/path/gems/guard-rspec-4.6.4/README.md +158 -0
  741. data/path/gems/guard-rspec-4.6.4/Rakefile +38 -0
  742. data/path/gems/guard-rspec-4.6.4/gemfiles/Gemfile.rspec-2.14 +14 -0
  743. data/path/gems/guard-rspec-4.6.4/gemfiles/Gemfile.rspec-2.99 +14 -0
  744. data/path/gems/guard-rspec-4.6.4/gemfiles/Gemfile.rspec-3.3 +14 -0
  745. data/path/gems/guard-rspec-4.6.4/guard-rspec.gemspec +29 -0
  746. data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/command.rb +70 -0
  747. data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/deprecator.rb +84 -0
  748. data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/dsl.rb +70 -0
  749. data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/inspectors/base_inspector.rb +73 -0
  750. data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/inspectors/factory.rb +23 -0
  751. data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/inspectors/focused_inspector.rb +39 -0
  752. data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/inspectors/keeping_inspector.rb +97 -0
  753. data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/inspectors/simple_inspector.rb +21 -0
  754. data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/notifier.rb +56 -0
  755. data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/options.rb +36 -0
  756. data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/results.rb +23 -0
  757. data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/rspec_process.rb +66 -0
  758. data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/runner.rb +97 -0
  759. data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/templates/Guardfile +53 -0
  760. data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/version.rb +5 -0
  761. data/path/gems/guard-rspec-4.6.4/lib/guard/rspec.rb +51 -0
  762. data/path/gems/guard-rspec-4.6.4/lib/guard/rspec_defaults.rb +5 -0
  763. data/path/gems/guard-rspec-4.6.4/lib/guard/rspec_formatter.rb +145 -0
  764. data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/command_spec.rb +95 -0
  765. data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/deprecator_spec.rb +94 -0
  766. data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/inspectors/base_inspector_spec.rb +144 -0
  767. data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/inspectors/factory_spec.rb +45 -0
  768. data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/inspectors/focused_inspector_spec.rb +140 -0
  769. data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/inspectors/keeping_inspector_spec.rb +192 -0
  770. data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/inspectors/shared_examples.rb +121 -0
  771. data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/inspectors/simple_inspector_spec.rb +59 -0
  772. data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/notifier_spec.rb +90 -0
  773. data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/results_spec.rb +64 -0
  774. data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/rspec_process_spec.rb +78 -0
  775. data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/runner_spec.rb +332 -0
  776. data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/template_spec.rb +78 -0
  777. data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec_formatter_spec.rb +258 -0
  778. data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec_spec.rb +91 -0
  779. data/path/gems/guard-rspec-4.6.4/spec/spec_helper.rb +144 -0
  780. data/path/gems/listen-3.0.3/CHANGELOG.md +1 -0
  781. data/path/gems/listen-3.0.3/CONTRIBUTING.md +38 -0
  782. data/path/gems/listen-3.0.3/LICENSE.txt +22 -0
  783. data/path/gems/listen-3.0.3/README.md +305 -0
  784. data/path/gems/listen-3.0.3/bin/listen +12 -0
  785. data/path/gems/listen-3.0.3/lib/listen/adapter/base.rb +130 -0
  786. data/path/gems/listen-3.0.3/lib/listen/adapter/bsd.rb +106 -0
  787. data/path/gems/listen-3.0.3/lib/listen/adapter/config.rb +23 -0
  788. data/path/gems/listen-3.0.3/lib/listen/adapter/darwin.rb +55 -0
  789. data/path/gems/listen-3.0.3/lib/listen/adapter/linux.rb +102 -0
  790. data/path/gems/listen-3.0.3/lib/listen/adapter/polling.rb +37 -0
  791. data/path/gems/listen-3.0.3/lib/listen/adapter/windows.rb +99 -0
  792. data/path/gems/listen-3.0.3/lib/listen/adapter.rb +43 -0
  793. data/path/gems/listen-3.0.3/lib/listen/backend.rb +41 -0
  794. data/path/gems/listen-3.0.3/lib/listen/change.rb +78 -0
  795. data/path/gems/listen-3.0.3/lib/listen/cli.rb +65 -0
  796. data/path/gems/listen-3.0.3/lib/listen/directory.rb +80 -0
  797. data/path/gems/listen-3.0.3/lib/listen/event/config.rb +59 -0
  798. data/path/gems/listen-3.0.3/lib/listen/event/loop.rb +117 -0
  799. data/path/gems/listen-3.0.3/lib/listen/event/processor.rb +122 -0
  800. data/path/gems/listen-3.0.3/lib/listen/event/queue.rb +56 -0
  801. data/path/gems/listen-3.0.3/lib/listen/file.rb +80 -0
  802. data/path/gems/listen-3.0.3/lib/listen/fsm.rb +131 -0
  803. data/path/gems/listen-3.0.3/lib/listen/internals/thread_pool.rb +21 -0
  804. data/path/gems/listen-3.0.3/lib/listen/listener/config.rb +45 -0
  805. data/path/gems/listen-3.0.3/lib/listen/listener.rb +132 -0
  806. data/path/gems/listen-3.0.3/lib/listen/logger.rb +32 -0
  807. data/path/gems/listen-3.0.3/lib/listen/options.rb +23 -0
  808. data/path/gems/listen-3.0.3/lib/listen/queue_optimizer.rb +132 -0
  809. data/path/gems/listen-3.0.3/lib/listen/record/entry.rb +51 -0
  810. data/path/gems/listen-3.0.3/lib/listen/record/symlink_detector.rb +39 -0
  811. data/path/gems/listen-3.0.3/lib/listen/record.rb +120 -0
  812. data/path/gems/listen-3.0.3/lib/listen/silencer/controller.rb +48 -0
  813. data/path/gems/listen-3.0.3/lib/listen/silencer.rb +97 -0
  814. data/path/gems/listen-3.0.3/lib/listen/version.rb +3 -0
  815. data/path/gems/listen-3.0.3/lib/listen.rb +55 -0
  816. data/path/gems/lumberjack-1.0.9/MIT_LICENSE +20 -0
  817. data/path/gems/lumberjack-1.0.9/README.rdoc +132 -0
  818. data/path/gems/lumberjack-1.0.9/Rakefile +40 -0
  819. data/path/gems/lumberjack-1.0.9/VERSION +1 -0
  820. data/path/gems/lumberjack-1.0.9/lib/lumberjack/device/date_rolling_log_file.rb +58 -0
  821. data/path/gems/lumberjack-1.0.9/lib/lumberjack/device/log_file.rb +18 -0
  822. data/path/gems/lumberjack-1.0.9/lib/lumberjack/device/null.rb +15 -0
  823. data/path/gems/lumberjack-1.0.9/lib/lumberjack/device/rolling_log_file.rb +110 -0
  824. data/path/gems/lumberjack-1.0.9/lib/lumberjack/device/size_rolling_log_file.rb +60 -0
  825. data/path/gems/lumberjack-1.0.9/lib/lumberjack/device/writer.rb +129 -0
  826. data/path/gems/lumberjack-1.0.9/lib/lumberjack/device.rb +26 -0
  827. data/path/gems/lumberjack-1.0.9/lib/lumberjack/formatter/exception_formatter.rb +12 -0
  828. data/path/gems/lumberjack-1.0.9/lib/lumberjack/formatter/inspect_formatter.rb +10 -0
  829. data/path/gems/lumberjack-1.0.9/lib/lumberjack/formatter/pretty_print_formatter.rb +23 -0
  830. data/path/gems/lumberjack-1.0.9/lib/lumberjack/formatter/string_formatter.rb +10 -0
  831. data/path/gems/lumberjack-1.0.9/lib/lumberjack/formatter.rb +81 -0
  832. data/path/gems/lumberjack-1.0.9/lib/lumberjack/log_entry.rb +36 -0
  833. data/path/gems/lumberjack-1.0.9/lib/lumberjack/logger.rb +315 -0
  834. data/path/gems/lumberjack-1.0.9/lib/lumberjack/rack/unit_of_work.rb +15 -0
  835. data/path/gems/lumberjack-1.0.9/lib/lumberjack/rack.rb +5 -0
  836. data/path/gems/lumberjack-1.0.9/lib/lumberjack/severity.rb +23 -0
  837. data/path/gems/lumberjack-1.0.9/lib/lumberjack/template.rb +71 -0
  838. data/path/gems/lumberjack-1.0.9/lib/lumberjack.rb +43 -0
  839. data/path/gems/lumberjack-1.0.9/spec/device/date_rolling_log_file_spec.rb +66 -0
  840. data/path/gems/lumberjack-1.0.9/spec/device/log_file_spec.rb +26 -0
  841. data/path/gems/lumberjack-1.0.9/spec/device/null_spec.rb +12 -0
  842. data/path/gems/lumberjack-1.0.9/spec/device/rolling_log_file_spec.rb +128 -0
  843. data/path/gems/lumberjack-1.0.9/spec/device/size_rolling_log_file_spec.rb +54 -0
  844. data/path/gems/lumberjack-1.0.9/spec/device/writer_spec.rb +118 -0
  845. data/path/gems/lumberjack-1.0.9/spec/formatter/exception_formatter_spec.rb +20 -0
  846. data/path/gems/lumberjack-1.0.9/spec/formatter/inspect_formatter_spec.rb +13 -0
  847. data/path/gems/lumberjack-1.0.9/spec/formatter/pretty_print_formatter_spec.rb +14 -0
  848. data/path/gems/lumberjack-1.0.9/spec/formatter/string_formatter_spec.rb +12 -0
  849. data/path/gems/lumberjack-1.0.9/spec/formatter_spec.rb +45 -0
  850. data/path/gems/lumberjack-1.0.9/spec/log_entry_spec.rb +69 -0
  851. data/path/gems/lumberjack-1.0.9/spec/logger_spec.rb +411 -0
  852. data/path/gems/lumberjack-1.0.9/spec/lumberjack_spec.rb +29 -0
  853. data/path/gems/lumberjack-1.0.9/spec/rack/unit_of_work_spec.rb +26 -0
  854. data/path/gems/lumberjack-1.0.9/spec/severity_spec.rb +23 -0
  855. data/path/gems/lumberjack-1.0.9/spec/spec_helper.rb +16 -0
  856. data/path/gems/lumberjack-1.0.9/spec/template_spec.rb +34 -0
  857. data/path/gems/method_source-0.8.2/.gemtest +0 -0
  858. data/path/gems/method_source-0.8.2/.travis.yml +13 -0
  859. data/path/gems/method_source-0.8.2/.yardopts +1 -0
  860. data/path/gems/method_source-0.8.2/Gemfile +2 -0
  861. data/path/gems/method_source-0.8.2/LICENSE +25 -0
  862. data/path/gems/method_source-0.8.2/README.markdown +91 -0
  863. data/path/gems/method_source-0.8.2/Rakefile +79 -0
  864. data/path/gems/method_source-0.8.2/lib/method_source/code_helpers.rb +154 -0
  865. data/path/gems/method_source-0.8.2/lib/method_source/source_location.rb +138 -0
  866. data/path/gems/method_source-0.8.2/lib/method_source/version.rb +3 -0
  867. data/path/gems/method_source-0.8.2/lib/method_source.rb +141 -0
  868. data/path/gems/method_source-0.8.2/method_source.gemspec +33 -0
  869. data/path/gems/method_source-0.8.2/test/test.rb +138 -0
  870. data/path/gems/method_source-0.8.2/test/test_code_helpers.rb +41 -0
  871. data/path/gems/method_source-0.8.2/test/test_helper.rb +98 -0
  872. data/path/gems/nenv-0.2.0/.gitignore +14 -0
  873. data/path/gems/nenv-0.2.0/LICENSE.txt +22 -0
  874. data/path/gems/nenv-0.2.0/README.md +320 -0
  875. data/path/gems/nenv-0.2.0/lib/nenv/autoenvironment.rb +9 -0
  876. data/path/gems/nenv-0.2.0/lib/nenv/builder.rb +9 -0
  877. data/path/gems/nenv-0.2.0/lib/nenv/environment/dumper.rb +10 -0
  878. data/path/gems/nenv-0.2.0/lib/nenv/environment/loader.rb +29 -0
  879. data/path/gems/nenv-0.2.0/lib/nenv/environment.rb +58 -0
  880. data/path/gems/nenv-0.2.0/lib/nenv/version.rb +3 -0
  881. data/path/gems/nenv-0.2.0/lib/nenv.rb +30 -0
  882. data/path/gems/nenv-0.2.0/nenv.gemspec +27 -0
  883. data/path/gems/notiffany-0.0.7/LICENSE.txt +22 -0
  884. data/path/gems/notiffany-0.0.7/README.md +69 -0
  885. data/path/gems/notiffany-0.0.7/images/failed.png +0 -0
  886. data/path/gems/notiffany-0.0.7/images/pending.png +0 -0
  887. data/path/gems/notiffany-0.0.7/images/success.png +0 -0
  888. data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/base.rb +127 -0
  889. data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/detected.rb +116 -0
  890. data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/emacs.rb +107 -0
  891. data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/file.rb +44 -0
  892. data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/gntp.rb +91 -0
  893. data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/growl.rb +82 -0
  894. data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/libnotify.rb +54 -0
  895. data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/notifysend.rb +89 -0
  896. data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/rb_notifu.rb +89 -0
  897. data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/terminal_notifier.rb +59 -0
  898. data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/terminal_title.rb +39 -0
  899. data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/tmux.rb +355 -0
  900. data/path/gems/notiffany-0.0.7/lib/notiffany/notifier.rb +205 -0
  901. data/path/gems/notiffany-0.0.7/lib/notiffany/version.rb +3 -0
  902. data/path/gems/notiffany-0.0.7/lib/notiffany.rb +6 -0
  903. data/path/gems/pry-0.10.1-x86-mingw32/CHANGELOG.md +709 -0
  904. data/path/gems/pry-0.10.1-x86-mingw32/LICENSE +25 -0
  905. data/path/gems/pry-0.10.1-x86-mingw32/README.md +406 -0
  906. data/path/gems/pry-0.10.1-x86-mingw32/bin/pry +16 -0
  907. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/cli.rb +220 -0
  908. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/code/code_file.rb +103 -0
  909. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/code/code_range.rb +71 -0
  910. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/code/loc.rb +92 -0
  911. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/code.rb +346 -0
  912. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/code_object.rb +172 -0
  913. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/color_printer.rb +55 -0
  914. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/command.rb +692 -0
  915. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/command_set.rb +443 -0
  916. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/amend_line.rb +99 -0
  917. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/bang.rb +20 -0
  918. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/bang_pry.rb +17 -0
  919. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/cat/abstract_formatter.rb +27 -0
  920. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/cat/exception_formatter.rb +77 -0
  921. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/cat/file_formatter.rb +67 -0
  922. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/cat/input_expression_formatter.rb +43 -0
  923. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/cat.rb +62 -0
  924. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/cd.rb +41 -0
  925. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/change_inspector.rb +27 -0
  926. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/change_prompt.rb +26 -0
  927. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/code_collector.rb +165 -0
  928. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/disable_pry.rb +27 -0
  929. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/disabled_commands.rb +2 -0
  930. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/easter_eggs.rb +112 -0
  931. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/edit/exception_patcher.rb +25 -0
  932. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/edit/file_and_line_locator.rb +36 -0
  933. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/edit.rb +195 -0
  934. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/exit.rb +42 -0
  935. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/exit_all.rb +29 -0
  936. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/exit_program.rb +23 -0
  937. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/find_method.rb +193 -0
  938. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/fix_indent.rb +19 -0
  939. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/gem_cd.rb +26 -0
  940. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/gem_install.rb +32 -0
  941. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/gem_list.rb +33 -0
  942. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/gem_open.rb +29 -0
  943. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/gist.rb +101 -0
  944. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/help.rb +164 -0
  945. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/hist.rb +180 -0
  946. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/import_set.rb +22 -0
  947. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/install_command.rb +53 -0
  948. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/jump_to.rb +29 -0
  949. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/list_inspectors.rb +35 -0
  950. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/list_prompts.rb +35 -0
  951. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/constants.rb +47 -0
  952. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/formatter.rb +49 -0
  953. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/globals.rb +48 -0
  954. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/grep.rb +21 -0
  955. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/instance_vars.rb +39 -0
  956. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/interrogatable.rb +18 -0
  957. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/jruby_hacks.rb +49 -0
  958. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/local_names.rb +35 -0
  959. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/local_vars.rb +39 -0
  960. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/ls_entity.rb +70 -0
  961. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/methods.rb +57 -0
  962. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/methods_helper.rb +46 -0
  963. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/self_methods.rb +32 -0
  964. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls.rb +114 -0
  965. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/nesting.rb +25 -0
  966. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/play.rb +103 -0
  967. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/pry_backtrace.rb +25 -0
  968. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/pry_version.rb +17 -0
  969. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/raise_up.rb +32 -0
  970. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/reload_code.rb +62 -0
  971. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/reset.rb +18 -0
  972. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ri.rb +60 -0
  973. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/save_file.rb +61 -0
  974. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/shell_command.rb +48 -0
  975. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/shell_mode.rb +25 -0
  976. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/show_doc.rb +83 -0
  977. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/show_info.rb +195 -0
  978. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/show_input.rb +17 -0
  979. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/show_source.rb +50 -0
  980. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/simple_prompt.rb +22 -0
  981. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/stat.rb +40 -0
  982. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/switch_to.rb +23 -0
  983. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/toggle_color.rb +24 -0
  984. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/watch_expression/expression.rb +38 -0
  985. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/watch_expression.rb +105 -0
  986. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/whereami.rb +190 -0
  987. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/wtf.rb +57 -0
  988. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands.rb +6 -0
  989. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/config/behavior.rb +139 -0
  990. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/config/convenience.rb +25 -0
  991. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/config/default.rb +161 -0
  992. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/config.rb +24 -0
  993. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/core_extensions.rb +131 -0
  994. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/editor.rb +135 -0
  995. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/exceptions.rb +77 -0
  996. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/helpers/base_helpers.rb +113 -0
  997. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/helpers/command_helpers.rb +156 -0
  998. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/helpers/documentation_helpers.rb +75 -0
  999. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/helpers/options_helpers.rb +27 -0
  1000. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/helpers/table.rb +109 -0
  1001. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/helpers/text.rb +107 -0
  1002. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/helpers.rb +5 -0
  1003. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/history.rb +127 -0
  1004. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/history_array.rb +121 -0
  1005. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/hooks.rb +230 -0
  1006. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/indent.rb +406 -0
  1007. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/input_completer.rb +242 -0
  1008. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/input_lock.rb +132 -0
  1009. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/inspector.rb +27 -0
  1010. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/last_exception.rb +61 -0
  1011. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/method/disowned.rb +53 -0
  1012. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/method/patcher.rb +125 -0
  1013. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/method/weird_method_locator.rb +186 -0
  1014. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/method.rb +546 -0
  1015. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/module_candidate.rb +136 -0
  1016. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/object_path.rb +82 -0
  1017. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/output.rb +50 -0
  1018. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/pager.rb +236 -0
  1019. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/plugins.rb +103 -0
  1020. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/prompt.rb +26 -0
  1021. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/pry_class.rb +375 -0
  1022. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/pry_instance.rb +664 -0
  1023. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/rbx_path.rb +22 -0
  1024. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/repl.rb +202 -0
  1025. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/repl_file_loader.rb +74 -0
  1026. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/rubygem.rb +82 -0
  1027. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/terminal.rb +79 -0
  1028. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/test/helper.rb +170 -0
  1029. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/version.rb +3 -0
  1030. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/wrapped_module.rb +377 -0
  1031. data/path/gems/pry-0.10.1-x86-mingw32/lib/pry.rb +161 -0
  1032. data/path/gems/rb-fsevent-0.9.5/.gitignore +13 -0
  1033. data/path/gems/rb-fsevent-0.9.5/Gemfile +6 -0
  1034. data/path/gems/rb-fsevent-0.9.5/Guardfile +8 -0
  1035. data/path/gems/rb-fsevent-0.9.5/LICENSE.txt +22 -0
  1036. data/path/gems/rb-fsevent-0.9.5/README.md +242 -0
  1037. data/path/gems/rb-fsevent-0.9.5/Rakefile +32 -0
  1038. data/path/gems/rb-fsevent-0.9.5/bin/fsevent_watch +0 -0
  1039. data/path/gems/rb-fsevent-0.9.5/ext/LICENSE +21 -0
  1040. data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/FSEventsFix.c +626 -0
  1041. data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/FSEventsFix.h +105 -0
  1042. data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/TSICTString.c +394 -0
  1043. data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/TSICTString.h +74 -0
  1044. data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/cli.c +202 -0
  1045. data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/cli.h +45 -0
  1046. data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/common.h +22 -0
  1047. data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/compat.c +25 -0
  1048. data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/compat.h +47 -0
  1049. data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/defines.h +40 -0
  1050. data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/main.c +507 -0
  1051. data/path/gems/rb-fsevent-0.9.5/ext/rakefile.rb +224 -0
  1052. data/path/gems/rb-fsevent-0.9.5/lib/rb-fsevent/fsevent.rb +114 -0
  1053. data/path/gems/rb-fsevent-0.9.5/lib/rb-fsevent/version.rb +5 -0
  1054. data/path/gems/rb-fsevent-0.9.5/lib/rb-fsevent.rb +3 -0
  1055. data/path/gems/rb-fsevent-0.9.5/rb-fsevent.gemspec +24 -0
  1056. data/path/gems/rb-fsevent-0.9.5/spec/fixtures/custom 'path/.gitignore +0 -0
  1057. data/path/gems/rb-fsevent-0.9.5/spec/fixtures/folder1/file1.txt +0 -0
  1058. data/path/gems/rb-fsevent-0.9.5/spec/fixtures/folder1/folder2/file2.txt +0 -0
  1059. data/path/gems/rb-fsevent-0.9.5/spec/rb-fsevent/fsevent_spec.rb +88 -0
  1060. data/path/gems/rb-fsevent-0.9.5/spec/spec_helper.rb +23 -0
  1061. data/path/gems/rb-inotify-0.9.5/.yardopts +4 -0
  1062. data/path/gems/rb-inotify-0.9.5/MIT-LICENSE +20 -0
  1063. data/path/gems/rb-inotify-0.9.5/README.md +66 -0
  1064. data/path/gems/rb-inotify-0.9.5/Rakefile +54 -0
  1065. data/path/gems/rb-inotify-0.9.5/VERSION +1 -0
  1066. data/path/gems/rb-inotify-0.9.5/lib/rb-inotify/event.rb +146 -0
  1067. data/path/gems/rb-inotify-0.9.5/lib/rb-inotify/native/flags.rb +89 -0
  1068. data/path/gems/rb-inotify-0.9.5/lib/rb-inotify/native.rb +31 -0
  1069. data/path/gems/rb-inotify-0.9.5/lib/rb-inotify/notifier.rb +318 -0
  1070. data/path/gems/rb-inotify-0.9.5/lib/rb-inotify/watcher.rb +88 -0
  1071. data/path/gems/rb-inotify-0.9.5/lib/rb-inotify.rb +17 -0
  1072. data/path/gems/rb-inotify-0.9.5/rb-inotify.gemspec +52 -0
  1073. data/path/gems/rspec-3.3.0/License.txt +24 -0
  1074. data/path/gems/rspec-3.3.0/README.md +34 -0
  1075. data/path/gems/rspec-3.3.0/lib/rspec/version.rb +5 -0
  1076. data/path/gems/rspec-3.3.0/lib/rspec.rb +3 -0
  1077. data/path/gems/rspec-core-3.3.2/.document +5 -0
  1078. data/path/gems/rspec-core-3.3.2/.yardopts +8 -0
  1079. data/path/gems/rspec-core-3.3.2/Changelog.md +1856 -0
  1080. data/path/gems/rspec-core-3.3.2/License.txt +25 -0
  1081. data/path/gems/rspec-core-3.3.2/README.md +369 -0
  1082. data/path/gems/rspec-core-3.3.2/exe/rspec +4 -0
  1083. data/path/gems/rspec-core-3.3.2/lib/rspec/autorun.rb +3 -0
  1084. data/path/gems/rspec-core-3.3.2/lib/rspec/core/backtrace_formatter.rb +64 -0
  1085. data/path/gems/rspec-core-3.3.2/lib/rspec/core/bisect/coordinator.rb +66 -0
  1086. data/path/gems/rspec-core-3.3.2/lib/rspec/core/bisect/example_minimizer.rb +130 -0
  1087. data/path/gems/rspec-core-3.3.2/lib/rspec/core/bisect/runner.rb +139 -0
  1088. data/path/gems/rspec-core-3.3.2/lib/rspec/core/bisect/server.rb +61 -0
  1089. data/path/gems/rspec-core-3.3.2/lib/rspec/core/bisect/subset_enumerator.rb +39 -0
  1090. data/path/gems/rspec-core-3.3.2/lib/rspec/core/configuration.rb +1807 -0
  1091. data/path/gems/rspec-core-3.3.2/lib/rspec/core/configuration_options.rb +191 -0
  1092. data/path/gems/rspec-core-3.3.2/lib/rspec/core/drb.rb +111 -0
  1093. data/path/gems/rspec-core-3.3.2/lib/rspec/core/dsl.rb +96 -0
  1094. data/path/gems/rspec-core-3.3.2/lib/rspec/core/example.rb +573 -0
  1095. data/path/gems/rspec-core-3.3.2/lib/rspec/core/example_group.rb +796 -0
  1096. data/path/gems/rspec-core-3.3.2/lib/rspec/core/example_status_persister.rb +235 -0
  1097. data/path/gems/rspec-core-3.3.2/lib/rspec/core/filter_manager.rb +231 -0
  1098. data/path/gems/rspec-core-3.3.2/lib/rspec/core/flat_map.rb +20 -0
  1099. data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/base_formatter.rb +70 -0
  1100. data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/base_text_formatter.rb +77 -0
  1101. data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/bisect_formatter.rb +68 -0
  1102. data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/bisect_progress_formatter.rb +115 -0
  1103. data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/console_codes.rb +65 -0
  1104. data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
  1105. data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/documentation_formatter.rb +70 -0
  1106. data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/exception_presenter.rb +393 -0
  1107. data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
  1108. data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/helpers.rb +109 -0
  1109. data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/html_formatter.rb +151 -0
  1110. data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/html_printer.rb +415 -0
  1111. data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/json_formatter.rb +96 -0
  1112. data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/profile_formatter.rb +68 -0
  1113. data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/progress_formatter.rb +28 -0
  1114. data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/protocol.rb +172 -0
  1115. data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/snippet_extractor.rb +116 -0
  1116. data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters.rb +254 -0
  1117. data/path/gems/rspec-core-3.3.2/lib/rspec/core/hooks.rb +638 -0
  1118. data/path/gems/rspec-core-3.3.2/lib/rspec/core/memoized_helpers.rb +532 -0
  1119. data/path/gems/rspec-core-3.3.2/lib/rspec/core/metadata.rb +490 -0
  1120. data/path/gems/rspec-core-3.3.2/lib/rspec/core/metadata_filter.rb +235 -0
  1121. data/path/gems/rspec-core-3.3.2/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
  1122. data/path/gems/rspec-core-3.3.2/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
  1123. data/path/gems/rspec-core-3.3.2/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
  1124. data/path/gems/rspec-core-3.3.2/lib/rspec/core/mocking_adapters/null.rb +14 -0
  1125. data/path/gems/rspec-core-3.3.2/lib/rspec/core/mocking_adapters/rr.rb +31 -0
  1126. data/path/gems/rspec-core-3.3.2/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
  1127. data/path/gems/rspec-core-3.3.2/lib/rspec/core/mutex.rb +63 -0
  1128. data/path/gems/rspec-core-3.3.2/lib/rspec/core/notifications.rb +498 -0
  1129. data/path/gems/rspec-core-3.3.2/lib/rspec/core/option_parser.rb +301 -0
  1130. data/path/gems/rspec-core-3.3.2/lib/rspec/core/ordering.rb +158 -0
  1131. data/path/gems/rspec-core-3.3.2/lib/rspec/core/pending.rb +165 -0
  1132. data/path/gems/rspec-core-3.3.2/lib/rspec/core/profiler.rb +32 -0
  1133. data/path/gems/rspec-core-3.3.2/lib/rspec/core/project_initializer/.rspec +2 -0
  1134. data/path/gems/rspec-core-3.3.2/lib/rspec/core/project_initializer/spec/spec_helper.rb +96 -0
  1135. data/path/gems/rspec-core-3.3.2/lib/rspec/core/project_initializer.rb +48 -0
  1136. data/path/gems/rspec-core-3.3.2/lib/rspec/core/rake_task.rb +158 -0
  1137. data/path/gems/rspec-core-3.3.2/lib/rspec/core/reentrant_mutex.rb +52 -0
  1138. data/path/gems/rspec-core-3.3.2/lib/rspec/core/reporter.rb +220 -0
  1139. data/path/gems/rspec-core-3.3.2/lib/rspec/core/ruby_project.rb +53 -0
  1140. data/path/gems/rspec-core-3.3.2/lib/rspec/core/runner.rb +179 -0
  1141. data/path/gems/rspec-core-3.3.2/lib/rspec/core/sandbox.rb +37 -0
  1142. data/path/gems/rspec-core-3.3.2/lib/rspec/core/set.rb +49 -0
  1143. data/path/gems/rspec-core-3.3.2/lib/rspec/core/shared_context.rb +55 -0
  1144. data/path/gems/rspec-core-3.3.2/lib/rspec/core/shared_example_group.rb +210 -0
  1145. data/path/gems/rspec-core-3.3.2/lib/rspec/core/shell_escape.rb +49 -0
  1146. data/path/gems/rspec-core-3.3.2/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
  1147. data/path/gems/rspec-core-3.3.2/lib/rspec/core/version.rb +9 -0
  1148. data/path/gems/rspec-core-3.3.2/lib/rspec/core/warnings.rb +40 -0
  1149. data/path/gems/rspec-core-3.3.2/lib/rspec/core/world.rb +178 -0
  1150. data/path/gems/rspec-core-3.3.2/lib/rspec/core.rb +181 -0
  1151. data/path/gems/rspec-expectations-3.3.1/.document +5 -0
  1152. data/path/gems/rspec-expectations-3.3.1/.yardopts +6 -0
  1153. data/path/gems/rspec-expectations-3.3.1/Changelog.md +953 -0
  1154. data/path/gems/rspec-expectations-3.3.1/License.txt +24 -0
  1155. data/path/gems/rspec-expectations-3.3.1/README.md +289 -0
  1156. data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/configuration.rb +164 -0
  1157. data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/expectation_target.rb +113 -0
  1158. data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/fail_with.rb +31 -0
  1159. data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/failure_aggregator.rb +194 -0
  1160. data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/handler.rb +170 -0
  1161. data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/minitest_integration.rb +31 -0
  1162. data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/syntax.rb +132 -0
  1163. data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/version.rb +8 -0
  1164. data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations.rb +81 -0
  1165. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/aliased_matcher.rb +116 -0
  1166. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/all.rb +85 -0
  1167. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/base_matcher.rb +181 -0
  1168. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/be.rb +285 -0
  1169. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/be_between.rb +77 -0
  1170. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/be_instance_of.rb +22 -0
  1171. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/be_kind_of.rb +16 -0
  1172. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/be_within.rb +72 -0
  1173. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/change.rb +337 -0
  1174. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/compound.rb +293 -0
  1175. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/contain_exactly.rb +253 -0
  1176. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/cover.rb +24 -0
  1177. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/eq.rb +40 -0
  1178. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/eql.rb +34 -0
  1179. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/equal.rb +81 -0
  1180. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/exist.rb +86 -0
  1181. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/has.rb +103 -0
  1182. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
  1183. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/include.rb +130 -0
  1184. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/match.rb +37 -0
  1185. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/operators.rb +128 -0
  1186. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/output.rb +200 -0
  1187. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/raise_error.rb +216 -0
  1188. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/respond_to.rb +90 -0
  1189. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/satisfy.rb +37 -0
  1190. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
  1191. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
  1192. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/yield.rb +418 -0
  1193. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in.rb +52 -0
  1194. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/composable.rb +184 -0
  1195. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/dsl.rb +453 -0
  1196. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/english_phrasing.rb +42 -0
  1197. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +73 -0
  1198. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/fail_matchers.rb +42 -0
  1199. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/generated_descriptions.rb +42 -0
  1200. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/matcher_delegator.rb +35 -0
  1201. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/matcher_protocol.rb +99 -0
  1202. data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers.rb +1009 -0
  1203. data/path/gems/rspec-mocks-3.3.2/.document +5 -0
  1204. data/path/gems/rspec-mocks-3.3.2/.yardopts +6 -0
  1205. data/path/gems/rspec-mocks-3.3.2/Changelog.md +965 -0
  1206. data/path/gems/rspec-mocks-3.3.2/License.txt +24 -0
  1207. data/path/gems/rspec-mocks-3.3.2/README.md +430 -0
  1208. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/chain.rb +110 -0
  1209. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
  1210. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/expect_chain_chain.rb +35 -0
  1211. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/expectation_chain.rb +48 -0
  1212. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
  1213. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/proxy.rb +116 -0
  1214. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/recorder.rb +264 -0
  1215. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/stub_chain.rb +46 -0
  1216. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/stub_chain_chain.rb +27 -0
  1217. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance.rb +11 -0
  1218. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/argument_list_matcher.rb +100 -0
  1219. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/argument_matchers.rb +320 -0
  1220. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/configuration.rb +188 -0
  1221. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/error_generator.rb +362 -0
  1222. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/example_methods.rb +421 -0
  1223. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/instance_method_stasher.rb +135 -0
  1224. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/marshal_extension.rb +41 -0
  1225. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
  1226. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/matchers/have_received.rb +116 -0
  1227. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/matchers/receive.rb +130 -0
  1228. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/matchers/receive_message_chain.rb +80 -0
  1229. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/matchers/receive_messages.rb +75 -0
  1230. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/message_chain.rb +87 -0
  1231. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/message_expectation.rb +717 -0
  1232. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/method_double.rb +287 -0
  1233. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/method_reference.rb +192 -0
  1234. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/mutate_const.rb +335 -0
  1235. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/mutex.rb +73 -0
  1236. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/object_reference.rb +149 -0
  1237. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/order_group.rb +81 -0
  1238. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/proxy.rb +439 -0
  1239. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/reentrant_mutex.rb +53 -0
  1240. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/space.rb +238 -0
  1241. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/standalone.rb +3 -0
  1242. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/syntax.rb +325 -0
  1243. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/targets.rb +97 -0
  1244. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/test_double.rb +170 -0
  1245. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/verifying_double.rb +129 -0
  1246. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/verifying_message_expecation.rb +54 -0
  1247. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/verifying_proxy.rb +213 -0
  1248. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/version.rb +9 -0
  1249. data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks.rb +126 -0
  1250. data/path/gems/rspec-support-3.3.0/Changelog.md +125 -0
  1251. data/path/gems/rspec-support-3.3.0/LICENSE.txt +22 -0
  1252. data/path/gems/rspec-support-3.3.0/README.md +26 -0
  1253. data/path/gems/rspec-support-3.3.0/lib/rspec/support/caller_filter.rb +83 -0
  1254. data/path/gems/rspec-support-3.3.0/lib/rspec/support/differ.rb +215 -0
  1255. data/path/gems/rspec-support-3.3.0/lib/rspec/support/directory_maker.rb +63 -0
  1256. data/path/gems/rspec-support-3.3.0/lib/rspec/support/encoded_string.rb +155 -0
  1257. data/path/gems/rspec-support-3.3.0/lib/rspec/support/fuzzy_matcher.rb +48 -0
  1258. data/path/gems/rspec-support-3.3.0/lib/rspec/support/hunk_generator.rb +47 -0
  1259. data/path/gems/rspec-support-3.3.0/lib/rspec/support/matcher_definition.rb +42 -0
  1260. data/path/gems/rspec-support-3.3.0/lib/rspec/support/method_signature_verifier.rb +273 -0
  1261. data/path/gems/rspec-support-3.3.0/lib/rspec/support/object_formatter.rb +93 -0
  1262. data/path/gems/rspec-support-3.3.0/lib/rspec/support/recursive_const_methods.rb +76 -0
  1263. data/path/gems/rspec-support-3.3.0/lib/rspec/support/ruby_features.rb +118 -0
  1264. data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/deprecation_helpers.rb +64 -0
  1265. data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/formatting_support.rb +9 -0
  1266. data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/in_sub_process.rb +52 -0
  1267. data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/library_wide_checks.rb +145 -0
  1268. data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/shell_out.rb +71 -0
  1269. data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/stderr_splitter.rb +63 -0
  1270. data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/string_matcher.rb +46 -0
  1271. data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/with_isolated_directory.rb +9 -0
  1272. data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
  1273. data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec.rb +81 -0
  1274. data/path/gems/rspec-support-3.3.0/lib/rspec/support/version.rb +7 -0
  1275. data/path/gems/rspec-support-3.3.0/lib/rspec/support/version_checker.rb +53 -0
  1276. data/path/gems/rspec-support-3.3.0/lib/rspec/support/warnings.rb +39 -0
  1277. data/path/gems/rspec-support-3.3.0/lib/rspec/support.rb +111 -0
  1278. data/path/gems/shellany-0.0.1/.gitignore +14 -0
  1279. data/path/gems/shellany-0.0.1/.rspec +2 -0
  1280. data/path/gems/shellany-0.0.1/.travis.yml +13 -0
  1281. data/path/gems/shellany-0.0.1/Gemfile +11 -0
  1282. data/path/gems/shellany-0.0.1/LICENSE.txt +22 -0
  1283. data/path/gems/shellany-0.0.1/README.md +72 -0
  1284. data/path/gems/shellany-0.0.1/Rakefile +13 -0
  1285. data/path/gems/shellany-0.0.1/lib/shellany/sheller.rb +144 -0
  1286. data/path/gems/shellany-0.0.1/lib/shellany/version.rb +3 -0
  1287. data/path/gems/shellany-0.0.1/lib/shellany.rb +5 -0
  1288. data/path/gems/shellany-0.0.1/shellany.gemspec +22 -0
  1289. data/path/gems/shellany-0.0.1/spec/lib/shellany/sheller_spec.rb +141 -0
  1290. data/path/gems/shellany-0.0.1/spec/shellany_spec.rb +5 -0
  1291. data/path/gems/shellany-0.0.1/spec/spec_helper.rb +24 -0
  1292. data/path/gems/slop-3.6.0/.gitignore +7 -0
  1293. data/path/gems/slop-3.6.0/.travis.yml +9 -0
  1294. data/path/gems/slop-3.6.0/CHANGES.md +309 -0
  1295. data/path/gems/slop-3.6.0/Gemfile +3 -0
  1296. data/path/gems/slop-3.6.0/LICENSE +20 -0
  1297. data/path/gems/slop-3.6.0/README.md +202 -0
  1298. data/path/gems/slop-3.6.0/Rakefile +29 -0
  1299. data/path/gems/slop-3.6.0/lib/slop/commands.rb +196 -0
  1300. data/path/gems/slop-3.6.0/lib/slop/option.rb +214 -0
  1301. data/path/gems/slop-3.6.0/lib/slop.rb +687 -0
  1302. data/path/gems/slop-3.6.0/slop.gemspec +17 -0
  1303. data/path/gems/slop-3.6.0/test/commands_test.rb +26 -0
  1304. data/path/gems/slop-3.6.0/test/helper.rb +12 -0
  1305. data/path/gems/slop-3.6.0/test/option_test.rb +145 -0
  1306. data/path/gems/slop-3.6.0/test/slop_test.rb +518 -0
  1307. data/path/gems/thor-0.19.1/.document +5 -0
  1308. data/path/gems/thor-0.19.1/CHANGELOG.md +139 -0
  1309. data/path/gems/thor-0.19.1/LICENSE.md +20 -0
  1310. data/path/gems/thor-0.19.1/README.md +41 -0
  1311. data/path/gems/thor-0.19.1/Thorfile +29 -0
  1312. data/path/gems/thor-0.19.1/bin/thor +6 -0
  1313. data/path/gems/thor-0.19.1/lib/thor/actions/create_file.rb +103 -0
  1314. data/path/gems/thor-0.19.1/lib/thor/actions/create_link.rb +59 -0
  1315. data/path/gems/thor-0.19.1/lib/thor/actions/directory.rb +118 -0
  1316. data/path/gems/thor-0.19.1/lib/thor/actions/empty_directory.rb +135 -0
  1317. data/path/gems/thor-0.19.1/lib/thor/actions/file_manipulation.rb +316 -0
  1318. data/path/gems/thor-0.19.1/lib/thor/actions/inject_into_file.rb +107 -0
  1319. data/path/gems/thor-0.19.1/lib/thor/actions.rb +319 -0
  1320. data/path/gems/thor-0.19.1/lib/thor/base.rb +656 -0
  1321. data/path/gems/thor-0.19.1/lib/thor/command.rb +133 -0
  1322. data/path/gems/thor-0.19.1/lib/thor/core_ext/hash_with_indifferent_access.rb +77 -0
  1323. data/path/gems/thor-0.19.1/lib/thor/core_ext/io_binary_read.rb +10 -0
  1324. data/path/gems/thor-0.19.1/lib/thor/core_ext/ordered_hash.rb +98 -0
  1325. data/path/gems/thor-0.19.1/lib/thor/error.rb +32 -0
  1326. data/path/gems/thor-0.19.1/lib/thor/group.rb +281 -0
  1327. data/path/gems/thor-0.19.1/lib/thor/invocation.rb +178 -0
  1328. data/path/gems/thor-0.19.1/lib/thor/line_editor/basic.rb +35 -0
  1329. data/path/gems/thor-0.19.1/lib/thor/line_editor/readline.rb +88 -0
  1330. data/path/gems/thor-0.19.1/lib/thor/line_editor.rb +17 -0
  1331. data/path/gems/thor-0.19.1/lib/thor/parser/argument.rb +73 -0
  1332. data/path/gems/thor-0.19.1/lib/thor/parser/arguments.rb +175 -0
  1333. data/path/gems/thor-0.19.1/lib/thor/parser/option.rb +125 -0
  1334. data/path/gems/thor-0.19.1/lib/thor/parser/options.rb +218 -0
  1335. data/path/gems/thor-0.19.1/lib/thor/parser.rb +4 -0
  1336. data/path/gems/thor-0.19.1/lib/thor/rake_compat.rb +71 -0
  1337. data/path/gems/thor-0.19.1/lib/thor/runner.rb +322 -0
  1338. data/path/gems/thor-0.19.1/lib/thor/shell/basic.rb +421 -0
  1339. data/path/gems/thor-0.19.1/lib/thor/shell/color.rb +149 -0
  1340. data/path/gems/thor-0.19.1/lib/thor/shell/html.rb +126 -0
  1341. data/path/gems/thor-0.19.1/lib/thor/shell.rb +81 -0
  1342. data/path/gems/thor-0.19.1/lib/thor/util.rb +267 -0
  1343. data/path/gems/thor-0.19.1/lib/thor/version.rb +3 -0
  1344. data/path/gems/thor-0.19.1/lib/thor.rb +484 -0
  1345. data/path/gems/thor-0.19.1/spec/actions/create_file_spec.rb +168 -0
  1346. data/path/gems/thor-0.19.1/spec/actions/create_link_spec.rb +96 -0
  1347. data/path/gems/thor-0.19.1/spec/actions/directory_spec.rb +169 -0
  1348. data/path/gems/thor-0.19.1/spec/actions/empty_directory_spec.rb +129 -0
  1349. data/path/gems/thor-0.19.1/spec/actions/file_manipulation_spec.rb +392 -0
  1350. data/path/gems/thor-0.19.1/spec/actions/inject_into_file_spec.rb +135 -0
  1351. data/path/gems/thor-0.19.1/spec/actions_spec.rb +331 -0
  1352. data/path/gems/thor-0.19.1/spec/base_spec.rb +298 -0
  1353. data/path/gems/thor-0.19.1/spec/command_spec.rb +79 -0
  1354. data/path/gems/thor-0.19.1/spec/core_ext/hash_with_indifferent_access_spec.rb +48 -0
  1355. data/path/gems/thor-0.19.1/spec/core_ext/ordered_hash_spec.rb +115 -0
  1356. data/path/gems/thor-0.19.1/spec/exit_condition_spec.rb +19 -0
  1357. data/path/gems/thor-0.19.1/spec/fixtures/application.rb +2 -0
  1358. data/path/gems/thor-0.19.1/spec/fixtures/app{1}/README +3 -0
  1359. data/path/gems/thor-0.19.1/spec/fixtures/bundle/execute.rb +6 -0
  1360. data/path/gems/thor-0.19.1/spec/fixtures/bundle/main.thor +1 -0
  1361. data/path/gems/thor-0.19.1/spec/fixtures/command.thor +10 -0
  1362. data/path/gems/thor-0.19.1/spec/fixtures/doc/%file_name%.rb.tt +1 -0
  1363. data/path/gems/thor-0.19.1/spec/fixtures/doc/COMMENTER +11 -0
  1364. data/path/gems/thor-0.19.1/spec/fixtures/doc/README +3 -0
  1365. data/path/gems/thor-0.19.1/spec/fixtures/doc/block_helper.rb +3 -0
  1366. data/path/gems/thor-0.19.1/spec/fixtures/doc/config.rb +1 -0
  1367. data/path/gems/thor-0.19.1/spec/fixtures/doc/config.yaml.tt +1 -0
  1368. data/path/gems/thor-0.19.1/spec/fixtures/doc/excluding/%file_name%.rb.tt +1 -0
  1369. data/path/gems/thor-0.19.1/spec/fixtures/enum.thor +10 -0
  1370. data/path/gems/thor-0.19.1/spec/fixtures/group.thor +128 -0
  1371. data/path/gems/thor-0.19.1/spec/fixtures/invoke.thor +131 -0
  1372. data/path/gems/thor-0.19.1/spec/fixtures/path with spaces +0 -0
  1373. data/path/gems/thor-0.19.1/spec/fixtures/preserve/script.sh +3 -0
  1374. data/path/gems/thor-0.19.1/spec/fixtures/script.thor +220 -0
  1375. data/path/gems/thor-0.19.1/spec/fixtures/subcommand.thor +17 -0
  1376. data/path/gems/thor-0.19.1/spec/group_spec.rb +222 -0
  1377. data/path/gems/thor-0.19.1/spec/helper.rb +80 -0
  1378. data/path/gems/thor-0.19.1/spec/invocation_spec.rb +120 -0
  1379. data/path/gems/thor-0.19.1/spec/line_editor/basic_spec.rb +28 -0
  1380. data/path/gems/thor-0.19.1/spec/line_editor/readline_spec.rb +69 -0
  1381. data/path/gems/thor-0.19.1/spec/line_editor_spec.rb +43 -0
  1382. data/path/gems/thor-0.19.1/spec/parser/argument_spec.rb +53 -0
  1383. data/path/gems/thor-0.19.1/spec/parser/arguments_spec.rb +66 -0
  1384. data/path/gems/thor-0.19.1/spec/parser/option_spec.rb +210 -0
  1385. data/path/gems/thor-0.19.1/spec/parser/options_spec.rb +414 -0
  1386. data/path/gems/thor-0.19.1/spec/quality_spec.rb +75 -0
  1387. data/path/gems/thor-0.19.1/spec/rake_compat_spec.rb +72 -0
  1388. data/path/gems/thor-0.19.1/spec/register_spec.rb +227 -0
  1389. data/path/gems/thor-0.19.1/spec/runner_spec.rb +246 -0
  1390. data/path/gems/thor-0.19.1/spec/sandbox/application.rb +2 -0
  1391. data/path/gems/thor-0.19.1/spec/sandbox/app{1}/README +3 -0
  1392. data/path/gems/thor-0.19.1/spec/sandbox/bundle/execute.rb +6 -0
  1393. data/path/gems/thor-0.19.1/spec/sandbox/bundle/main.thor +1 -0
  1394. data/path/gems/thor-0.19.1/spec/sandbox/command.thor +10 -0
  1395. data/path/gems/thor-0.19.1/spec/sandbox/doc/%file_name%.rb.tt +1 -0
  1396. data/path/gems/thor-0.19.1/spec/sandbox/doc/COMMENTER +11 -0
  1397. data/path/gems/thor-0.19.1/spec/sandbox/doc/README +3 -0
  1398. data/path/gems/thor-0.19.1/spec/sandbox/doc/block_helper.rb +3 -0
  1399. data/path/gems/thor-0.19.1/spec/sandbox/doc/config.rb +1 -0
  1400. data/path/gems/thor-0.19.1/spec/sandbox/doc/config.yaml.tt +1 -0
  1401. data/path/gems/thor-0.19.1/spec/sandbox/doc/excluding/%file_name%.rb.tt +1 -0
  1402. data/path/gems/thor-0.19.1/spec/sandbox/enum.thor +10 -0
  1403. data/path/gems/thor-0.19.1/spec/sandbox/group.thor +128 -0
  1404. data/path/gems/thor-0.19.1/spec/sandbox/invoke.thor +131 -0
  1405. data/path/gems/thor-0.19.1/spec/sandbox/path with spaces +0 -0
  1406. data/path/gems/thor-0.19.1/spec/sandbox/preserve/script.sh +3 -0
  1407. data/path/gems/thor-0.19.1/spec/sandbox/script.thor +220 -0
  1408. data/path/gems/thor-0.19.1/spec/sandbox/subcommand.thor +17 -0
  1409. data/path/gems/thor-0.19.1/spec/shell/basic_spec.rb +337 -0
  1410. data/path/gems/thor-0.19.1/spec/shell/color_spec.rb +119 -0
  1411. data/path/gems/thor-0.19.1/spec/shell/html_spec.rb +31 -0
  1412. data/path/gems/thor-0.19.1/spec/shell_spec.rb +47 -0
  1413. data/path/gems/thor-0.19.1/spec/subcommand_spec.rb +48 -0
  1414. data/path/gems/thor-0.19.1/spec/thor_spec.rb +505 -0
  1415. data/path/gems/thor-0.19.1/spec/util_spec.rb +196 -0
  1416. data/path/gems/thor-0.19.1/thor.gemspec +24 -0
  1417. data/path/gems/win32console-1.3.2-x86-mingw32/.gemtest +0 -0
  1418. data/path/gems/win32console-1.3.2-x86-mingw32/History.txt +134 -0
  1419. data/path/gems/win32console-1.3.2-x86-mingw32/Manifest.txt +22 -0
  1420. data/path/gems/win32console-1.3.2-x86-mingw32/README.txt +86 -0
  1421. data/path/gems/win32console-1.3.2-x86-mingw32/Rakefile +8 -0
  1422. data/path/gems/win32console-1.3.2-x86-mingw32/ext/Console_ext/Console.c +1216 -0
  1423. data/path/gems/win32console-1.3.2-x86-mingw32/ext/Console_ext/extconf.rb +18 -0
  1424. data/path/gems/win32console-1.3.2-x86-mingw32/extra/Console.rdoc +690 -0
  1425. data/path/gems/win32console-1.3.2-x86-mingw32/extra/Console_ANSI.rdoc +302 -0
  1426. data/path/gems/win32console-1.3.2-x86-mingw32/lib/1.8/Console_ext.so +0 -0
  1427. data/path/gems/win32console-1.3.2-x86-mingw32/lib/1.9/Console_ext.so +0 -0
  1428. data/path/gems/win32console-1.3.2-x86-mingw32/lib/Win32/Console/ANSI.rb +357 -0
  1429. data/path/gems/win32console-1.3.2-x86-mingw32/lib/Win32/Console/api.rb +342 -0
  1430. data/path/gems/win32console-1.3.2-x86-mingw32/lib/Win32/Console/constants.rb +66 -0
  1431. data/path/gems/win32console-1.3.2-x86-mingw32/lib/Win32/Console.rb +404 -0
  1432. data/path/gems/win32console-1.3.2-x86-mingw32/lib/win32console.rb +1 -0
  1433. data/path/gems/win32console-1.3.2-x86-mingw32/tasks/gem.rake +36 -0
  1434. data/path/gems/win32console-1.3.2-x86-mingw32/tasks/native.rake +16 -0
  1435. data/path/gems/win32console-1.3.2-x86-mingw32/test/test_cursor.rb +9 -0
  1436. data/path/gems/win32console-1.3.2-x86-mingw32/test/test_mouse.rb +6 -0
  1437. data/path/gems/win32console-1.3.2-x86-mingw32/test/test_readinput.rb +78 -0
  1438. data/path/gems/win32console-1.3.2-x86-mingw32/test/test_readoutput.rb +52 -0
  1439. data/path/gems/win32console-1.3.2-x86-mingw32/test/test_sendevent.rb +17 -0
  1440. data/path/gems/win32console-1.3.2-x86-mingw32/test/test_std.rb +4 -0
  1441. data/path/gems/win32console-1.3.2-x86-mingw32/test/test_title.rb +14 -0
  1442. data/path/gems/win32console-1.3.2-x86-mingw32/test/test_write.rb +37 -0
  1443. data/path/specifications/coderay-1.1.0.gemspec +26 -0
  1444. data/path/specifications/diff-lcs-1.2.5.gemspec +68 -0
  1445. data/path/specifications/ffi-1.9.10-x86-mingw32.gemspec +47 -0
  1446. data/path/specifications/formatador-0.2.5.gemspec +38 -0
  1447. data/path/specifications/guard-2.13.0.gemspec +56 -0
  1448. data/path/specifications/guard-compat-1.2.1.gemspec +35 -0
  1449. data/path/specifications/guard-rspec-4.6.4.gemspec +47 -0
  1450. data/path/specifications/listen-3.0.3.gemspec +41 -0
  1451. data/path/specifications/lumberjack-1.0.9.gemspec +23 -0
  1452. data/path/specifications/method_source-0.8.2.gemspec +34 -0
  1453. data/path/specifications/nenv-0.2.0.gemspec +38 -0
  1454. data/path/specifications/notiffany-0.0.7.gemspec +38 -0
  1455. data/path/specifications/pry-0.10.1-x86-mingw32.gemspec +47 -0
  1456. data/path/specifications/rb-fsevent-0.9.5.gemspec +38 -0
  1457. data/path/specifications/rb-inotify-0.9.5.gemspec +36 -0
  1458. data/path/specifications/rspec-3.3.0.gemspec +42 -0
  1459. data/path/specifications/rspec-core-3.3.2.gemspec +68 -0
  1460. data/path/specifications/rspec-expectations-3.3.1.gemspec +50 -0
  1461. data/path/specifications/rspec-mocks-3.3.2.gemspec +53 -0
  1462. data/path/specifications/rspec-support-3.3.0.gemspec +38 -0
  1463. data/path/specifications/shellany-0.0.1.gemspec +32 -0
  1464. data/path/specifications/slop-3.6.0.gemspec +36 -0
  1465. data/path/specifications/thor-0.19.1.gemspec +34 -0
  1466. data/path/specifications/win32console-1.3.2-x86-mingw32.gemspec +52 -0
  1467. metadata +1538 -0
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,123 @@
1
+ = CodeRay
2
+
3
+ Tired of blue'n'gray? Try the original version of this documentation on
4
+ coderay.rubychan.de[http://coderay.rubychan.de/doc/] :-)
5
+
6
+ == About
7
+
8
+ CodeRay is a Ruby library for syntax highlighting.
9
+
10
+ You put your code in, and you get it back colored; Keywords, strings,
11
+ floats, comments - all in different colors. And with line numbers.
12
+
13
+ *Syntax* *Highlighting*...
14
+ * makes code easier to read and maintain
15
+ * lets you detect syntax errors faster
16
+ * helps you to understand the syntax of a language
17
+ * looks nice
18
+ * is what everybody wants to have on their website
19
+ * solves all your problems and makes the girls run after you
20
+
21
+
22
+ == Installation
23
+
24
+ % gem install coderay
25
+
26
+
27
+ === Dependencies
28
+
29
+ CodeRay needs Ruby 1.8.7+ or 1.9.2+. It also runs on Rubinius and JRuby.
30
+
31
+
32
+ == Example Usage
33
+
34
+ require 'coderay'
35
+
36
+ html = CodeRay.scan("puts 'Hello, world!'", :ruby).div(:line_numbers => :table)
37
+
38
+
39
+ == Documentation
40
+
41
+ See CodeRay.
42
+
43
+
44
+ == Credits
45
+
46
+ === Special Thanks to
47
+
48
+ * licenser (Heinz N. Gies) for ending my QBasic career, inventing the Coder
49
+ project and the input/output plugin system.
50
+ CodeRay would not exist without him.
51
+ * bovi (Daniel Bovensiepen) for helping me out on various occasions.
52
+
53
+ === Thanks to
54
+
55
+ * Caleb Clausen for writing RubyLexer (see
56
+ http://rubyforge.org/projects/rubylexer) and lots of very interesting mail
57
+ traffic
58
+ * birkenfeld (Georg Brandl) and mitsuhiku (Arnim Ronacher) for PyKleur, now pygments.
59
+ You guys rock!
60
+ * Jamis Buck for writing Syntax (see http://rubyforge.org/projects/syntax)
61
+ I got some useful ideas from it.
62
+ * Doug Kearns and everyone else who worked on ruby.vim - it not only helped me
63
+ coding CodeRay, but also gave me a wonderful target to reach for the Ruby
64
+ scanner.
65
+ * everyone who uses CodeBB on http://www.rubyforen.de and http://www.python-forum.de
66
+ * iGEL, magichisoka, manveru, WoNáDo and everyone I forgot from rubyforen.de
67
+ * Dethix from ruby-mine.de
68
+ * zickzackw
69
+ * Dookie (who is no longer with us...) and Leonidas from http://www.python-forum.de
70
+ * Andreas Schwarz for finding out that CaseIgnoringWordList was not case
71
+ ignoring! Such things really make you write tests.
72
+ * closure for the first version of the Scheme scanner.
73
+ * Stefan Walk for the first version of the JavaScript and PHP scanners.
74
+ * Josh Goebel for another version of the JavaScript scanner, a SQL and a Diff scanner.
75
+ * Jonathan Younger for pointing out the licence confusion caused by wrong LICENSE file.
76
+ * Jeremy Hinegardner for finding the shebang-on-empty-file bug in FileType.
77
+ * Charles Oliver Nutter and Yehuda Katz for helping me benchmark CodeRay on JRuby.
78
+ * Andreas Neuhaus for pointing out a markup bug in coderay/for_redcloth.
79
+ * 0xf30fc7 for the FileType patch concerning Delphi file extensions.
80
+ * The folks at redmine.org - thank you for using and fixing CodeRay!
81
+ * Keith Pitt for his SQL scanners
82
+ * Rob Aldred for the terminal encoder
83
+ * Trans for pointing out $DEBUG dependencies
84
+ * Flameeyes for finding that Term::ANSIColor was obsolete
85
+ * matz and all Ruby gods and gurus
86
+ * The inventors of: the computer, the internet, the true color display, HTML &
87
+ CSS, VIM, Ruby, pizza, microwaves, guitars, scouting, programming, anime,
88
+ manga, coke and green ice tea.
89
+
90
+ Where would we be without all those people?
91
+
92
+ === Created using
93
+
94
+ * Ruby[http://ruby-lang.org/]
95
+ * Chihiro (my Sony VAIO laptop); Henrietta (my old MacBook);
96
+ Triella, born Rico (my new MacBook); as well as
97
+ Seras and Hikari (my PCs)
98
+ * RDE[http://homepage2.nifty.com/sakazuki/rde_e.html],
99
+ VIM[http://vim.org] and TextMate[http://macromates.com]
100
+ * Subversion[http://subversion.tigris.org/]
101
+ * Redmine[http://redmine.org/]
102
+ * Firefox[http://www.mozilla.org/products/firefox/],
103
+ Firebug[http://getfirebug.com/], Safari[http://www.apple.com/safari/], and
104
+ Thunderbird[http://www.mozilla.org/products/thunderbird/]
105
+ * RubyGems[http://docs.rubygems.org/] and Rake[http://rake.rubyforge.org/]
106
+ * TortoiseSVN[http://tortoisesvn.tigris.org/] using Apache via
107
+ XAMPP[http://www.apachefriends.org/en/xampp.html]
108
+ * RDoc (though I'm quite unsatisfied with it)
109
+ * Microsoft Windows (yes, I confess!) and MacOS X
110
+ * GNUWin32, MinGW and some other tools to make the shell under windows a bit
111
+ less useless
112
+ * Term::ANSIColor[http://term-ansicolor.rubyforge.org/]
113
+ * PLEAC[http://pleac.sourceforge.net/] code examples
114
+ * Github
115
+ * Travis CI (http://travis-ci.org/rubychan/github)
116
+
117
+ === Free
118
+
119
+ * As you can see, CodeRay was created under heavy use of *free* software.
120
+ * So CodeRay is also *free*.
121
+ * If you use CodeRay to create software, think about making this software
122
+ *free*, too.
123
+ * Thanks :)
@@ -0,0 +1,37 @@
1
+ require 'bundler/gem_tasks'
2
+
3
+ $:.unshift File.dirname(__FILE__) unless $:.include? '.'
4
+
5
+ ROOT = '.'
6
+ LIB_ROOT = File.join ROOT, 'lib'
7
+
8
+ task :default => :test
9
+
10
+ if File.directory? 'rake_tasks'
11
+
12
+ # load rake tasks from subfolder
13
+ for task_file in Dir['rake_tasks/*.rake'].sort
14
+ load task_file
15
+ end
16
+
17
+ else
18
+
19
+ # fallback tasks when rake_tasks folder is not present (eg. in the distribution package)
20
+ desc 'Run CodeRay tests (basic)'
21
+ task :test do
22
+ ruby './test/functional/suite.rb'
23
+ ruby './test/functional/for_redcloth.rb'
24
+ end
25
+
26
+ gem 'rdoc' if defined? gem
27
+ require 'rdoc/task'
28
+ desc 'Generate documentation for CodeRay'
29
+ Rake::RDocTask.new :doc do |rd|
30
+ rd.title = 'CodeRay Documentation'
31
+ rd.main = 'README_INDEX.rdoc'
32
+ rd.rdoc_files.add Dir['lib']
33
+ rd.rdoc_files.add rd.main
34
+ rd.rdoc_dir = 'doc'
35
+ end
36
+
37
+ end
@@ -0,0 +1,215 @@
1
+ #!/usr/bin/env ruby
2
+ require 'coderay'
3
+
4
+ $options, args = ARGV.partition { |arg| arg[/^-[hv]$|--\w+/] }
5
+ subcommand = args.first if /^\w/ === args.first
6
+ subcommand = nil if subcommand && File.exist?(subcommand)
7
+ args.delete subcommand
8
+
9
+ def option? *options
10
+ !($options & options).empty?
11
+ end
12
+
13
+ def tty?
14
+ $stdout.tty? || option?('--tty')
15
+ end
16
+
17
+ def version
18
+ puts <<-USAGE
19
+ CodeRay #{CodeRay::VERSION}
20
+ USAGE
21
+ end
22
+
23
+ def help
24
+ puts <<-HELP
25
+ This is CodeRay #{CodeRay::VERSION}, a syntax highlighting tool for selected languages.
26
+
27
+ usage:
28
+ coderay [-language] [input] [-format] [output]
29
+
30
+ defaults:
31
+ language detect from input file name or shebang; fall back to plain text
32
+ input STDIN
33
+ format detect from output file name or use terminal; fall back to HTML
34
+ output STDOUT
35
+
36
+ common:
37
+ coderay file.rb # highlight file to terminal
38
+ coderay file.rb > file.html # highlight file to HTML page
39
+ coderay file.rb -div > file.html # highlight file to HTML snippet
40
+
41
+ configure output:
42
+ coderay file.py output.json # output tokens as JSON
43
+ coderay file.py -loc # count lines of code in Python file
44
+
45
+ configure input:
46
+ coderay -python file # specify the input language
47
+ coderay -ruby # take input from STDIN
48
+
49
+ more:
50
+ coderay stylesheet [style] # print CSS stylesheet
51
+ HELP
52
+ end
53
+
54
+ def commands
55
+ puts <<-COMMANDS
56
+ general:
57
+ highlight code highlighting (default command, optional)
58
+ stylesheet print the CSS stylesheet with the given name (aliases: style, css)
59
+
60
+ about:
61
+ list [of] list all available plugins (or just the scanners|encoders|styles|filetypes)
62
+ commands print this list
63
+ help show some help
64
+ version print CodeRay version
65
+ COMMANDS
66
+ end
67
+
68
+ def print_list_of plugin_host
69
+ plugins = plugin_host.all_plugins.map do |plugin|
70
+ info = " #{plugin.plugin_id}: #{plugin.title}"
71
+
72
+ aliases = (plugin.aliases - [:default]).map { |key| "-#{key}" }.sort_by { |key| key.size }
73
+ if plugin.respond_to?(:file_extension) || !aliases.empty?
74
+ additional_info = []
75
+ additional_info << aliases.join(', ') unless aliases.empty?
76
+ info << " (#{additional_info.join('; ')})"
77
+ end
78
+
79
+ info << ' <-- default' if plugin.aliases.include? :default
80
+
81
+ info
82
+ end
83
+ puts plugins.sort
84
+ end
85
+
86
+ if option? '-v', '--version'
87
+ version
88
+ end
89
+
90
+ if option? '-h', '--help'
91
+ help
92
+ end
93
+
94
+ case subcommand
95
+ when 'highlight', nil
96
+ if ARGV.empty?
97
+ version
98
+ help
99
+ else
100
+ signature = args.map { |arg| arg[/^-/] ? '-' : 'f' }.join
101
+ names = args.map { |arg| arg.sub(/^-/, '') }
102
+ case signature
103
+ when /^$/
104
+ exit
105
+ when /^ff?$/
106
+ input_file, output_file, = *names
107
+ when /^f-f?$/
108
+ input_file, output_format, output_file, = *names
109
+ when /^-ff?$/
110
+ input_lang, input_file, output_file, = *names
111
+ when /^-f-f?$/
112
+ input_lang, input_file, output_format, output_file, = *names
113
+ when /^--?f?$/
114
+ input_lang, output_format, output_file, = *names
115
+ else
116
+ $stdout = $stderr
117
+ help
118
+ puts
119
+ puts "Unknown parameter order: #{args.join ' '}, expected: [-language] [input] [-format] [output]"
120
+ exit 1
121
+ end
122
+
123
+ if input_file
124
+ input_lang ||= CodeRay::FileType.fetch input_file, :text, true
125
+ end
126
+
127
+ if output_file
128
+ output_format ||= CodeRay::FileType[output_file] || :plain
129
+ else
130
+ output_format ||= :terminal
131
+ end
132
+
133
+ output_format = :page if output_format.to_s == 'html'
134
+
135
+ if input_file
136
+ input = File.read input_file
137
+ else
138
+ input = $stdin.read
139
+ end
140
+
141
+ begin
142
+ file =
143
+ if output_file
144
+ File.open output_file, 'w'
145
+ else
146
+ $stdout
147
+ end
148
+ CodeRay.encode(input, input_lang, output_format, :out => file)
149
+ file.puts
150
+ rescue CodeRay::PluginHost::PluginNotFound => boom
151
+ $stdout = $stderr
152
+ if boom.message[/CodeRay::(\w+)s could not load plugin :?(.*?): /]
153
+ puts "I don't know the #$1 \"#$2\"."
154
+ else
155
+ puts boom.message
156
+ end
157
+ # puts "I don't know this plugin: #{boom.message[/Could not load plugin (.*?): /, 1]}."
158
+ rescue CodeRay::Scanners::Scanner::ScanError
159
+ # this is sometimes raised by pagers; ignore
160
+ # FIXME: rescue Errno::EPIPE
161
+ ensure
162
+ file.close if output_file
163
+ end
164
+ end
165
+ when 'li', 'list'
166
+ arg = args.first && args.first.downcase
167
+ if [nil, 's', 'sc', 'scanner', 'scanners'].include? arg
168
+ puts 'input languages (Scanners):'
169
+ print_list_of CodeRay::Scanners
170
+ end
171
+
172
+ if [nil, 'e', 'en', 'enc', 'encoder', 'encoders'].include? arg
173
+ puts 'output formats (Encoders):'
174
+ print_list_of CodeRay::Encoders
175
+ end
176
+
177
+ if [nil, 'st', 'style', 'styles'].include? arg
178
+ puts 'CSS themes for HTML output (Styles):'
179
+ print_list_of CodeRay::Styles
180
+ end
181
+
182
+ if [nil, 'f', 'ft', 'file', 'filetype', 'filetypes'].include? arg
183
+ puts 'recognized file types:'
184
+
185
+ filetypes = Hash.new { |h, k| h[k] = [] }
186
+ CodeRay::FileType::TypeFromExt.inject filetypes do |types, (ext, type)|
187
+ types[type.to_s] << ".#{ext}"
188
+ types
189
+ end
190
+ CodeRay::FileType::TypeFromName.inject filetypes do |types, (name, type)|
191
+ types[type.to_s] << name
192
+ types
193
+ end
194
+
195
+ filetypes.sort.each do |type, exts|
196
+ puts " #{type}: #{exts.sort_by { |ext| ext.size }.join(', ')}"
197
+ end
198
+ end
199
+ when 'stylesheet', 'style', 'css'
200
+ puts CodeRay::Encoders[:html]::CSS.new(args.first || :default).stylesheet
201
+ when 'commands'
202
+ commands
203
+ when 'help'
204
+ help
205
+ else
206
+ $stdout = $stderr
207
+ help
208
+ puts
209
+ if subcommand[/\A\w+\z/]
210
+ puts "Unknown command: #{subcommand}"
211
+ else
212
+ puts "File not found: #{subcommand}"
213
+ end
214
+ exit 1
215
+ end
@@ -0,0 +1,81 @@
1
+ module CodeRay
2
+
3
+ # = Duo
4
+ #
5
+ # A Duo is a convenient way to use CodeRay. You just create a Duo,
6
+ # giving it a lang (language of the input code) and a format (desired
7
+ # output format), and call Duo#highlight with the code.
8
+ #
9
+ # Duo makes it easy to re-use both scanner and encoder for a repetitive
10
+ # task. It also provides a very easy interface syntax:
11
+ #
12
+ # require 'coderay'
13
+ # CodeRay::Duo[:python, :div].highlight 'import this'
14
+ #
15
+ # Until you want to do uncommon things with CodeRay, I recommend to use
16
+ # this method, since it takes care of everything.
17
+ class Duo
18
+
19
+ attr_accessor :lang, :format, :options
20
+
21
+ # Create a new Duo, holding a lang and a format to highlight code.
22
+ #
23
+ # simple:
24
+ # CodeRay::Duo[:ruby, :html].highlight 'bla 42'
25
+ #
26
+ # with options:
27
+ # CodeRay::Duo[:ruby, :html, :hint => :debug].highlight '????::??'
28
+ #
29
+ # alternative syntax without options:
30
+ # CodeRay::Duo[:ruby => :statistic].encode 'class << self; end'
31
+ #
32
+ # alternative syntax with options:
33
+ # CodeRay::Duo[{ :ruby => :statistic }, :do => :something].encode 'abc'
34
+ #
35
+ # The options are forwarded to scanner and encoder
36
+ # (see CodeRay.get_scanner_options).
37
+ def initialize lang = nil, format = nil, options = {}
38
+ if format.nil? && lang.is_a?(Hash) && lang.size == 1
39
+ @lang = lang.keys.first
40
+ @format = lang[@lang]
41
+ else
42
+ @lang = lang
43
+ @format = format
44
+ end
45
+ @options = options
46
+ end
47
+
48
+ class << self
49
+ # To allow calls like Duo[:ruby, :html].highlight.
50
+ alias [] new
51
+ end
52
+
53
+ # The scanner of the duo. Only created once.
54
+ def scanner
55
+ @scanner ||= CodeRay.scanner @lang, CodeRay.get_scanner_options(@options)
56
+ end
57
+
58
+ # The encoder of the duo. Only created once.
59
+ def encoder
60
+ @encoder ||= CodeRay.encoder @format, @options
61
+ end
62
+
63
+ # Tokenize and highlight the code using +scanner+ and +encoder+.
64
+ def encode code, options = {}
65
+ options = @options.merge options
66
+ encoder.encode(code, @lang, options)
67
+ end
68
+ alias highlight encode
69
+
70
+ # Allows to use Duo like a proc object:
71
+ #
72
+ # CodeRay::Duo[:python => :yaml].call(code)
73
+ #
74
+ # or, in Ruby 1.9 and later:
75
+ #
76
+ # CodeRay::Duo[:python => :yaml].(code)
77
+ alias call encode
78
+
79
+ end
80
+
81
+ end
@@ -0,0 +1,201 @@
1
+ module CodeRay
2
+
3
+ # This module holds the Encoder class and its subclasses.
4
+ # For example, the HTML encoder is named CodeRay::Encoders::HTML
5
+ # can be found in coderay/encoders/html.
6
+ #
7
+ # Encoders also provides methods and constants for the register
8
+ # mechanism and the [] method that returns the Encoder class
9
+ # belonging to the given format.
10
+ module Encoders
11
+
12
+ extend PluginHost
13
+ plugin_path File.dirname(__FILE__), 'encoders'
14
+
15
+ # = Encoder
16
+ #
17
+ # The Encoder base class. Together with Scanner and
18
+ # Tokens, it forms the highlighting triad.
19
+ #
20
+ # Encoder instances take a Tokens object and do something with it.
21
+ #
22
+ # The most common Encoder is surely the HTML encoder
23
+ # (CodeRay::Encoders::HTML). It highlights the code in a colorful
24
+ # html page.
25
+ # If you want the highlighted code in a div or a span instead,
26
+ # use its subclasses Div and Span.
27
+ class Encoder
28
+ extend Plugin
29
+ plugin_host Encoders
30
+
31
+ class << self
32
+
33
+ # If FILE_EXTENSION isn't defined, this method returns the
34
+ # downcase class name instead.
35
+ def const_missing sym
36
+ if sym == :FILE_EXTENSION
37
+ (defined?(@plugin_id) && @plugin_id || name[/\w+$/].downcase).to_s
38
+ else
39
+ super
40
+ end
41
+ end
42
+
43
+ # The default file extension for output file of this encoder class.
44
+ def file_extension
45
+ self::FILE_EXTENSION
46
+ end
47
+
48
+ end
49
+
50
+ # Subclasses are to store their default options in this constant.
51
+ DEFAULT_OPTIONS = { }
52
+
53
+ # The options you gave the Encoder at creating.
54
+ attr_accessor :options, :scanner
55
+
56
+ # Creates a new Encoder.
57
+ # +options+ is saved and used for all encode operations, as long
58
+ # as you don't overwrite it there by passing additional options.
59
+ #
60
+ # Encoder objects provide three encode methods:
61
+ # - encode simply takes a +code+ string and a +lang+
62
+ # - encode_tokens expects a +tokens+ object instead
63
+ #
64
+ # Each method has an optional +options+ parameter. These are
65
+ # added to the options you passed at creation.
66
+ def initialize options = {}
67
+ @options = self.class::DEFAULT_OPTIONS.merge options
68
+ @@CODERAY_TOKEN_INTERFACE_DEPRECATION_WARNING_GIVEN = false
69
+ end
70
+
71
+ # Encode a Tokens object.
72
+ def encode_tokens tokens, options = {}
73
+ options = @options.merge options
74
+ @scanner = tokens.scanner if tokens.respond_to? :scanner
75
+ setup options
76
+ compile tokens, options
77
+ finish options
78
+ end
79
+
80
+ # Encode the given +code+ using the Scanner for +lang+.
81
+ def encode code, lang, options = {}
82
+ options = @options.merge options
83
+ @scanner = Scanners[lang].new code, CodeRay.get_scanner_options(options).update(:tokens => self)
84
+ setup options
85
+ @scanner.tokenize
86
+ finish options
87
+ end
88
+
89
+ # You can use highlight instead of encode, if that seems
90
+ # more clear to you.
91
+ alias highlight encode
92
+
93
+ # The default file extension for this encoder.
94
+ def file_extension
95
+ self.class.file_extension
96
+ end
97
+
98
+ def << token
99
+ unless @@CODERAY_TOKEN_INTERFACE_DEPRECATION_WARNING_GIVEN
100
+ warn 'Using old Tokens#<< interface.'
101
+ @@CODERAY_TOKEN_INTERFACE_DEPRECATION_WARNING_GIVEN = true
102
+ end
103
+ self.token(*token)
104
+ end
105
+
106
+ # Called with +content+ and +kind+ of the currently scanned token.
107
+ # For simple scanners, it's enougth to implement this method.
108
+ #
109
+ # By default, it calls text_token, begin_group, end_group, begin_line,
110
+ # or end_line, depending on the +content+.
111
+ def token content, kind
112
+ case content
113
+ when String
114
+ text_token content, kind
115
+ when :begin_group
116
+ begin_group kind
117
+ when :end_group
118
+ end_group kind
119
+ when :begin_line
120
+ begin_line kind
121
+ when :end_line
122
+ end_line kind
123
+ else
124
+ raise ArgumentError, 'Unknown token content type: %p, kind = %p' % [content, kind]
125
+ end
126
+ end
127
+
128
+ # Called for each text token ([text, kind]), where text is a String.
129
+ def text_token text, kind
130
+ @out << text
131
+ end
132
+
133
+ # Starts a token group with the given +kind+.
134
+ def begin_group kind
135
+ end
136
+
137
+ # Ends a token group with the given +kind+.
138
+ def end_group kind
139
+ end
140
+
141
+ # Starts a new line token group with the given +kind+.
142
+ def begin_line kind
143
+ end
144
+
145
+ # Ends a new line token group with the given +kind+.
146
+ def end_line kind
147
+ end
148
+
149
+ protected
150
+
151
+ # Called with merged options before encoding starts.
152
+ # Sets @out to an empty string.
153
+ #
154
+ # See the HTML Encoder for an example of option caching.
155
+ def setup options
156
+ @out = get_output(options)
157
+ end
158
+
159
+ def get_output options
160
+ options[:out] || ''
161
+ end
162
+
163
+ # Append data.to_s to the output. Returns the argument.
164
+ def output data
165
+ @out << data.to_s
166
+ data
167
+ end
168
+
169
+ # Called with merged options after encoding starts.
170
+ # The return value is the result of encoding, typically @out.
171
+ def finish options
172
+ @out
173
+ end
174
+
175
+ # Do the encoding.
176
+ #
177
+ # The already created +tokens+ object must be used; it must be a
178
+ # Tokens object.
179
+ def compile tokens, options = {}
180
+ content = nil
181
+ for item in tokens
182
+ if item.is_a? Array
183
+ raise ArgumentError, 'Two-element array tokens are no longer supported.'
184
+ end
185
+ if content
186
+ token content, item
187
+ content = nil
188
+ else
189
+ content = item
190
+ end
191
+ end
192
+ raise 'odd number list for Tokens' if content
193
+ end
194
+
195
+ alias tokens compile
196
+ public :tokens
197
+
198
+ end
199
+
200
+ end
201
+ end