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
@@ -0,0 +1,490 @@
1
+ module RSpec
2
+ module Core
3
+ # Each ExampleGroup class and Example instance owns an instance of
4
+ # Metadata, which is Hash extended to support lazy evaluation of values
5
+ # associated with keys that may or may not be used by any example or group.
6
+ #
7
+ # In addition to metadata that is used internally, this also stores
8
+ # user-supplied metadata, e.g.
9
+ #
10
+ # describe Something, :type => :ui do
11
+ # it "does something", :slow => true do
12
+ # # ...
13
+ # end
14
+ # end
15
+ #
16
+ # `:type => :ui` is stored in the Metadata owned by the example group, and
17
+ # `:slow => true` is stored in the Metadata owned by the example. These can
18
+ # then be used to select which examples are run using the `--tag` option on
19
+ # the command line, or several methods on `Configuration` used to filter a
20
+ # run (e.g. `filter_run_including`, `filter_run_excluding`, etc).
21
+ #
22
+ # @see Example#metadata
23
+ # @see ExampleGroup.metadata
24
+ # @see FilterManager
25
+ # @see Configuration#filter_run_including
26
+ # @see Configuration#filter_run_excluding
27
+ module Metadata
28
+ # Matches strings either at the beginning of the input or prefixed with a
29
+ # whitespace, containing the current path, either postfixed with the
30
+ # separator, or at the end of the string. Match groups are the character
31
+ # before and the character after the string if any.
32
+ #
33
+ # http://rubular.com/r/fT0gmX6VJX
34
+ # http://rubular.com/r/duOrD4i3wb
35
+ # http://rubular.com/r/sbAMHFrOx1
36
+ def self.relative_path_regex
37
+ @relative_path_regex ||= /(\A|\s)#{File.expand_path('.')}(#{File::SEPARATOR}|\s|\Z)/
38
+ end
39
+
40
+ # @api private
41
+ #
42
+ # @param line [String] current code line
43
+ # @return [String] relative path to line
44
+ def self.relative_path(line)
45
+ line = line.sub(relative_path_regex, "\\1.\\2".freeze)
46
+ line = line.sub(/\A([^:]+:\d+)$/, '\\1'.freeze)
47
+ return nil if line == '-e:1'.freeze
48
+ line
49
+ rescue SecurityError
50
+ nil
51
+ end
52
+
53
+ # @private
54
+ # Iteratively walks up from the given metadata through all
55
+ # example group ancestors, yielding each metadata hash along the way.
56
+ def self.ascending(metadata)
57
+ yield metadata
58
+ return unless (group_metadata = metadata.fetch(:example_group) { metadata[:parent_example_group] })
59
+
60
+ loop do
61
+ yield group_metadata
62
+ break unless (group_metadata = group_metadata[:parent_example_group])
63
+ end
64
+ end
65
+
66
+ # @private
67
+ # Returns an enumerator that iteratively walks up the given metadata through all
68
+ # example group ancestors, yielding each metadata hash along the way.
69
+ def self.ascend(metadata)
70
+ enum_for(:ascending, metadata)
71
+ end
72
+
73
+ # @private
74
+ # Used internally to build a hash from an args array.
75
+ # Symbols are converted into hash keys with a value of `true`.
76
+ # This is done to support simple tagging using a symbol, rather
77
+ # than needing to do `:symbol => true`.
78
+ def self.build_hash_from(args, warn_about_example_group_filtering=false)
79
+ hash = args.last.is_a?(Hash) ? args.pop : {}
80
+
81
+ hash[args.pop] = true while args.last.is_a?(Symbol)
82
+
83
+ if warn_about_example_group_filtering && hash.key?(:example_group)
84
+ RSpec.deprecate("Filtering by an `:example_group` subhash",
85
+ :replacement => "the subhash to filter directly")
86
+ end
87
+
88
+ hash
89
+ end
90
+
91
+ # @private
92
+ def self.deep_hash_dup(object)
93
+ return object.dup if Array === object
94
+ return object unless Hash === object
95
+
96
+ object.inject(object.dup) do |duplicate, (key, value)|
97
+ duplicate[key] = deep_hash_dup(value)
98
+ duplicate
99
+ end
100
+ end
101
+
102
+ # @private
103
+ def self.id_from(metadata)
104
+ "#{metadata[:rerun_file_path]}[#{metadata[:scoped_id]}]"
105
+ end
106
+
107
+ # @private
108
+ # Used internally to populate metadata hashes with computed keys
109
+ # managed by RSpec.
110
+ class HashPopulator
111
+ attr_reader :metadata, :user_metadata, :description_args, :block
112
+
113
+ def initialize(metadata, user_metadata, index_provider, description_args, block)
114
+ @metadata = metadata
115
+ @user_metadata = user_metadata
116
+ @index_provider = index_provider
117
+ @description_args = description_args
118
+ @block = block
119
+ end
120
+
121
+ def populate
122
+ ensure_valid_user_keys
123
+
124
+ metadata[:execution_result] = Example::ExecutionResult.new
125
+ metadata[:block] = block
126
+ metadata[:description_args] = description_args
127
+ metadata[:description] = build_description_from(*metadata[:description_args])
128
+ metadata[:full_description] = full_description
129
+ metadata[:described_class] = described_class
130
+
131
+ populate_location_attributes
132
+ metadata.update(user_metadata)
133
+ RSpec.configuration.apply_derived_metadata_to(metadata)
134
+ end
135
+
136
+ private
137
+
138
+ def populate_location_attributes
139
+ backtrace = user_metadata.delete(:caller)
140
+
141
+ file_path, line_number = if backtrace
142
+ file_path_and_line_number_from(backtrace)
143
+ elsif block.respond_to?(:source_location)
144
+ block.source_location
145
+ else
146
+ file_path_and_line_number_from(caller)
147
+ end
148
+
149
+ relative_file_path = Metadata.relative_path(file_path)
150
+ metadata[:file_path] = relative_file_path
151
+ metadata[:line_number] = line_number.to_i
152
+ metadata[:location] = "#{relative_file_path}:#{line_number}"
153
+ metadata[:absolute_file_path] = File.expand_path(relative_file_path)
154
+ metadata[:rerun_file_path] ||= relative_file_path
155
+ metadata[:scoped_id] = build_scoped_id_for(relative_file_path)
156
+ end
157
+
158
+ def file_path_and_line_number_from(backtrace)
159
+ first_caller_from_outside_rspec = backtrace.find { |l| l !~ CallerFilter::LIB_REGEX }
160
+ first_caller_from_outside_rspec ||= backtrace.first
161
+ /(.+?):(\d+)(?:|:\d+)/.match(first_caller_from_outside_rspec).captures
162
+ end
163
+
164
+ def description_separator(parent_part, child_part)
165
+ if parent_part.is_a?(Module) && child_part =~ /^(#|::|\.)/
166
+ ''.freeze
167
+ else
168
+ ' '.freeze
169
+ end
170
+ end
171
+
172
+ def build_description_from(parent_description=nil, my_description=nil)
173
+ return parent_description.to_s unless my_description
174
+ separator = description_separator(parent_description, my_description)
175
+ (parent_description.to_s + separator) << my_description.to_s
176
+ end
177
+
178
+ def build_scoped_id_for(file_path)
179
+ index = @index_provider.call(file_path).to_s
180
+ parent_scoped_id = metadata.fetch(:scoped_id) { return index }
181
+ "#{parent_scoped_id}:#{index}"
182
+ end
183
+
184
+ def ensure_valid_user_keys
185
+ RESERVED_KEYS.each do |key|
186
+ next unless user_metadata.key?(key)
187
+ raise <<-EOM.gsub(/^\s+\|/, '')
188
+ |#{"*" * 50}
189
+ |:#{key} is not allowed
190
+ |
191
+ |RSpec reserves some hash keys for its own internal use,
192
+ |including :#{key}, which is used on:
193
+ |
194
+ | #{CallerFilter.first_non_rspec_line}.
195
+ |
196
+ |Here are all of RSpec's reserved hash keys:
197
+ |
198
+ | #{RESERVED_KEYS.join("\n ")}
199
+ |#{"*" * 50}
200
+ EOM
201
+ end
202
+ end
203
+ end
204
+
205
+ # @private
206
+ class ExampleHash < HashPopulator
207
+ def self.create(group_metadata, user_metadata, index_provider, description, block)
208
+ example_metadata = group_metadata.dup
209
+ group_metadata = Hash.new(&ExampleGroupHash.backwards_compatibility_default_proc do |hash|
210
+ hash[:parent_example_group]
211
+ end)
212
+ group_metadata.update(example_metadata)
213
+
214
+ example_metadata[:example_group] = group_metadata
215
+ example_metadata[:shared_group_inclusion_backtrace] = SharedExampleGroupInclusionStackFrame.current_backtrace
216
+ example_metadata.delete(:parent_example_group)
217
+
218
+ description_args = description.nil? ? [] : [description]
219
+ hash = new(example_metadata, user_metadata, index_provider, description_args, block)
220
+ hash.populate
221
+ hash.metadata
222
+ end
223
+
224
+ private
225
+
226
+ def described_class
227
+ metadata[:example_group][:described_class]
228
+ end
229
+
230
+ def full_description
231
+ build_description_from(
232
+ metadata[:example_group][:full_description],
233
+ metadata[:description]
234
+ )
235
+ end
236
+ end
237
+
238
+ # @private
239
+ class ExampleGroupHash < HashPopulator
240
+ def self.create(parent_group_metadata, user_metadata, example_group_index, *args, &block)
241
+ group_metadata = hash_with_backwards_compatibility_default_proc
242
+
243
+ if parent_group_metadata
244
+ group_metadata.update(parent_group_metadata)
245
+ group_metadata[:parent_example_group] = parent_group_metadata
246
+ end
247
+
248
+ hash = new(group_metadata, user_metadata, example_group_index, args, block)
249
+ hash.populate
250
+ hash.metadata
251
+ end
252
+
253
+ def self.hash_with_backwards_compatibility_default_proc
254
+ Hash.new(&backwards_compatibility_default_proc { |hash| hash })
255
+ end
256
+
257
+ def self.backwards_compatibility_default_proc(&example_group_selector)
258
+ Proc.new do |hash, key|
259
+ case key
260
+ when :example_group
261
+ # We commonly get here when rspec-core is applying a previously
262
+ # configured filter rule, such as when a gem configures:
263
+ #
264
+ # RSpec.configure do |c|
265
+ # c.include MyGemHelpers, :example_group => { :file_path => /spec\/my_gem_specs/ }
266
+ # end
267
+ #
268
+ # It's confusing for a user to get a deprecation at this point in
269
+ # the code, so instead we issue a deprecation from the config APIs
270
+ # that take a metadata hash, and MetadataFilter sets this thread
271
+ # local to silence the warning here since it would be so
272
+ # confusing.
273
+ unless RSpec::Support.thread_local_data[:silence_metadata_example_group_deprecations]
274
+ RSpec.deprecate("The `:example_group` key in an example group's metadata hash",
275
+ :replacement => "the example group's hash directly for the " \
276
+ "computed keys and `:parent_example_group` to access the parent " \
277
+ "example group metadata")
278
+ end
279
+
280
+ group_hash = example_group_selector.call(hash)
281
+ LegacyExampleGroupHash.new(group_hash) if group_hash
282
+ when :example_group_block
283
+ RSpec.deprecate("`metadata[:example_group_block]`",
284
+ :replacement => "`metadata[:block]`")
285
+ hash[:block]
286
+ when :describes
287
+ RSpec.deprecate("`metadata[:describes]`",
288
+ :replacement => "`metadata[:described_class]`")
289
+ hash[:described_class]
290
+ end
291
+ end
292
+ end
293
+
294
+ private
295
+
296
+ def described_class
297
+ candidate = metadata[:description_args].first
298
+ return candidate unless NilClass === candidate || String === candidate
299
+ parent_group = metadata[:parent_example_group]
300
+ parent_group && parent_group[:described_class]
301
+ end
302
+
303
+ def full_description
304
+ description = metadata[:description]
305
+ parent_example_group = metadata[:parent_example_group]
306
+ return description unless parent_example_group
307
+
308
+ parent_description = parent_example_group[:full_description]
309
+ separator = description_separator(parent_example_group[:description_args].last,
310
+ metadata[:description_args].first)
311
+
312
+ parent_description + separator + description
313
+ end
314
+ end
315
+
316
+ # @private
317
+ RESERVED_KEYS = [
318
+ :description,
319
+ :description_args,
320
+ :described_class,
321
+ :example_group,
322
+ :parent_example_group,
323
+ :execution_result,
324
+ :last_run_status,
325
+ :file_path,
326
+ :absolute_file_path,
327
+ :rerun_file_path,
328
+ :full_description,
329
+ :line_number,
330
+ :location,
331
+ :scoped_id,
332
+ :block,
333
+ :shared_group_inclusion_backtrace
334
+ ]
335
+ end
336
+
337
+ # Mixin that makes the including class imitate a hash for backwards
338
+ # compatibility. The including class should use `attr_accessor` to
339
+ # declare attributes.
340
+ # @private
341
+ module HashImitatable
342
+ def self.included(klass)
343
+ klass.extend ClassMethods
344
+ end
345
+
346
+ def to_h
347
+ hash = extra_hash_attributes.dup
348
+
349
+ self.class.hash_attribute_names.each do |name|
350
+ hash[name] = __send__(name)
351
+ end
352
+
353
+ hash
354
+ end
355
+
356
+ (Hash.public_instance_methods - Object.public_instance_methods).each do |method_name|
357
+ next if [:[], :[]=, :to_h].include?(method_name.to_sym)
358
+
359
+ define_method(method_name) do |*args, &block|
360
+ issue_deprecation(method_name, *args)
361
+
362
+ hash = hash_for_delegation
363
+ self.class.hash_attribute_names.each do |name|
364
+ hash.delete(name) unless instance_variable_defined?(:"@#{name}")
365
+ end
366
+
367
+ hash.__send__(method_name, *args, &block).tap do
368
+ # apply mutations back to the object
369
+ hash.each do |name, value|
370
+ if directly_supports_attribute?(name)
371
+ set_value(name, value)
372
+ else
373
+ extra_hash_attributes[name] = value
374
+ end
375
+ end
376
+ end
377
+ end
378
+ end
379
+
380
+ def [](key)
381
+ issue_deprecation(:[], key)
382
+
383
+ if directly_supports_attribute?(key)
384
+ get_value(key)
385
+ else
386
+ extra_hash_attributes[key]
387
+ end
388
+ end
389
+
390
+ def []=(key, value)
391
+ issue_deprecation(:[]=, key, value)
392
+
393
+ if directly_supports_attribute?(key)
394
+ set_value(key, value)
395
+ else
396
+ extra_hash_attributes[key] = value
397
+ end
398
+ end
399
+
400
+ private
401
+
402
+ def extra_hash_attributes
403
+ @extra_hash_attributes ||= {}
404
+ end
405
+
406
+ def directly_supports_attribute?(name)
407
+ self.class.hash_attribute_names.include?(name)
408
+ end
409
+
410
+ def get_value(name)
411
+ __send__(name)
412
+ end
413
+
414
+ def set_value(name, value)
415
+ __send__(:"#{name}=", value)
416
+ end
417
+
418
+ def hash_for_delegation
419
+ to_h
420
+ end
421
+
422
+ def issue_deprecation(_method_name, *_args)
423
+ # no-op by default: subclasses can override
424
+ end
425
+
426
+ # @private
427
+ module ClassMethods
428
+ def hash_attribute_names
429
+ @hash_attribute_names ||= []
430
+ end
431
+
432
+ def attr_accessor(*names)
433
+ hash_attribute_names.concat(names)
434
+ super
435
+ end
436
+ end
437
+ end
438
+
439
+ # @private
440
+ # Together with the example group metadata hash default block,
441
+ # provides backwards compatibility for the old `:example_group`
442
+ # key. In RSpec 2.x, the computed keys of a group's metadata
443
+ # were exposed from a nested subhash keyed by `[:example_group]`, and
444
+ # then the parent group's metadata was exposed by sub-subhash
445
+ # keyed by `[:example_group][:example_group]`.
446
+ #
447
+ # In RSpec 3, we reorganized this to that the computed keys are
448
+ # exposed directly of the group metadata hash (no nesting), and
449
+ # `:parent_example_group` returns the parent group's metadata.
450
+ #
451
+ # Maintaining backwards compatibility was difficult: we wanted
452
+ # `:example_group` to return an object that:
453
+ #
454
+ # * Exposes the top-level metadata keys that used to be nested
455
+ # under `:example_group`.
456
+ # * Supports mutation (rspec-rails, for example, assigns
457
+ # `metadata[:example_group][:described_class]` when you use
458
+ # anonymous controller specs) such that changes are written
459
+ # back to the top-level metadata hash.
460
+ # * Exposes the parent group metadata as
461
+ # `[:example_group][:example_group]`.
462
+ class LegacyExampleGroupHash
463
+ include HashImitatable
464
+
465
+ def initialize(metadata)
466
+ @metadata = metadata
467
+ parent_group_metadata = metadata.fetch(:parent_example_group) { {} }[:example_group]
468
+ self[:example_group] = parent_group_metadata if parent_group_metadata
469
+ end
470
+
471
+ def to_h
472
+ super.merge(@metadata)
473
+ end
474
+
475
+ private
476
+
477
+ def directly_supports_attribute?(name)
478
+ name != :example_group
479
+ end
480
+
481
+ def get_value(name)
482
+ @metadata[name]
483
+ end
484
+
485
+ def set_value(name, value)
486
+ @metadata[name] = value
487
+ end
488
+ end
489
+ end
490
+ end