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.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +14 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +480 -0
- data/Rakefile +8 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/geminfo.gemspec +32 -0
- data/lib/geminfo/version.rb +3 -0
- data/lib/geminfo.rb +374 -0
- data/path/bin/_guard-core +23 -0
- data/path/bin/_guard-core.bat +6 -0
- data/path/bin/coderay +23 -0
- data/path/bin/coderay.bat +6 -0
- data/path/bin/guard +23 -0
- data/path/bin/guard.bat +6 -0
- data/path/bin/htmldiff +25 -0
- data/path/bin/htmldiff.bat +6 -0
- data/path/bin/ldiff +25 -0
- data/path/bin/ldiff.bat +6 -0
- data/path/bin/listen +23 -0
- data/path/bin/listen.bat +6 -0
- data/path/bin/pry +23 -0
- data/path/bin/pry.bat +6 -0
- data/path/bin/rspec +23 -0
- data/path/bin/rspec.bat +6 -0
- data/path/bin/thor +23 -0
- data/path/bin/thor.bat +6 -0
- data/path/cache/coderay-1.1.0.gem +0 -0
- data/path/cache/diff-lcs-1.2.5.gem +0 -0
- data/path/cache/ffi-1.9.10-x86-mingw32.gem +0 -0
- data/path/cache/formatador-0.2.5.gem +0 -0
- data/path/cache/guard-2.13.0.gem +0 -0
- data/path/cache/guard-compat-1.2.1.gem +0 -0
- data/path/cache/guard-rspec-4.6.4.gem +0 -0
- data/path/cache/listen-3.0.3.gem +0 -0
- data/path/cache/lumberjack-1.0.9.gem +0 -0
- data/path/cache/method_source-0.8.2.gem +0 -0
- data/path/cache/nenv-0.2.0.gem +0 -0
- data/path/cache/notiffany-0.0.7.gem +0 -0
- data/path/cache/pry-0.10.1-i386-mingw32.gem +0 -0
- data/path/cache/pry-0.10.1-x86-mingw32.gem +0 -0
- data/path/cache/rb-fsevent-0.9.5.gem +0 -0
- data/path/cache/rb-inotify-0.9.5.gem +0 -0
- data/path/cache/rspec-3.3.0.gem +0 -0
- data/path/cache/rspec-core-3.3.2.gem +0 -0
- data/path/cache/rspec-expectations-3.3.1.gem +0 -0
- data/path/cache/rspec-mocks-3.3.2.gem +0 -0
- data/path/cache/rspec-support-3.3.0.gem +0 -0
- data/path/cache/shellany-0.0.1.gem +0 -0
- data/path/cache/slop-3.6.0.gem +0 -0
- data/path/cache/thor-0.19.1.gem +0 -0
- data/path/cache/win32console-1.3.2-x86-mingw32.gem +0 -0
- data/path/gems/coderay-1.1.0/README_INDEX.rdoc +123 -0
- data/path/gems/coderay-1.1.0/Rakefile +37 -0
- data/path/gems/coderay-1.1.0/bin/coderay +215 -0
- data/path/gems/coderay-1.1.0/lib/coderay/duo.rb +81 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoder.rb +201 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/_map.rb +17 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/comment_filter.rb +25 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/count.rb +39 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/debug.rb +49 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/debug_lint.rb +63 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/div.rb +23 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/filter.rb +58 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/html/css.rb +65 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/html/numbering.rb +108 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/html/output.rb +166 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/html.rb +332 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/json.rb +83 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/lines_of_code.rb +45 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/lint.rb +59 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/null.rb +18 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/page.rb +24 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/span.rb +23 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/statistic.rb +95 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/terminal.rb +195 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/text.rb +46 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/token_kind_filter.rb +111 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/xml.rb +72 -0
- data/path/gems/coderay-1.1.0/lib/coderay/encoders/yaml.rb +50 -0
- data/path/gems/coderay-1.1.0/lib/coderay/for_redcloth.rb +95 -0
- data/path/gems/coderay-1.1.0/lib/coderay/helpers/file_type.rb +151 -0
- data/path/gems/coderay-1.1.0/lib/coderay/helpers/plugin.rb +274 -0
- data/path/gems/coderay-1.1.0/lib/coderay/helpers/word_list.rb +72 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanner.rb +355 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/_map.rb +24 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/c.rb +189 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/clojure.rb +217 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/cpp.rb +215 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/css.rb +196 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/debug.rb +75 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/delphi.rb +144 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/diff.rb +221 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/erb.rb +81 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/go.rb +208 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/groovy.rb +268 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/haml.rb +168 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/html.rb +275 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/java/builtin_types.rb +421 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/java.rb +174 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/java_script.rb +237 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/json.rb +98 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/lua.rb +280 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/php.rb +527 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/python.rb +287 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/raydebug.rb +75 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/ruby/patterns.rb +178 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/ruby/string_state.rb +71 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/ruby.rb +470 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/sass.rb +232 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/sql.rb +177 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/taskpaper.rb +36 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/text.rb +26 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/xml.rb +17 -0
- data/path/gems/coderay-1.1.0/lib/coderay/scanners/yaml.rb +140 -0
- data/path/gems/coderay-1.1.0/lib/coderay/style.rb +23 -0
- data/path/gems/coderay-1.1.0/lib/coderay/styles/_map.rb +7 -0
- data/path/gems/coderay-1.1.0/lib/coderay/styles/alpha.rb +152 -0
- data/path/gems/coderay-1.1.0/lib/coderay/token_kinds.rb +85 -0
- data/path/gems/coderay-1.1.0/lib/coderay/tokens.rb +161 -0
- data/path/gems/coderay-1.1.0/lib/coderay/tokens_proxy.rb +55 -0
- data/path/gems/coderay-1.1.0/lib/coderay/version.rb +3 -0
- data/path/gems/coderay-1.1.0/lib/coderay.rb +284 -0
- data/path/gems/coderay-1.1.0/test/functional/basic.rb +318 -0
- data/path/gems/coderay-1.1.0/test/functional/examples.rb +129 -0
- data/path/gems/coderay-1.1.0/test/functional/for_redcloth.rb +78 -0
- data/path/gems/coderay-1.1.0/test/functional/suite.rb +15 -0
- data/path/gems/diff-lcs-1.2.5/.autotest +3 -0
- data/path/gems/diff-lcs-1.2.5/.gemtest +0 -0
- data/path/gems/diff-lcs-1.2.5/.hoerc +2 -0
- data/path/gems/diff-lcs-1.2.5/.rspec +2 -0
- data/path/gems/diff-lcs-1.2.5/.travis.yml +22 -0
- data/path/gems/diff-lcs-1.2.5/Contributing.rdoc +64 -0
- data/path/gems/diff-lcs-1.2.5/Gemfile +20 -0
- data/path/gems/diff-lcs-1.2.5/History.rdoc +152 -0
- data/path/gems/diff-lcs-1.2.5/License.rdoc +39 -0
- data/path/gems/diff-lcs-1.2.5/Manifest.txt +38 -0
- data/path/gems/diff-lcs-1.2.5/README.rdoc +85 -0
- data/path/gems/diff-lcs-1.2.5/Rakefile +41 -0
- data/path/gems/diff-lcs-1.2.5/autotest/discover.rb +1 -0
- data/path/gems/diff-lcs-1.2.5/bin/htmldiff +32 -0
- data/path/gems/diff-lcs-1.2.5/bin/ldiff +6 -0
- data/path/gems/diff-lcs-1.2.5/docs/COPYING.txt +339 -0
- data/path/gems/diff-lcs-1.2.5/docs/artistic.txt +127 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/array.rb +7 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/block.rb +37 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/callbacks.rb +322 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/change.rb +177 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/htmldiff.rb +149 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/hunk.rb +276 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/internals.rb +301 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/ldiff.rb +195 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/string.rb +5 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs.rb +805 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff-lcs.rb +3 -0
- data/path/gems/diff-lcs-1.2.5/spec/change_spec.rb +65 -0
- data/path/gems/diff-lcs-1.2.5/spec/diff_spec.rb +47 -0
- data/path/gems/diff-lcs-1.2.5/spec/hunk_spec.rb +72 -0
- data/path/gems/diff-lcs-1.2.5/spec/issues_spec.rb +24 -0
- data/path/gems/diff-lcs-1.2.5/spec/lcs_spec.rb +54 -0
- data/path/gems/diff-lcs-1.2.5/spec/patch_spec.rb +414 -0
- data/path/gems/diff-lcs-1.2.5/spec/sdiff_spec.rb +214 -0
- data/path/gems/diff-lcs-1.2.5/spec/spec_helper.rb +290 -0
- data/path/gems/diff-lcs-1.2.5/spec/traverse_balanced_spec.rb +310 -0
- data/path/gems/diff-lcs-1.2.5/spec/traverse_sequences_spec.rb +139 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/COPYING +49 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/LICENSE +24 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/README.md +109 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/Rakefile +210 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/AbstractMemory.c +1032 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/AbstractMemory.h +175 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/ArrayType.c +162 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/ArrayType.h +59 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Buffer.c +365 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Call.c +530 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Call.h +93 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/ClosurePool.c +283 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/ClosurePool.h +57 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/DataConverter.c +91 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/DynamicLibrary.c +337 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/DynamicLibrary.h +98 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Function.c +1000 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Function.h +87 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/FunctionInfo.c +271 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/LastError.c +184 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/LastError.h +47 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/LongDouble.c +63 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/LongDouble.h +51 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/MappedType.c +168 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/MappedType.h +59 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/MemoryPointer.c +197 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/MemoryPointer.h +53 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/MethodHandle.c +360 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/MethodHandle.h +55 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Platform.c +121 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Platform.h +45 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Pointer.c +508 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Pointer.h +63 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Struct.c +829 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Struct.h +106 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/StructByReference.c +190 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/StructByReference.h +50 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/StructByValue.c +150 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/StructByValue.h +55 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/StructLayout.c +698 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Thread.c +352 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Thread.h +95 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Type.c +397 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Type.h +62 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Types.c +139 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Types.h +89 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/Variadic.c +280 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/compat.h +83 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/extconf.rb +65 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/ffi.c +98 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/ChangeLog +4600 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/ChangeLog.libffi +584 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/ChangeLog.libgcj +40 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/ChangeLog.v1 +764 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/LICENSE +21 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/Makefile.am +196 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/Makefile.in +1820 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/Makefile.vc +141 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/Makefile.vc64 +141 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/README +342 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/acinclude.m4 +92 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/aclocal.m4 +1873 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/build-ios.sh +67 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/compile +143 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/config.guess +1501 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/config.sub +1705 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/configure +17191 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/configure.ac +496 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/configure.host +11 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/depcomp +630 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/doc/libffi.info +593 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/doc/libffi.texi +600 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/doc/stamp-vti +4 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/doc/version.texi +4 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/fficonfig.h.in +199 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/fficonfig.hw +57 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/include/Makefile.am +9 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/include/Makefile.in +487 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/include/ffi.h.in +427 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/include/ffi.h.vc +427 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/include/ffi.h.vc64 +427 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/include/ffi_common.h +126 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/install-sh +520 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/libffi.pc.in +10 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/libtool-version +29 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/ltmain.sh +9636 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +176 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +195 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ax_check_compiler_flags.m4 +76 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +63 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ax_configure_args.m4 +70 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +300 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +215 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +79 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/libtool.m4 +7831 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ltoptions.m4 +369 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ltsugar.m4 +123 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/ltversion.m4 +23 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/m4/lt~obsolete.m4 +98 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/man/Makefile.am +8 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/man/Makefile.in +466 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/man/ffi.3 +31 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/man/ffi_call.3 +103 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/man/ffi_prep_cif.3 +66 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/mdate-sh +201 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/missing +376 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/msvcc.sh +197 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/alpha/ffi.c +284 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/alpha/ffitarget.h +48 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/alpha/osf.S +387 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/arm/ffi.c +728 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/arm/ffitarget.h +65 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/arm/gentramp.sh +118 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/arm/sysv.S +497 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/arm/trampoline.S +4450 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/avr32/ffi.c +423 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/avr32/ffitarget.h +50 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/avr32/sysv.S +208 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/closures.c +615 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/cris/ffi.c +383 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/cris/ffitarget.h +51 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/cris/sysv.S +215 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/debug.c +59 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/dlmalloc.c +5161 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/frv/eabi.S +128 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/frv/ffi.c +292 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/frv/ffitarget.h +57 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/ia64/ffi.c +582 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/ia64/ffitarget.h +50 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/ia64/ia64_flags.h +40 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/ia64/unix.S +560 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/java_raw_api.c +356 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/m32r/ffi.c +232 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/m32r/ffitarget.h +48 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/m32r/sysv.S +121 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/m68k/ffi.c +288 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/m68k/ffitarget.h +49 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/m68k/sysv.S +270 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/mips/ffi.c +1036 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/mips/ffitarget.h +242 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/mips/n32.S +591 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/mips/o32.S +381 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/moxie/eabi.S +128 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/moxie/ffi.c +276 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/pa/ffi.c +719 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/pa/ffitarget.h +78 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/pa/hpux32.S +368 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/pa/linux.S +357 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/aix.S +328 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/aix_closure.S +445 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/darwin.S +383 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +575 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/ffi.c +1448 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +1359 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/ffitarget.h +139 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/linux64.S +187 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +236 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +327 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/powerpc/sysv.S +219 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/prep_cif.c +177 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/raw_api.c +254 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/s390/ffi.c +780 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/s390/ffitarget.h +62 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/s390/sysv.S +434 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sh/ffi.c +716 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sh/ffitarget.h +49 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sh/sysv.S +850 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sh64/ffi.c +468 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sh64/ffitarget.h +53 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sh64/sysv.S +539 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sparc/ffi.c +669 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sparc/ffitarget.h +68 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sparc/v8.S +313 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/sparc/v9.S +307 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/types.c +77 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/darwin.S +444 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/darwin64.S +416 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/ffi.c +644 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/ffi64.c +635 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/ffitarget.h +121 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/freebsd.S +458 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/sysv.S +468 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/unix64.S +426 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/win32.S +1065 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/src/x86/win64.S +468 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/Makefile.am +80 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/Makefile.in +500 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +300 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/lib/libffi.exp +350 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +263 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +45 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +32 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +89 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +81 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +81 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +82 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +89 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +92 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +90 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c +95 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/closure_stdcall.c +64 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +94 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +95 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +96 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +102 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +89 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +91 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +93 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +113 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +90 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +95 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +90 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +90 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +98 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +90 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +109 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +98 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +124 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +113 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +99 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +117 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +97 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +88 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +90 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +91 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +93 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +91 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +92 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +134 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +117 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +95 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +91 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +91 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +92 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +91 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +91 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +93 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +66 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +43 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +60 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +42 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +105 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +60 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +74 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +74 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +86 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +91 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +74 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +86 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +74 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +140 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +44 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +42 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +42 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +42 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +43 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +47 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +43 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +36 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +26 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +153 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/float.c +59 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +58 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +58 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +72 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +62 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +342 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/many.c +69 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +63 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +53 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +152 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +161 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +133 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +110 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +111 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +111 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +112 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +131 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +111 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +131 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +131 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +90 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +59 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +114 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +35 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +43 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +42 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +35 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +36 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +49 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +42 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +34 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +41 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +43 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +36 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +38 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +38 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +38 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +145 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +148 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +124 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +125 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +44 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +44 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +65 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +67 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +59 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +63 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +65 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +64 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +74 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +80 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +67 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +70 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +96 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.special/special.exp +35 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest.cc +124 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest_ffi_call.cc +53 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi/texinfo.tex +7210 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi.bsd.mk +34 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi.darwin.mk +95 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi.gnu.mk +31 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi.mk +13 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi.vc.mk +26 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/libffi.vc64.mk +26 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/rbffi.h +57 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/rbffi_endian.h +59 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/win32/stdbool.h +8 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ext/ffi_c/win32/stdint.h +201 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/ffi.gemspec +23 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/gen/Rakefile +30 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/1.8/ffi_c.so +0 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/1.9/ffi_c.so +0 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/2.0/ffi_c.so +0 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/2.1/ffi_c.so +0 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/2.2/ffi_c.so +0 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/autopointer.rb +194 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/buffer.rb +4 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/callback.rb +4 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/enum.rb +174 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/errno.rb +43 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/ffi.rb +44 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/io.rb +62 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/library.rb +524 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/managedstruct.rb +84 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/memorypointer.rb +1 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/aarch64-linux/types.conf +104 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/arm-linux/types.conf +104 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/i386-cygwin/types.conf +3 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/i386-darwin/types.conf +100 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/i386-freebsd/types.conf +152 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/i386-gnu/types.conf +107 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/i386-linux/types.conf +103 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/i386-netbsd/types.conf +126 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/i386-openbsd/types.conf +128 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/i386-solaris/types.conf +122 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/i386-windows/types.conf +105 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/ia64-linux/types.conf +104 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/mips-linux/types.conf +102 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/mips64el-linux/types.conf +104 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/mipsel-linux/types.conf +102 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/powerpc-aix/types.conf +180 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/powerpc-linux/types.conf +100 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/s390-linux/types.conf +102 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/s390x-linux/types.conf +102 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/sparc-linux/types.conf +102 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/sparc-solaris/types.conf +128 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/x86_64-darwin/types.conf +126 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/x86_64-linux/types.conf +102 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/x86_64-netbsd/types.conf +128 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/x86_64-openbsd/types.conf +128 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform/x86_64-windows/types.conf +27 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/platform.rb +159 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/pointer.rb +134 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/struct.rb +373 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/struct_layout_builder.rb +227 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/tools/const_generator.rb +229 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/tools/generator.rb +60 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/tools/generator_task.rb +36 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/tools/struct_generator.rb +194 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/tools/types_generator.rb +135 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/types.rb +190 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/union.rb +43 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/variadic.rb +78 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi/version.rb +4 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/lib/ffi.rb +20 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/libtest/Benchmark.c +52 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/libtest/BoolTest.c +34 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/libtest/BufferTest.c +31 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/libtest/ClosureTest.c +205 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/libtest/EnumTest.c +51 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/libtest/FunctionTest.c +70 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/libtest/GNUmakefile +149 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/libtest/GlobalVariable.c +62 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/libtest/LastErrorTest.c +21 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/libtest/NumberTest.c +132 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/libtest/PointerTest.c +63 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/libtest/ReferenceTest.c +23 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/libtest/StringTest.c +34 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/libtest/StructTest.c +243 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/libtest/UnionTest.c +43 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/libtest/VariadicTest.c +62 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/LICENSE.SPECS +22 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/async_callback_spec.rb +35 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/bool_spec.rb +32 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/buffer_spec.rb +279 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/callback_spec.rb +773 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/custom_param_type.rb +37 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/custom_type_spec.rb +74 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/dup_spec.rb +52 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/enum_spec.rb +423 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/errno_spec.rb +20 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/ffi_spec.rb +28 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/Benchmark.c +52 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/BoolTest.c +34 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/BufferTest.c +31 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/ClosureTest.c +190 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/EnumTest.c +51 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/FunctionTest.c +58 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/GNUmakefile +149 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/GlobalVariable.c +62 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/LastErrorTest.c +21 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/NumberTest.c +132 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/PointerTest.c +63 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/ReferenceTest.c +23 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/StringTest.c +34 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/StructTest.c +243 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/UnionTest.c +43 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/VariadicTest.c +99 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/fixtures/classes.rb +438 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/function_spec.rb +92 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/io_spec.rb +16 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/library_spec.rb +276 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/long_double.rb +30 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/managed_struct_spec.rb +68 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/memorypointer_spec.rb +78 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/number_spec.rb +247 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/platform_spec.rb +114 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/pointer_spec.rb +278 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/rbx/attach_function_spec.rb +33 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/rbx/memory_pointer_spec.rb +130 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/rbx/spec_helper.rb +6 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/rbx/struct_spec.rb +18 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/spec_helper.rb +93 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/string_spec.rb +118 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/strptr_spec.rb +50 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/struct_by_ref_spec.rb +43 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/struct_callback_spec.rb +69 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/struct_initialize_spec.rb +35 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/struct_packed_spec.rb +50 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/struct_spec.rb +886 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/typedef_spec.rb +91 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/union_spec.rb +67 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/ffi/variadic_spec.rb +113 -0
- data/path/gems/ffi-1.9.10-x86-mingw32/spec/spec.opts +4 -0
- data/path/gems/formatador-0.2.5/CONTRIBUTING.md +18 -0
- data/path/gems/formatador-0.2.5/CONTRIBUTORS.md +16 -0
- data/path/gems/formatador-0.2.5/Gemfile +3 -0
- data/path/gems/formatador-0.2.5/LICENSE.md +20 -0
- data/path/gems/formatador-0.2.5/README.rdoc +117 -0
- data/path/gems/formatador-0.2.5/Rakefile +143 -0
- data/path/gems/formatador-0.2.5/changelog.txt +27 -0
- data/path/gems/formatador-0.2.5/formatador.gemspec +83 -0
- data/path/gems/formatador-0.2.5/lib/formatador/progressbar.rb +91 -0
- data/path/gems/formatador-0.2.5/lib/formatador/table.rb +98 -0
- data/path/gems/formatador-0.2.5/lib/formatador.rb +131 -0
- data/path/gems/formatador-0.2.5/tests/basic_tests.rb +29 -0
- data/path/gems/formatador-0.2.5/tests/table_tests.rb +96 -0
- data/path/gems/formatador-0.2.5/tests/tests_helper.rb +15 -0
- data/path/gems/guard-2.13.0/CHANGELOG.md +1 -0
- data/path/gems/guard-2.13.0/LICENSE +22 -0
- data/path/gems/guard-2.13.0/README.md +182 -0
- data/path/gems/guard-2.13.0/bin/_guard-core +11 -0
- data/path/gems/guard-2.13.0/bin/guard +115 -0
- data/path/gems/guard-2.13.0/images/failed.png +0 -0
- data/path/gems/guard-2.13.0/images/pending.png +0 -0
- data/path/gems/guard-2.13.0/images/success.png +0 -0
- data/path/gems/guard-2.13.0/lib/guard/aruba_adapter.rb +59 -0
- data/path/gems/guard-2.13.0/lib/guard/cli/environments/bundler.rb +22 -0
- data/path/gems/guard-2.13.0/lib/guard/cli/environments/evaluate_only.rb +35 -0
- data/path/gems/guard-2.13.0/lib/guard/cli/environments/valid.rb +63 -0
- data/path/gems/guard-2.13.0/lib/guard/cli.rb +200 -0
- data/path/gems/guard-2.13.0/lib/guard/commander.rb +103 -0
- data/path/gems/guard-2.13.0/lib/guard/commands/all.rb +37 -0
- data/path/gems/guard-2.13.0/lib/guard/commands/change.rb +31 -0
- data/path/gems/guard-2.13.0/lib/guard/commands/notification.rb +26 -0
- data/path/gems/guard-2.13.0/lib/guard/commands/pause.rb +29 -0
- data/path/gems/guard-2.13.0/lib/guard/commands/reload.rb +36 -0
- data/path/gems/guard-2.13.0/lib/guard/commands/scope.rb +38 -0
- data/path/gems/guard-2.13.0/lib/guard/commands/show.rb +24 -0
- data/path/gems/guard-2.13.0/lib/guard/config.rb +18 -0
- data/path/gems/guard-2.13.0/lib/guard/deprecated/dsl.rb +45 -0
- data/path/gems/guard-2.13.0/lib/guard/deprecated/evaluator.rb +39 -0
- data/path/gems/guard-2.13.0/lib/guard/deprecated/guard.rb +334 -0
- data/path/gems/guard-2.13.0/lib/guard/deprecated/guardfile.rb +84 -0
- data/path/gems/guard-2.13.0/lib/guard/deprecated/watcher.rb +27 -0
- data/path/gems/guard-2.13.0/lib/guard/dsl.rb +437 -0
- data/path/gems/guard-2.13.0/lib/guard/dsl_describer.rb +160 -0
- data/path/gems/guard-2.13.0/lib/guard/dsl_reader.rb +51 -0
- data/path/gems/guard-2.13.0/lib/guard/group.rb +64 -0
- data/path/gems/guard-2.13.0/lib/guard/guardfile/evaluator.rb +226 -0
- data/path/gems/guard-2.13.0/lib/guard/guardfile/generator.rb +115 -0
- data/path/gems/guard-2.13.0/lib/guard/guardfile.rb +37 -0
- data/path/gems/guard-2.13.0/lib/guard/interactor.rb +62 -0
- data/path/gems/guard-2.13.0/lib/guard/internals/debugging.rb +67 -0
- data/path/gems/guard-2.13.0/lib/guard/internals/groups.rb +40 -0
- data/path/gems/guard-2.13.0/lib/guard/internals/helpers.rb +13 -0
- data/path/gems/guard-2.13.0/lib/guard/internals/plugins.rb +53 -0
- data/path/gems/guard-2.13.0/lib/guard/internals/queue.rb +50 -0
- data/path/gems/guard-2.13.0/lib/guard/internals/scope.rb +121 -0
- data/path/gems/guard-2.13.0/lib/guard/internals/session.rb +182 -0
- data/path/gems/guard-2.13.0/lib/guard/internals/state.rb +25 -0
- data/path/gems/guard-2.13.0/lib/guard/internals/tracing.rb +33 -0
- data/path/gems/guard-2.13.0/lib/guard/internals/traps.rb +10 -0
- data/path/gems/guard-2.13.0/lib/guard/jobs/base.rb +21 -0
- data/path/gems/guard-2.13.0/lib/guard/jobs/pry_wrapper.rb +293 -0
- data/path/gems/guard-2.13.0/lib/guard/jobs/sleep.rb +26 -0
- data/path/gems/guard-2.13.0/lib/guard/notifier.rb +71 -0
- data/path/gems/guard-2.13.0/lib/guard/options.rb +17 -0
- data/path/gems/guard-2.13.0/lib/guard/plugin.rb +303 -0
- data/path/gems/guard-2.13.0/lib/guard/plugin_util.rb +188 -0
- data/path/gems/guard-2.13.0/lib/guard/rake_task.rb +42 -0
- data/path/gems/guard-2.13.0/lib/guard/runner.rb +126 -0
- data/path/gems/guard-2.13.0/lib/guard/templates/Guardfile +16 -0
- data/path/gems/guard-2.13.0/lib/guard/terminal.rb +13 -0
- data/path/gems/guard-2.13.0/lib/guard/ui/colors.rb +56 -0
- data/path/gems/guard-2.13.0/lib/guard/ui.rb +268 -0
- data/path/gems/guard-2.13.0/lib/guard/version.rb +3 -0
- data/path/gems/guard-2.13.0/lib/guard/watcher.rb +113 -0
- data/path/gems/guard-2.13.0/lib/guard.rb +172 -0
- data/path/gems/guard-2.13.0/man/guard.1 +108 -0
- data/path/gems/guard-2.13.0/man/guard.1.html +196 -0
- data/path/gems/guard-compat-1.2.1/.gitignore +14 -0
- data/path/gems/guard-compat-1.2.1/.rspec +3 -0
- data/path/gems/guard-compat-1.2.1/.rubocop.yml +6 -0
- data/path/gems/guard-compat-1.2.1/.rubocop_todo.yml +10 -0
- data/path/gems/guard-compat-1.2.1/Gemfile +9 -0
- data/path/gems/guard-compat-1.2.1/LICENSE.txt +22 -0
- data/path/gems/guard-compat-1.2.1/README.md +80 -0
- data/path/gems/guard-compat-1.2.1/Rakefile +10 -0
- data/path/gems/guard-compat-1.2.1/guard-compat.gemspec +23 -0
- data/path/gems/guard-compat-1.2.1/lib/guard/compat/example.rb +34 -0
- data/path/gems/guard-compat-1.2.1/lib/guard/compat/plugin.rb +124 -0
- data/path/gems/guard-compat-1.2.1/lib/guard/compat/test/helper.rb +36 -0
- data/path/gems/guard-compat-1.2.1/lib/guard/compat/test/template.rb +68 -0
- data/path/gems/guard-compat-1.2.1/lib/guard/compat/version.rb +5 -0
- data/path/gems/guard-compat-1.2.1/lib/guard/compat.rb +7 -0
- data/path/gems/guard-compat-1.2.1/spec/guard/compat/example_spec.rb +53 -0
- data/path/gems/guard-compat-1.2.1/spec/guard/compat/example_template_spec.rb +30 -0
- data/path/gems/guard-compat-1.2.1/spec/guard/compat/no_guard_spec.rb +63 -0
- data/path/gems/guard-compat-1.2.1/spec/spec_helper.rb +73 -0
- data/path/gems/guard-rspec-4.6.4/.gitignore +10 -0
- data/path/gems/guard-rspec-4.6.4/.hound.yml +262 -0
- data/path/gems/guard-rspec-4.6.4/.rspec +2 -0
- data/path/gems/guard-rspec-4.6.4/.rubocop.yml +2 -0
- data/path/gems/guard-rspec-4.6.4/.rubocop_todo.yml +6 -0
- data/path/gems/guard-rspec-4.6.4/.travis.yml +13 -0
- data/path/gems/guard-rspec-4.6.4/CONTRIBUTING.md +38 -0
- data/path/gems/guard-rspec-4.6.4/Gemfile +23 -0
- data/path/gems/guard-rspec-4.6.4/Guardfile +28 -0
- data/path/gems/guard-rspec-4.6.4/LICENSE.txt +22 -0
- data/path/gems/guard-rspec-4.6.4/README.md +158 -0
- data/path/gems/guard-rspec-4.6.4/Rakefile +38 -0
- data/path/gems/guard-rspec-4.6.4/gemfiles/Gemfile.rspec-2.14 +14 -0
- data/path/gems/guard-rspec-4.6.4/gemfiles/Gemfile.rspec-2.99 +14 -0
- data/path/gems/guard-rspec-4.6.4/gemfiles/Gemfile.rspec-3.3 +14 -0
- data/path/gems/guard-rspec-4.6.4/guard-rspec.gemspec +29 -0
- data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/command.rb +70 -0
- data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/deprecator.rb +84 -0
- data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/dsl.rb +70 -0
- data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/inspectors/base_inspector.rb +73 -0
- data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/inspectors/factory.rb +23 -0
- data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/inspectors/focused_inspector.rb +39 -0
- data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/inspectors/keeping_inspector.rb +97 -0
- data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/inspectors/simple_inspector.rb +21 -0
- data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/notifier.rb +56 -0
- data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/options.rb +36 -0
- data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/results.rb +23 -0
- data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/rspec_process.rb +66 -0
- data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/runner.rb +97 -0
- data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/templates/Guardfile +53 -0
- data/path/gems/guard-rspec-4.6.4/lib/guard/rspec/version.rb +5 -0
- data/path/gems/guard-rspec-4.6.4/lib/guard/rspec.rb +51 -0
- data/path/gems/guard-rspec-4.6.4/lib/guard/rspec_defaults.rb +5 -0
- data/path/gems/guard-rspec-4.6.4/lib/guard/rspec_formatter.rb +145 -0
- data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/command_spec.rb +95 -0
- data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/deprecator_spec.rb +94 -0
- data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/inspectors/base_inspector_spec.rb +144 -0
- data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/inspectors/factory_spec.rb +45 -0
- data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/inspectors/focused_inspector_spec.rb +140 -0
- data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/inspectors/keeping_inspector_spec.rb +192 -0
- data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/inspectors/shared_examples.rb +121 -0
- data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/inspectors/simple_inspector_spec.rb +59 -0
- data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/notifier_spec.rb +90 -0
- data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/results_spec.rb +64 -0
- data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/rspec_process_spec.rb +78 -0
- data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/runner_spec.rb +332 -0
- data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec/template_spec.rb +78 -0
- data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec_formatter_spec.rb +258 -0
- data/path/gems/guard-rspec-4.6.4/spec/lib/guard/rspec_spec.rb +91 -0
- data/path/gems/guard-rspec-4.6.4/spec/spec_helper.rb +144 -0
- data/path/gems/listen-3.0.3/CHANGELOG.md +1 -0
- data/path/gems/listen-3.0.3/CONTRIBUTING.md +38 -0
- data/path/gems/listen-3.0.3/LICENSE.txt +22 -0
- data/path/gems/listen-3.0.3/README.md +305 -0
- data/path/gems/listen-3.0.3/bin/listen +12 -0
- data/path/gems/listen-3.0.3/lib/listen/adapter/base.rb +130 -0
- data/path/gems/listen-3.0.3/lib/listen/adapter/bsd.rb +106 -0
- data/path/gems/listen-3.0.3/lib/listen/adapter/config.rb +23 -0
- data/path/gems/listen-3.0.3/lib/listen/adapter/darwin.rb +55 -0
- data/path/gems/listen-3.0.3/lib/listen/adapter/linux.rb +102 -0
- data/path/gems/listen-3.0.3/lib/listen/adapter/polling.rb +37 -0
- data/path/gems/listen-3.0.3/lib/listen/adapter/windows.rb +99 -0
- data/path/gems/listen-3.0.3/lib/listen/adapter.rb +43 -0
- data/path/gems/listen-3.0.3/lib/listen/backend.rb +41 -0
- data/path/gems/listen-3.0.3/lib/listen/change.rb +78 -0
- data/path/gems/listen-3.0.3/lib/listen/cli.rb +65 -0
- data/path/gems/listen-3.0.3/lib/listen/directory.rb +80 -0
- data/path/gems/listen-3.0.3/lib/listen/event/config.rb +59 -0
- data/path/gems/listen-3.0.3/lib/listen/event/loop.rb +117 -0
- data/path/gems/listen-3.0.3/lib/listen/event/processor.rb +122 -0
- data/path/gems/listen-3.0.3/lib/listen/event/queue.rb +56 -0
- data/path/gems/listen-3.0.3/lib/listen/file.rb +80 -0
- data/path/gems/listen-3.0.3/lib/listen/fsm.rb +131 -0
- data/path/gems/listen-3.0.3/lib/listen/internals/thread_pool.rb +21 -0
- data/path/gems/listen-3.0.3/lib/listen/listener/config.rb +45 -0
- data/path/gems/listen-3.0.3/lib/listen/listener.rb +132 -0
- data/path/gems/listen-3.0.3/lib/listen/logger.rb +32 -0
- data/path/gems/listen-3.0.3/lib/listen/options.rb +23 -0
- data/path/gems/listen-3.0.3/lib/listen/queue_optimizer.rb +132 -0
- data/path/gems/listen-3.0.3/lib/listen/record/entry.rb +51 -0
- data/path/gems/listen-3.0.3/lib/listen/record/symlink_detector.rb +39 -0
- data/path/gems/listen-3.0.3/lib/listen/record.rb +120 -0
- data/path/gems/listen-3.0.3/lib/listen/silencer/controller.rb +48 -0
- data/path/gems/listen-3.0.3/lib/listen/silencer.rb +97 -0
- data/path/gems/listen-3.0.3/lib/listen/version.rb +3 -0
- data/path/gems/listen-3.0.3/lib/listen.rb +55 -0
- data/path/gems/lumberjack-1.0.9/MIT_LICENSE +20 -0
- data/path/gems/lumberjack-1.0.9/README.rdoc +132 -0
- data/path/gems/lumberjack-1.0.9/Rakefile +40 -0
- data/path/gems/lumberjack-1.0.9/VERSION +1 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack/device/date_rolling_log_file.rb +58 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack/device/log_file.rb +18 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack/device/null.rb +15 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack/device/rolling_log_file.rb +110 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack/device/size_rolling_log_file.rb +60 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack/device/writer.rb +129 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack/device.rb +26 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack/formatter/exception_formatter.rb +12 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack/formatter/inspect_formatter.rb +10 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack/formatter/pretty_print_formatter.rb +23 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack/formatter/string_formatter.rb +10 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack/formatter.rb +81 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack/log_entry.rb +36 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack/logger.rb +315 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack/rack/unit_of_work.rb +15 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack/rack.rb +5 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack/severity.rb +23 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack/template.rb +71 -0
- data/path/gems/lumberjack-1.0.9/lib/lumberjack.rb +43 -0
- data/path/gems/lumberjack-1.0.9/spec/device/date_rolling_log_file_spec.rb +66 -0
- data/path/gems/lumberjack-1.0.9/spec/device/log_file_spec.rb +26 -0
- data/path/gems/lumberjack-1.0.9/spec/device/null_spec.rb +12 -0
- data/path/gems/lumberjack-1.0.9/spec/device/rolling_log_file_spec.rb +128 -0
- data/path/gems/lumberjack-1.0.9/spec/device/size_rolling_log_file_spec.rb +54 -0
- data/path/gems/lumberjack-1.0.9/spec/device/writer_spec.rb +118 -0
- data/path/gems/lumberjack-1.0.9/spec/formatter/exception_formatter_spec.rb +20 -0
- data/path/gems/lumberjack-1.0.9/spec/formatter/inspect_formatter_spec.rb +13 -0
- data/path/gems/lumberjack-1.0.9/spec/formatter/pretty_print_formatter_spec.rb +14 -0
- data/path/gems/lumberjack-1.0.9/spec/formatter/string_formatter_spec.rb +12 -0
- data/path/gems/lumberjack-1.0.9/spec/formatter_spec.rb +45 -0
- data/path/gems/lumberjack-1.0.9/spec/log_entry_spec.rb +69 -0
- data/path/gems/lumberjack-1.0.9/spec/logger_spec.rb +411 -0
- data/path/gems/lumberjack-1.0.9/spec/lumberjack_spec.rb +29 -0
- data/path/gems/lumberjack-1.0.9/spec/rack/unit_of_work_spec.rb +26 -0
- data/path/gems/lumberjack-1.0.9/spec/severity_spec.rb +23 -0
- data/path/gems/lumberjack-1.0.9/spec/spec_helper.rb +16 -0
- data/path/gems/lumberjack-1.0.9/spec/template_spec.rb +34 -0
- data/path/gems/method_source-0.8.2/.gemtest +0 -0
- data/path/gems/method_source-0.8.2/.travis.yml +13 -0
- data/path/gems/method_source-0.8.2/.yardopts +1 -0
- data/path/gems/method_source-0.8.2/Gemfile +2 -0
- data/path/gems/method_source-0.8.2/LICENSE +25 -0
- data/path/gems/method_source-0.8.2/README.markdown +91 -0
- data/path/gems/method_source-0.8.2/Rakefile +79 -0
- data/path/gems/method_source-0.8.2/lib/method_source/code_helpers.rb +154 -0
- data/path/gems/method_source-0.8.2/lib/method_source/source_location.rb +138 -0
- data/path/gems/method_source-0.8.2/lib/method_source/version.rb +3 -0
- data/path/gems/method_source-0.8.2/lib/method_source.rb +141 -0
- data/path/gems/method_source-0.8.2/method_source.gemspec +33 -0
- data/path/gems/method_source-0.8.2/test/test.rb +138 -0
- data/path/gems/method_source-0.8.2/test/test_code_helpers.rb +41 -0
- data/path/gems/method_source-0.8.2/test/test_helper.rb +98 -0
- data/path/gems/nenv-0.2.0/.gitignore +14 -0
- data/path/gems/nenv-0.2.0/LICENSE.txt +22 -0
- data/path/gems/nenv-0.2.0/README.md +320 -0
- data/path/gems/nenv-0.2.0/lib/nenv/autoenvironment.rb +9 -0
- data/path/gems/nenv-0.2.0/lib/nenv/builder.rb +9 -0
- data/path/gems/nenv-0.2.0/lib/nenv/environment/dumper.rb +10 -0
- data/path/gems/nenv-0.2.0/lib/nenv/environment/loader.rb +29 -0
- data/path/gems/nenv-0.2.0/lib/nenv/environment.rb +58 -0
- data/path/gems/nenv-0.2.0/lib/nenv/version.rb +3 -0
- data/path/gems/nenv-0.2.0/lib/nenv.rb +30 -0
- data/path/gems/nenv-0.2.0/nenv.gemspec +27 -0
- data/path/gems/notiffany-0.0.7/LICENSE.txt +22 -0
- data/path/gems/notiffany-0.0.7/README.md +69 -0
- data/path/gems/notiffany-0.0.7/images/failed.png +0 -0
- data/path/gems/notiffany-0.0.7/images/pending.png +0 -0
- data/path/gems/notiffany-0.0.7/images/success.png +0 -0
- data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/base.rb +127 -0
- data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/detected.rb +116 -0
- data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/emacs.rb +107 -0
- data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/file.rb +44 -0
- data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/gntp.rb +91 -0
- data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/growl.rb +82 -0
- data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/libnotify.rb +54 -0
- data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/notifysend.rb +89 -0
- data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/rb_notifu.rb +89 -0
- data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/terminal_notifier.rb +59 -0
- data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/terminal_title.rb +39 -0
- data/path/gems/notiffany-0.0.7/lib/notiffany/notifier/tmux.rb +355 -0
- data/path/gems/notiffany-0.0.7/lib/notiffany/notifier.rb +205 -0
- data/path/gems/notiffany-0.0.7/lib/notiffany/version.rb +3 -0
- data/path/gems/notiffany-0.0.7/lib/notiffany.rb +6 -0
- data/path/gems/pry-0.10.1-x86-mingw32/CHANGELOG.md +709 -0
- data/path/gems/pry-0.10.1-x86-mingw32/LICENSE +25 -0
- data/path/gems/pry-0.10.1-x86-mingw32/README.md +406 -0
- data/path/gems/pry-0.10.1-x86-mingw32/bin/pry +16 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/cli.rb +220 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/code/code_file.rb +103 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/code/code_range.rb +71 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/code/loc.rb +92 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/code.rb +346 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/code_object.rb +172 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/color_printer.rb +55 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/command.rb +692 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/command_set.rb +443 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/amend_line.rb +99 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/bang.rb +20 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/bang_pry.rb +17 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/cat/abstract_formatter.rb +27 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/cat/exception_formatter.rb +77 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/cat/file_formatter.rb +67 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/cat/input_expression_formatter.rb +43 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/cat.rb +62 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/cd.rb +41 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/change_inspector.rb +27 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/change_prompt.rb +26 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/code_collector.rb +165 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/disable_pry.rb +27 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/disabled_commands.rb +2 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/easter_eggs.rb +112 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/edit/exception_patcher.rb +25 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/edit/file_and_line_locator.rb +36 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/edit.rb +195 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/exit.rb +42 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/exit_all.rb +29 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/exit_program.rb +23 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/find_method.rb +193 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/fix_indent.rb +19 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/gem_cd.rb +26 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/gem_install.rb +32 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/gem_list.rb +33 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/gem_open.rb +29 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/gist.rb +101 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/help.rb +164 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/hist.rb +180 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/import_set.rb +22 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/install_command.rb +53 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/jump_to.rb +29 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/list_inspectors.rb +35 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/list_prompts.rb +35 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/constants.rb +47 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/formatter.rb +49 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/globals.rb +48 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/grep.rb +21 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/instance_vars.rb +39 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/interrogatable.rb +18 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/jruby_hacks.rb +49 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/local_names.rb +35 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/local_vars.rb +39 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/ls_entity.rb +70 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/methods.rb +57 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/methods_helper.rb +46 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls/self_methods.rb +32 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ls.rb +114 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/nesting.rb +25 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/play.rb +103 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/pry_backtrace.rb +25 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/pry_version.rb +17 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/raise_up.rb +32 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/reload_code.rb +62 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/reset.rb +18 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/ri.rb +60 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/save_file.rb +61 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/shell_command.rb +48 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/shell_mode.rb +25 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/show_doc.rb +83 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/show_info.rb +195 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/show_input.rb +17 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/show_source.rb +50 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/simple_prompt.rb +22 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/stat.rb +40 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/switch_to.rb +23 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/toggle_color.rb +24 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/watch_expression/expression.rb +38 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/watch_expression.rb +105 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/whereami.rb +190 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/wtf.rb +57 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands.rb +6 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/config/behavior.rb +139 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/config/convenience.rb +25 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/config/default.rb +161 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/config.rb +24 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/core_extensions.rb +131 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/editor.rb +135 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/exceptions.rb +77 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/helpers/base_helpers.rb +113 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/helpers/command_helpers.rb +156 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/helpers/documentation_helpers.rb +75 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/helpers/options_helpers.rb +27 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/helpers/table.rb +109 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/helpers/text.rb +107 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/helpers.rb +5 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/history.rb +127 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/history_array.rb +121 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/hooks.rb +230 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/indent.rb +406 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/input_completer.rb +242 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/input_lock.rb +132 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/inspector.rb +27 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/last_exception.rb +61 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/method/disowned.rb +53 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/method/patcher.rb +125 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/method/weird_method_locator.rb +186 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/method.rb +546 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/module_candidate.rb +136 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/object_path.rb +82 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/output.rb +50 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/pager.rb +236 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/plugins.rb +103 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/prompt.rb +26 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/pry_class.rb +375 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/pry_instance.rb +664 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/rbx_path.rb +22 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/repl.rb +202 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/repl_file_loader.rb +74 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/rubygem.rb +82 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/terminal.rb +79 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/test/helper.rb +170 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/version.rb +3 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry/wrapped_module.rb +377 -0
- data/path/gems/pry-0.10.1-x86-mingw32/lib/pry.rb +161 -0
- data/path/gems/rb-fsevent-0.9.5/.gitignore +13 -0
- data/path/gems/rb-fsevent-0.9.5/Gemfile +6 -0
- data/path/gems/rb-fsevent-0.9.5/Guardfile +8 -0
- data/path/gems/rb-fsevent-0.9.5/LICENSE.txt +22 -0
- data/path/gems/rb-fsevent-0.9.5/README.md +242 -0
- data/path/gems/rb-fsevent-0.9.5/Rakefile +32 -0
- data/path/gems/rb-fsevent-0.9.5/bin/fsevent_watch +0 -0
- data/path/gems/rb-fsevent-0.9.5/ext/LICENSE +21 -0
- data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/FSEventsFix.c +626 -0
- data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/FSEventsFix.h +105 -0
- data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/TSICTString.c +394 -0
- data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/TSICTString.h +74 -0
- data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/cli.c +202 -0
- data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/cli.h +45 -0
- data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/common.h +22 -0
- data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/compat.c +25 -0
- data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/compat.h +47 -0
- data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/defines.h +40 -0
- data/path/gems/rb-fsevent-0.9.5/ext/fsevent_watch/main.c +507 -0
- data/path/gems/rb-fsevent-0.9.5/ext/rakefile.rb +224 -0
- data/path/gems/rb-fsevent-0.9.5/lib/rb-fsevent/fsevent.rb +114 -0
- data/path/gems/rb-fsevent-0.9.5/lib/rb-fsevent/version.rb +5 -0
- data/path/gems/rb-fsevent-0.9.5/lib/rb-fsevent.rb +3 -0
- data/path/gems/rb-fsevent-0.9.5/rb-fsevent.gemspec +24 -0
- data/path/gems/rb-fsevent-0.9.5/spec/fixtures/custom 'path/.gitignore +0 -0
- data/path/gems/rb-fsevent-0.9.5/spec/fixtures/folder1/file1.txt +0 -0
- data/path/gems/rb-fsevent-0.9.5/spec/fixtures/folder1/folder2/file2.txt +0 -0
- data/path/gems/rb-fsevent-0.9.5/spec/rb-fsevent/fsevent_spec.rb +88 -0
- data/path/gems/rb-fsevent-0.9.5/spec/spec_helper.rb +23 -0
- data/path/gems/rb-inotify-0.9.5/.yardopts +4 -0
- data/path/gems/rb-inotify-0.9.5/MIT-LICENSE +20 -0
- data/path/gems/rb-inotify-0.9.5/README.md +66 -0
- data/path/gems/rb-inotify-0.9.5/Rakefile +54 -0
- data/path/gems/rb-inotify-0.9.5/VERSION +1 -0
- data/path/gems/rb-inotify-0.9.5/lib/rb-inotify/event.rb +146 -0
- data/path/gems/rb-inotify-0.9.5/lib/rb-inotify/native/flags.rb +89 -0
- data/path/gems/rb-inotify-0.9.5/lib/rb-inotify/native.rb +31 -0
- data/path/gems/rb-inotify-0.9.5/lib/rb-inotify/notifier.rb +318 -0
- data/path/gems/rb-inotify-0.9.5/lib/rb-inotify/watcher.rb +88 -0
- data/path/gems/rb-inotify-0.9.5/lib/rb-inotify.rb +17 -0
- data/path/gems/rb-inotify-0.9.5/rb-inotify.gemspec +52 -0
- data/path/gems/rspec-3.3.0/License.txt +24 -0
- data/path/gems/rspec-3.3.0/README.md +34 -0
- data/path/gems/rspec-3.3.0/lib/rspec/version.rb +5 -0
- data/path/gems/rspec-3.3.0/lib/rspec.rb +3 -0
- data/path/gems/rspec-core-3.3.2/.document +5 -0
- data/path/gems/rspec-core-3.3.2/.yardopts +8 -0
- data/path/gems/rspec-core-3.3.2/Changelog.md +1856 -0
- data/path/gems/rspec-core-3.3.2/License.txt +25 -0
- data/path/gems/rspec-core-3.3.2/README.md +369 -0
- data/path/gems/rspec-core-3.3.2/exe/rspec +4 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/autorun.rb +3 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/backtrace_formatter.rb +64 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/bisect/coordinator.rb +66 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/bisect/example_minimizer.rb +130 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/bisect/runner.rb +139 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/bisect/server.rb +61 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/bisect/subset_enumerator.rb +39 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/configuration.rb +1807 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/configuration_options.rb +191 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/drb.rb +111 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/dsl.rb +96 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/example.rb +573 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/example_group.rb +796 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/example_status_persister.rb +235 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/filter_manager.rb +231 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/flat_map.rb +20 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/base_formatter.rb +70 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/base_text_formatter.rb +77 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/bisect_formatter.rb +68 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/bisect_progress_formatter.rb +115 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/console_codes.rb +65 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/documentation_formatter.rb +70 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/exception_presenter.rb +393 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/helpers.rb +109 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/html_formatter.rb +151 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/html_printer.rb +415 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/json_formatter.rb +96 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/profile_formatter.rb +68 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/progress_formatter.rb +28 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/protocol.rb +172 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/snippet_extractor.rb +116 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters.rb +254 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/hooks.rb +638 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/memoized_helpers.rb +532 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/metadata.rb +490 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/metadata_filter.rb +235 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/mocking_adapters/null.rb +14 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/mocking_adapters/rr.rb +31 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/mutex.rb +63 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/notifications.rb +498 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/option_parser.rb +301 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/ordering.rb +158 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/pending.rb +165 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/profiler.rb +32 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/project_initializer/.rspec +2 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/project_initializer/spec/spec_helper.rb +96 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/project_initializer.rb +48 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/rake_task.rb +158 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/reentrant_mutex.rb +52 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/reporter.rb +220 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/ruby_project.rb +53 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/runner.rb +179 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/sandbox.rb +37 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/set.rb +49 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/shared_context.rb +55 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/shared_example_group.rb +210 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/shell_escape.rb +49 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/version.rb +9 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/warnings.rb +40 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/world.rb +178 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core.rb +181 -0
- data/path/gems/rspec-expectations-3.3.1/.document +5 -0
- data/path/gems/rspec-expectations-3.3.1/.yardopts +6 -0
- data/path/gems/rspec-expectations-3.3.1/Changelog.md +953 -0
- data/path/gems/rspec-expectations-3.3.1/License.txt +24 -0
- data/path/gems/rspec-expectations-3.3.1/README.md +289 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/configuration.rb +164 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/expectation_target.rb +113 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/fail_with.rb +31 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/failure_aggregator.rb +194 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/handler.rb +170 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/minitest_integration.rb +31 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/syntax.rb +132 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/version.rb +8 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations.rb +81 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/aliased_matcher.rb +116 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/all.rb +85 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/base_matcher.rb +181 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/be.rb +285 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/be_between.rb +77 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/be_instance_of.rb +22 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/be_kind_of.rb +16 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/be_within.rb +72 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/change.rb +337 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/compound.rb +293 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/contain_exactly.rb +253 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/cover.rb +24 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/eq.rb +40 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/eql.rb +34 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/equal.rb +81 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/exist.rb +86 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/has.rb +103 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/include.rb +130 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/match.rb +37 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/operators.rb +128 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/output.rb +200 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/raise_error.rb +216 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/respond_to.rb +90 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/satisfy.rb +37 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/yield.rb +418 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in.rb +52 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/composable.rb +184 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/dsl.rb +453 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/english_phrasing.rb +42 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +73 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/fail_matchers.rb +42 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/generated_descriptions.rb +42 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/matcher_delegator.rb +35 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/matcher_protocol.rb +99 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers.rb +1009 -0
- data/path/gems/rspec-mocks-3.3.2/.document +5 -0
- data/path/gems/rspec-mocks-3.3.2/.yardopts +6 -0
- data/path/gems/rspec-mocks-3.3.2/Changelog.md +965 -0
- data/path/gems/rspec-mocks-3.3.2/License.txt +24 -0
- data/path/gems/rspec-mocks-3.3.2/README.md +430 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/chain.rb +110 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/expect_chain_chain.rb +35 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/expectation_chain.rb +48 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/proxy.rb +116 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/recorder.rb +264 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/stub_chain.rb +46 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/stub_chain_chain.rb +27 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance.rb +11 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/argument_list_matcher.rb +100 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/argument_matchers.rb +320 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/configuration.rb +188 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/error_generator.rb +362 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/example_methods.rb +421 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/instance_method_stasher.rb +135 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/marshal_extension.rb +41 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/matchers/have_received.rb +116 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/matchers/receive.rb +130 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/matchers/receive_message_chain.rb +80 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/matchers/receive_messages.rb +75 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/message_chain.rb +87 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/message_expectation.rb +717 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/method_double.rb +287 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/method_reference.rb +192 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/mutate_const.rb +335 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/mutex.rb +73 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/object_reference.rb +149 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/order_group.rb +81 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/proxy.rb +439 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/reentrant_mutex.rb +53 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/space.rb +238 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/standalone.rb +3 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/syntax.rb +325 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/targets.rb +97 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/test_double.rb +170 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/verifying_double.rb +129 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/verifying_message_expecation.rb +54 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/verifying_proxy.rb +213 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/version.rb +9 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks.rb +126 -0
- data/path/gems/rspec-support-3.3.0/Changelog.md +125 -0
- data/path/gems/rspec-support-3.3.0/LICENSE.txt +22 -0
- data/path/gems/rspec-support-3.3.0/README.md +26 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/caller_filter.rb +83 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/differ.rb +215 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/directory_maker.rb +63 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/encoded_string.rb +155 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/fuzzy_matcher.rb +48 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/hunk_generator.rb +47 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/matcher_definition.rb +42 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/method_signature_verifier.rb +273 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/object_formatter.rb +93 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/recursive_const_methods.rb +76 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/ruby_features.rb +118 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/deprecation_helpers.rb +64 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/formatting_support.rb +9 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/in_sub_process.rb +52 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/library_wide_checks.rb +145 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/shell_out.rb +71 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/stderr_splitter.rb +63 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/string_matcher.rb +46 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/with_isolated_directory.rb +9 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec.rb +81 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/version.rb +7 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/version_checker.rb +53 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/warnings.rb +39 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support.rb +111 -0
- data/path/gems/shellany-0.0.1/.gitignore +14 -0
- data/path/gems/shellany-0.0.1/.rspec +2 -0
- data/path/gems/shellany-0.0.1/.travis.yml +13 -0
- data/path/gems/shellany-0.0.1/Gemfile +11 -0
- data/path/gems/shellany-0.0.1/LICENSE.txt +22 -0
- data/path/gems/shellany-0.0.1/README.md +72 -0
- data/path/gems/shellany-0.0.1/Rakefile +13 -0
- data/path/gems/shellany-0.0.1/lib/shellany/sheller.rb +144 -0
- data/path/gems/shellany-0.0.1/lib/shellany/version.rb +3 -0
- data/path/gems/shellany-0.0.1/lib/shellany.rb +5 -0
- data/path/gems/shellany-0.0.1/shellany.gemspec +22 -0
- data/path/gems/shellany-0.0.1/spec/lib/shellany/sheller_spec.rb +141 -0
- data/path/gems/shellany-0.0.1/spec/shellany_spec.rb +5 -0
- data/path/gems/shellany-0.0.1/spec/spec_helper.rb +24 -0
- data/path/gems/slop-3.6.0/.gitignore +7 -0
- data/path/gems/slop-3.6.0/.travis.yml +9 -0
- data/path/gems/slop-3.6.0/CHANGES.md +309 -0
- data/path/gems/slop-3.6.0/Gemfile +3 -0
- data/path/gems/slop-3.6.0/LICENSE +20 -0
- data/path/gems/slop-3.6.0/README.md +202 -0
- data/path/gems/slop-3.6.0/Rakefile +29 -0
- data/path/gems/slop-3.6.0/lib/slop/commands.rb +196 -0
- data/path/gems/slop-3.6.0/lib/slop/option.rb +214 -0
- data/path/gems/slop-3.6.0/lib/slop.rb +687 -0
- data/path/gems/slop-3.6.0/slop.gemspec +17 -0
- data/path/gems/slop-3.6.0/test/commands_test.rb +26 -0
- data/path/gems/slop-3.6.0/test/helper.rb +12 -0
- data/path/gems/slop-3.6.0/test/option_test.rb +145 -0
- data/path/gems/slop-3.6.0/test/slop_test.rb +518 -0
- data/path/gems/thor-0.19.1/.document +5 -0
- data/path/gems/thor-0.19.1/CHANGELOG.md +139 -0
- data/path/gems/thor-0.19.1/LICENSE.md +20 -0
- data/path/gems/thor-0.19.1/README.md +41 -0
- data/path/gems/thor-0.19.1/Thorfile +29 -0
- data/path/gems/thor-0.19.1/bin/thor +6 -0
- data/path/gems/thor-0.19.1/lib/thor/actions/create_file.rb +103 -0
- data/path/gems/thor-0.19.1/lib/thor/actions/create_link.rb +59 -0
- data/path/gems/thor-0.19.1/lib/thor/actions/directory.rb +118 -0
- data/path/gems/thor-0.19.1/lib/thor/actions/empty_directory.rb +135 -0
- data/path/gems/thor-0.19.1/lib/thor/actions/file_manipulation.rb +316 -0
- data/path/gems/thor-0.19.1/lib/thor/actions/inject_into_file.rb +107 -0
- data/path/gems/thor-0.19.1/lib/thor/actions.rb +319 -0
- data/path/gems/thor-0.19.1/lib/thor/base.rb +656 -0
- data/path/gems/thor-0.19.1/lib/thor/command.rb +133 -0
- data/path/gems/thor-0.19.1/lib/thor/core_ext/hash_with_indifferent_access.rb +77 -0
- data/path/gems/thor-0.19.1/lib/thor/core_ext/io_binary_read.rb +10 -0
- data/path/gems/thor-0.19.1/lib/thor/core_ext/ordered_hash.rb +98 -0
- data/path/gems/thor-0.19.1/lib/thor/error.rb +32 -0
- data/path/gems/thor-0.19.1/lib/thor/group.rb +281 -0
- data/path/gems/thor-0.19.1/lib/thor/invocation.rb +178 -0
- data/path/gems/thor-0.19.1/lib/thor/line_editor/basic.rb +35 -0
- data/path/gems/thor-0.19.1/lib/thor/line_editor/readline.rb +88 -0
- data/path/gems/thor-0.19.1/lib/thor/line_editor.rb +17 -0
- data/path/gems/thor-0.19.1/lib/thor/parser/argument.rb +73 -0
- data/path/gems/thor-0.19.1/lib/thor/parser/arguments.rb +175 -0
- data/path/gems/thor-0.19.1/lib/thor/parser/option.rb +125 -0
- data/path/gems/thor-0.19.1/lib/thor/parser/options.rb +218 -0
- data/path/gems/thor-0.19.1/lib/thor/parser.rb +4 -0
- data/path/gems/thor-0.19.1/lib/thor/rake_compat.rb +71 -0
- data/path/gems/thor-0.19.1/lib/thor/runner.rb +322 -0
- data/path/gems/thor-0.19.1/lib/thor/shell/basic.rb +421 -0
- data/path/gems/thor-0.19.1/lib/thor/shell/color.rb +149 -0
- data/path/gems/thor-0.19.1/lib/thor/shell/html.rb +126 -0
- data/path/gems/thor-0.19.1/lib/thor/shell.rb +81 -0
- data/path/gems/thor-0.19.1/lib/thor/util.rb +267 -0
- data/path/gems/thor-0.19.1/lib/thor/version.rb +3 -0
- data/path/gems/thor-0.19.1/lib/thor.rb +484 -0
- data/path/gems/thor-0.19.1/spec/actions/create_file_spec.rb +168 -0
- data/path/gems/thor-0.19.1/spec/actions/create_link_spec.rb +96 -0
- data/path/gems/thor-0.19.1/spec/actions/directory_spec.rb +169 -0
- data/path/gems/thor-0.19.1/spec/actions/empty_directory_spec.rb +129 -0
- data/path/gems/thor-0.19.1/spec/actions/file_manipulation_spec.rb +392 -0
- data/path/gems/thor-0.19.1/spec/actions/inject_into_file_spec.rb +135 -0
- data/path/gems/thor-0.19.1/spec/actions_spec.rb +331 -0
- data/path/gems/thor-0.19.1/spec/base_spec.rb +298 -0
- data/path/gems/thor-0.19.1/spec/command_spec.rb +79 -0
- data/path/gems/thor-0.19.1/spec/core_ext/hash_with_indifferent_access_spec.rb +48 -0
- data/path/gems/thor-0.19.1/spec/core_ext/ordered_hash_spec.rb +115 -0
- data/path/gems/thor-0.19.1/spec/exit_condition_spec.rb +19 -0
- data/path/gems/thor-0.19.1/spec/fixtures/application.rb +2 -0
- data/path/gems/thor-0.19.1/spec/fixtures/app{1}/README +3 -0
- data/path/gems/thor-0.19.1/spec/fixtures/bundle/execute.rb +6 -0
- data/path/gems/thor-0.19.1/spec/fixtures/bundle/main.thor +1 -0
- data/path/gems/thor-0.19.1/spec/fixtures/command.thor +10 -0
- data/path/gems/thor-0.19.1/spec/fixtures/doc/%file_name%.rb.tt +1 -0
- data/path/gems/thor-0.19.1/spec/fixtures/doc/COMMENTER +11 -0
- data/path/gems/thor-0.19.1/spec/fixtures/doc/README +3 -0
- data/path/gems/thor-0.19.1/spec/fixtures/doc/block_helper.rb +3 -0
- data/path/gems/thor-0.19.1/spec/fixtures/doc/config.rb +1 -0
- data/path/gems/thor-0.19.1/spec/fixtures/doc/config.yaml.tt +1 -0
- data/path/gems/thor-0.19.1/spec/fixtures/doc/excluding/%file_name%.rb.tt +1 -0
- data/path/gems/thor-0.19.1/spec/fixtures/enum.thor +10 -0
- data/path/gems/thor-0.19.1/spec/fixtures/group.thor +128 -0
- data/path/gems/thor-0.19.1/spec/fixtures/invoke.thor +131 -0
- data/path/gems/thor-0.19.1/spec/fixtures/path with spaces +0 -0
- data/path/gems/thor-0.19.1/spec/fixtures/preserve/script.sh +3 -0
- data/path/gems/thor-0.19.1/spec/fixtures/script.thor +220 -0
- data/path/gems/thor-0.19.1/spec/fixtures/subcommand.thor +17 -0
- data/path/gems/thor-0.19.1/spec/group_spec.rb +222 -0
- data/path/gems/thor-0.19.1/spec/helper.rb +80 -0
- data/path/gems/thor-0.19.1/spec/invocation_spec.rb +120 -0
- data/path/gems/thor-0.19.1/spec/line_editor/basic_spec.rb +28 -0
- data/path/gems/thor-0.19.1/spec/line_editor/readline_spec.rb +69 -0
- data/path/gems/thor-0.19.1/spec/line_editor_spec.rb +43 -0
- data/path/gems/thor-0.19.1/spec/parser/argument_spec.rb +53 -0
- data/path/gems/thor-0.19.1/spec/parser/arguments_spec.rb +66 -0
- data/path/gems/thor-0.19.1/spec/parser/option_spec.rb +210 -0
- data/path/gems/thor-0.19.1/spec/parser/options_spec.rb +414 -0
- data/path/gems/thor-0.19.1/spec/quality_spec.rb +75 -0
- data/path/gems/thor-0.19.1/spec/rake_compat_spec.rb +72 -0
- data/path/gems/thor-0.19.1/spec/register_spec.rb +227 -0
- data/path/gems/thor-0.19.1/spec/runner_spec.rb +246 -0
- data/path/gems/thor-0.19.1/spec/sandbox/application.rb +2 -0
- data/path/gems/thor-0.19.1/spec/sandbox/app{1}/README +3 -0
- data/path/gems/thor-0.19.1/spec/sandbox/bundle/execute.rb +6 -0
- data/path/gems/thor-0.19.1/spec/sandbox/bundle/main.thor +1 -0
- data/path/gems/thor-0.19.1/spec/sandbox/command.thor +10 -0
- data/path/gems/thor-0.19.1/spec/sandbox/doc/%file_name%.rb.tt +1 -0
- data/path/gems/thor-0.19.1/spec/sandbox/doc/COMMENTER +11 -0
- data/path/gems/thor-0.19.1/spec/sandbox/doc/README +3 -0
- data/path/gems/thor-0.19.1/spec/sandbox/doc/block_helper.rb +3 -0
- data/path/gems/thor-0.19.1/spec/sandbox/doc/config.rb +1 -0
- data/path/gems/thor-0.19.1/spec/sandbox/doc/config.yaml.tt +1 -0
- data/path/gems/thor-0.19.1/spec/sandbox/doc/excluding/%file_name%.rb.tt +1 -0
- data/path/gems/thor-0.19.1/spec/sandbox/enum.thor +10 -0
- data/path/gems/thor-0.19.1/spec/sandbox/group.thor +128 -0
- data/path/gems/thor-0.19.1/spec/sandbox/invoke.thor +131 -0
- data/path/gems/thor-0.19.1/spec/sandbox/path with spaces +0 -0
- data/path/gems/thor-0.19.1/spec/sandbox/preserve/script.sh +3 -0
- data/path/gems/thor-0.19.1/spec/sandbox/script.thor +220 -0
- data/path/gems/thor-0.19.1/spec/sandbox/subcommand.thor +17 -0
- data/path/gems/thor-0.19.1/spec/shell/basic_spec.rb +337 -0
- data/path/gems/thor-0.19.1/spec/shell/color_spec.rb +119 -0
- data/path/gems/thor-0.19.1/spec/shell/html_spec.rb +31 -0
- data/path/gems/thor-0.19.1/spec/shell_spec.rb +47 -0
- data/path/gems/thor-0.19.1/spec/subcommand_spec.rb +48 -0
- data/path/gems/thor-0.19.1/spec/thor_spec.rb +505 -0
- data/path/gems/thor-0.19.1/spec/util_spec.rb +196 -0
- data/path/gems/thor-0.19.1/thor.gemspec +24 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/.gemtest +0 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/History.txt +134 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/Manifest.txt +22 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/README.txt +86 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/Rakefile +8 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/ext/Console_ext/Console.c +1216 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/ext/Console_ext/extconf.rb +18 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/extra/Console.rdoc +690 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/extra/Console_ANSI.rdoc +302 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/lib/1.8/Console_ext.so +0 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/lib/1.9/Console_ext.so +0 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/lib/Win32/Console/ANSI.rb +357 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/lib/Win32/Console/api.rb +342 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/lib/Win32/Console/constants.rb +66 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/lib/Win32/Console.rb +404 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/lib/win32console.rb +1 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/tasks/gem.rake +36 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/tasks/native.rake +16 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/test/test_cursor.rb +9 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/test/test_mouse.rb +6 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/test/test_readinput.rb +78 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/test/test_readoutput.rb +52 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/test/test_sendevent.rb +17 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/test/test_std.rb +4 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/test/test_title.rb +14 -0
- data/path/gems/win32console-1.3.2-x86-mingw32/test/test_write.rb +37 -0
- data/path/specifications/coderay-1.1.0.gemspec +26 -0
- data/path/specifications/diff-lcs-1.2.5.gemspec +68 -0
- data/path/specifications/ffi-1.9.10-x86-mingw32.gemspec +47 -0
- data/path/specifications/formatador-0.2.5.gemspec +38 -0
- data/path/specifications/guard-2.13.0.gemspec +56 -0
- data/path/specifications/guard-compat-1.2.1.gemspec +35 -0
- data/path/specifications/guard-rspec-4.6.4.gemspec +47 -0
- data/path/specifications/listen-3.0.3.gemspec +41 -0
- data/path/specifications/lumberjack-1.0.9.gemspec +23 -0
- data/path/specifications/method_source-0.8.2.gemspec +34 -0
- data/path/specifications/nenv-0.2.0.gemspec +38 -0
- data/path/specifications/notiffany-0.0.7.gemspec +38 -0
- data/path/specifications/pry-0.10.1-x86-mingw32.gemspec +47 -0
- data/path/specifications/rb-fsevent-0.9.5.gemspec +38 -0
- data/path/specifications/rb-inotify-0.9.5.gemspec +36 -0
- data/path/specifications/rspec-3.3.0.gemspec +42 -0
- data/path/specifications/rspec-core-3.3.2.gemspec +68 -0
- data/path/specifications/rspec-expectations-3.3.1.gemspec +50 -0
- data/path/specifications/rspec-mocks-3.3.2.gemspec +53 -0
- data/path/specifications/rspec-support-3.3.0.gemspec +38 -0
- data/path/specifications/shellany-0.0.1.gemspec +32 -0
- data/path/specifications/slop-3.6.0.gemspec +36 -0
- data/path/specifications/thor-0.19.1.gemspec +34 -0
- data/path/specifications/win32console-1.3.2-x86-mingw32.gemspec +52 -0
- metadata +1538 -0
|
@@ -0,0 +1,302 @@
|
|
|
1
|
+
#
|
|
2
|
+
# = NAME
|
|
3
|
+
#
|
|
4
|
+
# Win32::Console::ANSI - Ruby extension to emulate ANSI console on Win32 system.
|
|
5
|
+
#
|
|
6
|
+
# = SYNOPSIS
|
|
7
|
+
#
|
|
8
|
+
# require "Win32::Console::ANSI"
|
|
9
|
+
#
|
|
10
|
+
# puts "\e[1;34mThis text is bold blue.\e[0m"
|
|
11
|
+
# puts "This text is normal.""
|
|
12
|
+
# puts "\e[33;45;1mBold yellow on magenta.\e[0m"
|
|
13
|
+
# puts "This text is normal."
|
|
14
|
+
#
|
|
15
|
+
# With the Term::ANSIColor module one increases the readability:
|
|
16
|
+
#
|
|
17
|
+
# require "Win32::Console::ANSI"
|
|
18
|
+
# require "Term::ANSIColor"
|
|
19
|
+
#
|
|
20
|
+
# puts color 'bold blue'
|
|
21
|
+
# puts "This text is bold blue."
|
|
22
|
+
# puts color 'reset'
|
|
23
|
+
# puts "This text is normal."
|
|
24
|
+
# puts colored ("Bold yellow on magenta.", 'bold yellow on_magenta')
|
|
25
|
+
# puts "This text is normal."
|
|
26
|
+
#
|
|
27
|
+
# And even more with Term::ANSIScreen:
|
|
28
|
+
#
|
|
29
|
+
# require "Win32::Console::ANSI;
|
|
30
|
+
# require "Term::ANSIScreen qw/:color :cursor :screen/;
|
|
31
|
+
#
|
|
32
|
+
# locate 1, 1; puts "@ This is (1,1)", savepos;
|
|
33
|
+
# puts locate(24,60), "@ This is (24,60)"; loadpos;
|
|
34
|
+
# puts down(2), clline, "@ This is (3,16)";
|
|
35
|
+
# setscroll 1, 20;
|
|
36
|
+
# color 'black on white'; clline;
|
|
37
|
+
# puts "This line is black on white.";
|
|
38
|
+
# puts color 'reset'; puts "This text is normal.";
|
|
39
|
+
# puts colored ("This text is bold blue.", 'bold blue');
|
|
40
|
+
# puts "This text is normal.";
|
|
41
|
+
# puts colored ['bold blue'], "This text is bold blue.";
|
|
42
|
+
# puts "This text is normal.";
|
|
43
|
+
#
|
|
44
|
+
# = DESCRIPTION
|
|
45
|
+
#
|
|
46
|
+
# Windows NT/2000/XP does not support ANSI escape sequences in Win32 Console
|
|
47
|
+
# applications. This module emulates an ANSI console for the script which
|
|
48
|
+
# uses it.
|
|
49
|
+
#
|
|
50
|
+
#
|
|
51
|
+
# == Escape sequences for Cursor Movement
|
|
52
|
+
#
|
|
53
|
+
# * \e[#A
|
|
54
|
+
#
|
|
55
|
+
# CUU: CUrsor Up: Moves the cursor up by the specified number of lines without
|
|
56
|
+
# changing columns. If the cursor is already on the top line, this sequence
|
|
57
|
+
# is ignored. \e[A is equivalent to \e[1A.
|
|
58
|
+
#
|
|
59
|
+
# * \e[#B
|
|
60
|
+
#
|
|
61
|
+
# CUD: CUrsor Down: Moves the cursor down by the specified number of lines
|
|
62
|
+
# without changing columns. If the cursor is already on the bottom line,
|
|
63
|
+
# this sequence is ignored. \e[B is equivalent to \e[1B.
|
|
64
|
+
#
|
|
65
|
+
# * \e[#C
|
|
66
|
+
#
|
|
67
|
+
# CUF: CUrsor Forward: Moves the cursor forward by the specified number of
|
|
68
|
+
# columns without changing lines. If the cursor is already in the
|
|
69
|
+
# rightmost column, this sequence is ignored. \e[C is equivalent to \e[1C.
|
|
70
|
+
#
|
|
71
|
+
# * \e[#D
|
|
72
|
+
#
|
|
73
|
+
# CUB: CUrsor Backward: Moves the cursor back by the specified number of
|
|
74
|
+
# columns without changing lines. If the cursor is already in the leftmost
|
|
75
|
+
# column, this sequence is ignored. \e[D is equivalent to \e[1D.
|
|
76
|
+
#
|
|
77
|
+
# * \e[#E
|
|
78
|
+
#
|
|
79
|
+
# CNL: Cursor Next Line: Moves the cursor down the indicated # of rows, to
|
|
80
|
+
# column 1. \e[E is equivalent to \e[1E.
|
|
81
|
+
#
|
|
82
|
+
# * \e[#F
|
|
83
|
+
#
|
|
84
|
+
# CPL: Cursor Preceding Line: Moves the cursor up the indicated # of rows,
|
|
85
|
+
# to column 1. \e[F is equivalent to \e[1F.
|
|
86
|
+
#
|
|
87
|
+
# * \e[#G
|
|
88
|
+
#
|
|
89
|
+
# CHA: Cursor Horizontal Absolute: Moves the cursor to indicated column in
|
|
90
|
+
# current row. \e[G is equivalent to \e[1G.
|
|
91
|
+
#
|
|
92
|
+
# * \e[#;#H
|
|
93
|
+
#
|
|
94
|
+
# CUP: CUrsor Position: Moves the cursor to the specified position. The first #
|
|
95
|
+
# specifies the line number, the second # specifies the column.
|
|
96
|
+
# If you do not specify a position, the cursor moves to the
|
|
97
|
+
# home position: the upper-left corner of the screen (line 1, column 1).
|
|
98
|
+
#
|
|
99
|
+
# * \e[#;#f
|
|
100
|
+
#
|
|
101
|
+
# HVP: Horizontal and Vertical Position.
|
|
102
|
+
# Works the same way as the preceding escape sequence.
|
|
103
|
+
#
|
|
104
|
+
# * \e[s
|
|
105
|
+
#
|
|
106
|
+
# SCP: Save Cursor Position: Saves the current cursor position. You can move
|
|
107
|
+
# the cursor to the saved cursor position by using the Restore Cursor
|
|
108
|
+
# Position sequence.
|
|
109
|
+
#
|
|
110
|
+
# * \e[u
|
|
111
|
+
#
|
|
112
|
+
# RCP: Restore Cursor Position: Returns the cursor to the position stored
|
|
113
|
+
# by the Save Cursor Position sequence.
|
|
114
|
+
#
|
|
115
|
+
# == Escape sequences for Display Edition
|
|
116
|
+
#
|
|
117
|
+
# * \e[#J
|
|
118
|
+
#
|
|
119
|
+
# ED: Erase Display:
|
|
120
|
+
#
|
|
121
|
+
# * \e[0J
|
|
122
|
+
#
|
|
123
|
+
# Clears the screen from cursor to end of display. The cursor position is unchanged.
|
|
124
|
+
#
|
|
125
|
+
# * \e[1J
|
|
126
|
+
#
|
|
127
|
+
# Clears the screen from start to cursor. The cursor position is unchanged.
|
|
128
|
+
#
|
|
129
|
+
# * \e[2J
|
|
130
|
+
#
|
|
131
|
+
# Clears the screen and moves the cursor to the home position (line 1, column 1).
|
|
132
|
+
#
|
|
133
|
+
# \e[J is equivalent to \e[0J. (Some terminal/emulators respond to \e[J as if
|
|
134
|
+
# it were \e[2J. Here, the default is 0; it's the norm)
|
|
135
|
+
#
|
|
136
|
+
# * \e[#K
|
|
137
|
+
#
|
|
138
|
+
# EL: Erase Line:
|
|
139
|
+
#
|
|
140
|
+
# * \e[0K
|
|
141
|
+
#
|
|
142
|
+
# Clears all characters from the cursor position to the end of the line
|
|
143
|
+
# (including the character at the cursor position).
|
|
144
|
+
# The cursor position is unchanged.
|
|
145
|
+
#
|
|
146
|
+
# * \e[1K
|
|
147
|
+
#
|
|
148
|
+
# Clears all characters from start of line to the cursor position.
|
|
149
|
+
# (including the character at the cursor position).
|
|
150
|
+
# The cursor position is unchanged.
|
|
151
|
+
#
|
|
152
|
+
# * \e[2K
|
|
153
|
+
#
|
|
154
|
+
# Clears all characters of the whole line.
|
|
155
|
+
# The cursor position is unchanged.
|
|
156
|
+
#
|
|
157
|
+
# \e[K is equivalent to \e[0K.
|
|
158
|
+
#
|
|
159
|
+
# * \e[#L
|
|
160
|
+
#
|
|
161
|
+
# IL: Insert Lines: The cursor line and all lines below it move down # lines,
|
|
162
|
+
# leaving blank space. The cursor position is unchanged. The bottommost #
|
|
163
|
+
# lines are lost. \e[L is equivalent to \e[1L.
|
|
164
|
+
#
|
|
165
|
+
# * \e[#M
|
|
166
|
+
#
|
|
167
|
+
# DL: Delete Line: The block of # lines at and below the cursor are deleted;
|
|
168
|
+
# all lines below them move up # lines to fill in the gap, leaving # blank
|
|
169
|
+
# lines at the bottom of the screen. The cursor position is unchanged.
|
|
170
|
+
# \e[M is equivalent to \e[1M.
|
|
171
|
+
#
|
|
172
|
+
# * \e#\@
|
|
173
|
+
#
|
|
174
|
+
# ICH: Insert CHaracter: The cursor character and all characters to the right
|
|
175
|
+
# of it move right # columns, leaving behind blank space.
|
|
176
|
+
# The cursor position is unchanged. The rightmost # characters on the line are lost.
|
|
177
|
+
#
|
|
178
|
+
# * \e[#P
|
|
179
|
+
#
|
|
180
|
+
# DCH: Delete CHaracter: The block of # characters at and to the right of the
|
|
181
|
+
# cursor are deleted; all characters to the right of it move left # columns,
|
|
182
|
+
# leaving behind blank space. The cursor position is unchanged.
|
|
183
|
+
# \e[P is equivalent to \e[1P.
|
|
184
|
+
#
|
|
185
|
+
#
|
|
186
|
+
# == Escape sequences for Set Graphics Rendition
|
|
187
|
+
#
|
|
188
|
+
# * \e[#;...;#m
|
|
189
|
+
#
|
|
190
|
+
# SGM: Set Graphics Mode: Calls the graphics functions specified by the
|
|
191
|
+
# following values. These specified functions remain active until the next
|
|
192
|
+
# occurrence of this escape sequence. Graphics mode changes the colors and
|
|
193
|
+
# attributes of text (such as bold and underline) displayed on the
|
|
194
|
+
# screen.
|
|
195
|
+
#
|
|
196
|
+
# * Text attributes
|
|
197
|
+
#
|
|
198
|
+
# 0 All attributes off
|
|
199
|
+
# 1 Bold on
|
|
200
|
+
# 4 Underscore on
|
|
201
|
+
# 7 Reverse video on
|
|
202
|
+
# 8 Concealed on
|
|
203
|
+
#
|
|
204
|
+
# 21 Bold off
|
|
205
|
+
# 24 Underscore off
|
|
206
|
+
# 27 Reverse video off
|
|
207
|
+
# 28 Concealed off
|
|
208
|
+
#
|
|
209
|
+
# * Foreground colors
|
|
210
|
+
#
|
|
211
|
+
# 30 Black
|
|
212
|
+
# 31 Red
|
|
213
|
+
# 32 Green
|
|
214
|
+
# 33 Yellow
|
|
215
|
+
# 34 Blue
|
|
216
|
+
# 35 Magenta
|
|
217
|
+
# 36 Cyan
|
|
218
|
+
# 37 White
|
|
219
|
+
#
|
|
220
|
+
# * Background colors
|
|
221
|
+
#
|
|
222
|
+
# 40 Black
|
|
223
|
+
# 41 Red
|
|
224
|
+
# 42 Green
|
|
225
|
+
# 43 Yellow
|
|
226
|
+
# 44 Blue
|
|
227
|
+
# 45 Magenta
|
|
228
|
+
# 46 Cyan
|
|
229
|
+
# 47 White
|
|
230
|
+
#
|
|
231
|
+
# \e[m is equivalent to \e0m.
|
|
232
|
+
#
|
|
233
|
+
# == Escape sequences for Select Character Set
|
|
234
|
+
#
|
|
235
|
+
# * \e(U
|
|
236
|
+
#
|
|
237
|
+
# Select null mapping - straight to character from the codepage of the console.
|
|
238
|
+
#
|
|
239
|
+
# * \e(K
|
|
240
|
+
#
|
|
241
|
+
# Select Windows to DOS mapping, if the corresponding map exist; no effect
|
|
242
|
+
# otherwise. This is the default mapping (if the map exist, of course). It's
|
|
243
|
+
# useful becarequire "one types the script with a Windows-based editor (using a
|
|
244
|
+
# Windows codepage) and the script prints its messages on the console using
|
|
245
|
+
# another codepage: without translation, the characters with a code greatest
|
|
246
|
+
# than 127 are different and the printed messages may be not readable.
|
|
247
|
+
#
|
|
248
|
+
# The conversion is done by the module Encode if it is installed (it's a
|
|
249
|
+
# standard module with Perl5.8, not Ruby yet). Otherwise, the conversion is limited to the
|
|
250
|
+
# following couples:
|
|
251
|
+
#
|
|
252
|
+
# WinLatin1 (cp1252) to DOSLatin1 (cp850)
|
|
253
|
+
# WinLatin1 (cp1252) to DOSLatinUS (cp437)
|
|
254
|
+
# WinLatin2 (cp1250) to DOSLatin2 (cp852)
|
|
255
|
+
# WinCyrillic(cp1251) to DOSCyrillic (cp855)
|
|
256
|
+
#
|
|
257
|
+
# * \e(#X
|
|
258
|
+
#
|
|
259
|
+
# This escape sequence is I<not> standard! It's an experimental one, just for
|
|
260
|
+
# fun :-)
|
|
261
|
+
#
|
|
262
|
+
# If <i>and only if</i> the console uses an Unicode police, it is possible to
|
|
263
|
+
# change its codepage with this escape sequence. No effect with an ordinary
|
|
264
|
+
# "Raster Font". (For Windows NT/2000/XP the currently available Unicode
|
|
265
|
+
# console font is the Lucida Console TrueType font.)
|
|
266
|
+
# # is the number of the codepage needed, 855 for cp855 for instance.
|
|
267
|
+
#
|
|
268
|
+
#
|
|
269
|
+
# = LIMITATIONS
|
|
270
|
+
#
|
|
271
|
+
# * Due to DOS-console limitations, the blink mode (text attributes 5 and 25) is not implemented.
|
|
272
|
+
#
|
|
273
|
+
# = SEE ALSO
|
|
274
|
+
#
|
|
275
|
+
# <b>Win32::Console</b>, <b>Term::ANSIColor</b>, <b>Term::ANSIScreen</b>.
|
|
276
|
+
#
|
|
277
|
+
# = AUTHOR
|
|
278
|
+
#
|
|
279
|
+
# J-L Morel jl_morel@bribes.org
|
|
280
|
+
#
|
|
281
|
+
# Home page: http://www.bribes.org/perl/wANSIConsole.html
|
|
282
|
+
#
|
|
283
|
+
# Gonzalo Garramu�o GGarramuno@aol.com Ruby port
|
|
284
|
+
#
|
|
285
|
+
# = CREDITS
|
|
286
|
+
#
|
|
287
|
+
# Render unto C�sar the things which are C�sar's...
|
|
288
|
+
#
|
|
289
|
+
# This module requires the module Win32::Console. Thanks to Aldo Calpini.
|
|
290
|
+
#
|
|
291
|
+
# The method used to overload the print function is due to Matt Sergeant
|
|
292
|
+
# (see his module Win32::ASP).
|
|
293
|
+
#
|
|
294
|
+
# = COPYRIGHT
|
|
295
|
+
#
|
|
296
|
+
# Copyright (c) 2004 Gonzalo Garramu�o. All rights reserved.
|
|
297
|
+
# Copyright (c) 2003 J-L Morel. All rights reserved.
|
|
298
|
+
#
|
|
299
|
+
# This program is free software; you can redistribute it and/or modify it under
|
|
300
|
+
# the terms of the Artistic License.
|
|
301
|
+
#
|
|
302
|
+
#
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,357 @@
|
|
|
1
|
+
# encoding: utf-8
|
|
2
|
+
|
|
3
|
+
#
|
|
4
|
+
# Win32::Console::ANSI
|
|
5
|
+
#
|
|
6
|
+
# Copyright 2004 - Gonzalo Garramuno
|
|
7
|
+
# Licensed under GNU General Public License or Perl's Artistic License
|
|
8
|
+
#
|
|
9
|
+
# Based on Perl's Win32::Console::ANSI
|
|
10
|
+
# Copyright (c) 2003 Jean-Louis Morel <jl_morel@bribes.org>
|
|
11
|
+
# Licensed under GNU General Public License or Perl's Artistic License
|
|
12
|
+
#
|
|
13
|
+
require "Win32/Console"
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
module Kernel
|
|
17
|
+
|
|
18
|
+
# Kernel#putc is equivalent to $stdout.putc, but
|
|
19
|
+
# it doesn't use $stdout.putc. We redefine it to do that
|
|
20
|
+
# so that it will buffer the escape sequences properly.
|
|
21
|
+
# See Win32::Console::ANSI::IO#putc
|
|
22
|
+
remove_method :putc
|
|
23
|
+
def putc(int)
|
|
24
|
+
$stdout.putc(int)
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
module Win32
|
|
30
|
+
class Console
|
|
31
|
+
module ANSI
|
|
32
|
+
|
|
33
|
+
class IO < IO
|
|
34
|
+
|
|
35
|
+
VERSION = '0.05'
|
|
36
|
+
DEBUG = nil
|
|
37
|
+
|
|
38
|
+
require "win32/registry"
|
|
39
|
+
|
|
40
|
+
include Win32::Console::Constants
|
|
41
|
+
|
|
42
|
+
FD_STD_MAP = {
|
|
43
|
+
:stdout => [1, STD_OUTPUT_HANDLE],
|
|
44
|
+
:stderr => [2, STD_ERROR_HANDLE]
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
# @todo: encode is another perl module
|
|
48
|
+
EncodeOk = false
|
|
49
|
+
|
|
50
|
+
# Retrieving the codepages
|
|
51
|
+
cpANSI = nil
|
|
52
|
+
Win32::Registry::HKEY_LOCAL_MACHINE.open('SYSTEM\CurrentControlSet\Control\Nls\CodePage' ) { |reg|
|
|
53
|
+
cpANSI = reg['ACP']
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
STDERR.puts "Unable to read Win codepage #{cpANSI}" if DEBUG && !cpANSI
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
cpANSI = 'cp'+(cpANSI ? cpANSI : '1252') # Windows codepage
|
|
60
|
+
OEM = Win32::Console::OutputCP()
|
|
61
|
+
cpOEM = 'cp' + OEM.to_s # DOS codepage
|
|
62
|
+
@@cp = cpANSI + cpOEM
|
|
63
|
+
|
|
64
|
+
STDERR.puts "EncodeOk=#{EncodeOk} cpANSI=#{cpANSI} "+
|
|
65
|
+
"cpOEM=#{cpOEM}" if DEBUG
|
|
66
|
+
|
|
67
|
+
@@color = { 30 => 0, # black foreground
|
|
68
|
+
31 => FOREGROUND_RED, # red foreground
|
|
69
|
+
32 => FOREGROUND_GREEN, # green foreground
|
|
70
|
+
33 => FOREGROUND_RED|FOREGROUND_GREEN, # yellow foreground
|
|
71
|
+
34 => FOREGROUND_BLUE, # blue foreground
|
|
72
|
+
35 => FOREGROUND_BLUE|FOREGROUND_RED, # magenta foreground
|
|
73
|
+
36 => FOREGROUND_BLUE|FOREGROUND_GREEN, # cyan foreground
|
|
74
|
+
37 => FOREGROUND_RED|FOREGROUND_GREEN|FOREGROUND_BLUE, # white foreground
|
|
75
|
+
40 => 0, # black background
|
|
76
|
+
41 => BACKGROUND_RED, # red background
|
|
77
|
+
42 => BACKGROUND_GREEN, # green background
|
|
78
|
+
43 => BACKGROUND_RED|BACKGROUND_GREEN, # yellow background
|
|
79
|
+
44 => BACKGROUND_BLUE, # blue background
|
|
80
|
+
45 => BACKGROUND_BLUE|BACKGROUND_RED, # magenta background
|
|
81
|
+
46 => BACKGROUND_BLUE|BACKGROUND_GREEN, # cyan background
|
|
82
|
+
47 => BACKGROUND_RED|BACKGROUND_GREEN|BACKGROUND_BLUE, # white background
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
def initialize(fd_std = :stdout)
|
|
86
|
+
fd, handle = FD_STD_MAP[fd_std]
|
|
87
|
+
super(fd, 'w')
|
|
88
|
+
@Out = Win32::Console.new(handle)
|
|
89
|
+
@x = @y = 0 # to save cursor position
|
|
90
|
+
|
|
91
|
+
# None of these calls will work, when we are redirected
|
|
92
|
+
unless redirected?
|
|
93
|
+
@default_foreground = @Out.DefaultForeground
|
|
94
|
+
@default_background = @Out.DefaultBackground
|
|
95
|
+
@default_bold = @Out.DefaultBold
|
|
96
|
+
@default_underline = @Out.DefaultUnderline
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
@foreground = @default_foreground
|
|
100
|
+
@background = @default_background
|
|
101
|
+
@bold = @default_bold
|
|
102
|
+
@underline = @default_underline
|
|
103
|
+
@revideo =
|
|
104
|
+
@concealed = nil
|
|
105
|
+
@conv = 1 # char conversion by default
|
|
106
|
+
@buffer = []
|
|
107
|
+
STDERR.puts "Console Mode=#{@Out.Mode}" if DEBUG
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
# this redefined #putc buffers escape sequences but passes
|
|
111
|
+
# other values to #write as normal.
|
|
112
|
+
def putc(int)
|
|
113
|
+
int = int.ord if RUBY_VERSION >= "1.9"
|
|
114
|
+
if @buffer.empty?
|
|
115
|
+
# match \e
|
|
116
|
+
unless int == 27
|
|
117
|
+
write(int.chr)
|
|
118
|
+
else
|
|
119
|
+
@buffer << int
|
|
120
|
+
end
|
|
121
|
+
else
|
|
122
|
+
@buffer << int
|
|
123
|
+
case int
|
|
124
|
+
# match m, J, L, M, @, P, A, B, C, D, E, F, G, H, f, s, u, U, K, X
|
|
125
|
+
when 109, 74, 76, 77, 64, 80, 65, 66, 67, 68,
|
|
126
|
+
69, 70, 71, 72, 102, 115, 117, 85, 75, 88
|
|
127
|
+
write(@buffer.pack("c*"))
|
|
128
|
+
@buffer.clear
|
|
129
|
+
end
|
|
130
|
+
end
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
# #write checks if $stdout is going to the console
|
|
134
|
+
# or if it's being redirected.
|
|
135
|
+
# When to the console, it passes the string to
|
|
136
|
+
# _PrintString to be parsed for escape codes.
|
|
137
|
+
#
|
|
138
|
+
# When redirected, it passes to WriteFile to allow escape
|
|
139
|
+
# codes and all to be output. The application that is
|
|
140
|
+
# handling the redirected IO should handle coloring.
|
|
141
|
+
# For Ruby applications, this means requiring Win32Conole again.
|
|
142
|
+
def write(*s)
|
|
143
|
+
if redirected?
|
|
144
|
+
s.each{ |x| @Out.WriteFile(x.dup.to_s) }
|
|
145
|
+
else
|
|
146
|
+
s.each{ |x| _PrintString(x) }
|
|
147
|
+
end
|
|
148
|
+
end
|
|
149
|
+
|
|
150
|
+
# Returns true if output is being redirected to something other then a
|
|
151
|
+
# terminal.
|
|
152
|
+
#
|
|
153
|
+
# For now just checks the status of Win32::Console#redirected?
|
|
154
|
+
def redirected?
|
|
155
|
+
@Out.redirected?
|
|
156
|
+
end
|
|
157
|
+
|
|
158
|
+
private
|
|
159
|
+
|
|
160
|
+
def _PrintString(t)
|
|
161
|
+
s = t.dup.to_s
|
|
162
|
+
while s != ''
|
|
163
|
+
if s.sub!( /([^\e]*)?\e([\[\(])([0-9\;\=]*)([a-zA-Z@])(.*)/, '\5')
|
|
164
|
+
@Out.Write((_conv("#$1")))
|
|
165
|
+
if $2 == '['
|
|
166
|
+
case $4
|
|
167
|
+
when 'm' # ESC[#;#;....;#m Set display attributes
|
|
168
|
+
attributs = $3.split(';')
|
|
169
|
+
attributs.push(nil) unless attributs # ESC[m == ESC[;m ==...==ESC[0m
|
|
170
|
+
attributs.each do |attr|
|
|
171
|
+
atv = attr.to_i
|
|
172
|
+
case atv
|
|
173
|
+
when 0 # ESC[0m reset
|
|
174
|
+
@foreground = @default_foreground
|
|
175
|
+
@background = @default_background
|
|
176
|
+
@bold = @default_bold
|
|
177
|
+
@underline = @default_underline
|
|
178
|
+
@revideo =
|
|
179
|
+
@concealed = nil
|
|
180
|
+
when 1
|
|
181
|
+
@bold = 1
|
|
182
|
+
when 21
|
|
183
|
+
@bold = nil
|
|
184
|
+
when 4
|
|
185
|
+
@underline = 1
|
|
186
|
+
when 24
|
|
187
|
+
@underline = nil
|
|
188
|
+
when 7
|
|
189
|
+
@revideo = 1
|
|
190
|
+
when 27
|
|
191
|
+
@revideo = nil
|
|
192
|
+
when 8
|
|
193
|
+
@concealed = 1
|
|
194
|
+
when 28
|
|
195
|
+
@concealed = nil
|
|
196
|
+
when 30..37
|
|
197
|
+
@foreground = atv - 30
|
|
198
|
+
when 40..47
|
|
199
|
+
@background = atv - 40
|
|
200
|
+
end
|
|
201
|
+
end
|
|
202
|
+
|
|
203
|
+
if @revideo
|
|
204
|
+
attribut = @@color[40+@foreground] |
|
|
205
|
+
@@color[30+@background]
|
|
206
|
+
else
|
|
207
|
+
attribut = @@color[30+@foreground] |
|
|
208
|
+
@@color[40+@background]
|
|
209
|
+
end
|
|
210
|
+
attribut |= FOREGROUND_INTENSITY if @bold
|
|
211
|
+
attribut |= BACKGROUND_INTENSITY if @underline
|
|
212
|
+
@Out.Attr(attribut)
|
|
213
|
+
when 'J'
|
|
214
|
+
if !$3 or $3 == '' # ESC[0J from cursor to end of display
|
|
215
|
+
info = @Out.Info()
|
|
216
|
+
s = ' ' * ((info[1]-info[3]-1)*info[0]+info[0]-info[2]-1)
|
|
217
|
+
@Out.WriteChar(s, info[2], info[3])
|
|
218
|
+
@Out.Cursor(info[2], info[3])
|
|
219
|
+
elsif $3 == '1' # ESC[1J erase from start to cursor.
|
|
220
|
+
info = @Out.Info()
|
|
221
|
+
s = ' ' * (info[3]*info[0]+info[2]+1)
|
|
222
|
+
@Out.WriteChar(s, 0, 0)
|
|
223
|
+
@Out.Cursor(info[2], info[3])
|
|
224
|
+
elsif $3 == '2' # ESC[2J Clear screen and home cursor
|
|
225
|
+
@Out.Cls()
|
|
226
|
+
@Out.Cursor(0, 0)
|
|
227
|
+
else
|
|
228
|
+
STDERR.print "\e#$2#$3#$4" if DEBUG # if ESC-code not implemented
|
|
229
|
+
end
|
|
230
|
+
when 'K'
|
|
231
|
+
info = @Out.Info()
|
|
232
|
+
if !$3 or $3 == '' # ESC[0K Clear to end of line
|
|
233
|
+
s = ' ' * (info[7]-info[2]+1)
|
|
234
|
+
@Out.Write(s)
|
|
235
|
+
@Out.Cursor(info[2], info[3])
|
|
236
|
+
elsif $3=='1' # ESC[1K Clear from start of line to cursor
|
|
237
|
+
s = ' '*(info[2]+1)
|
|
238
|
+
@Out.WriteChar(s, 0, info[3])
|
|
239
|
+
@Out.Cursor(info[2], info[3])
|
|
240
|
+
elsif $3=='2' # ESC[2K Clear whole line.
|
|
241
|
+
s = ' '* info[0]
|
|
242
|
+
@Out.WriteChar(s, 0, info[3])
|
|
243
|
+
@Out.Cursor(info[2], info[3])
|
|
244
|
+
end
|
|
245
|
+
when 'L' # ESC[#L Insert # blank lines.
|
|
246
|
+
n = $3 == ''? 1 : $3.to_i # ESC[L == ESC[1L
|
|
247
|
+
info = @Out.Info()
|
|
248
|
+
@Out.Scroll(0, info[3], info[0]-1, info[1]-1,
|
|
249
|
+
0, info[3] + n.to_i,
|
|
250
|
+
' '[0], @Out.Attr(),
|
|
251
|
+
0, 0, 10000, 10000)
|
|
252
|
+
@Out.Cursor(info[2], info[3])
|
|
253
|
+
when 'M' # ESC[#M Delete # line.
|
|
254
|
+
n = $3 == ''? 1 : $3.to_i # ESC[M == ESC[1M
|
|
255
|
+
info = @Out.Info();
|
|
256
|
+
@Out.Scroll(0, info[3]+n, info[0]-1, info[1]-1,
|
|
257
|
+
0, info[3],
|
|
258
|
+
' '[0], @Out.Attr(),
|
|
259
|
+
0, 0, 10000, 10000)
|
|
260
|
+
@Out.Cursor(info[2], info[3])
|
|
261
|
+
when 'P' # ESC[#P Delete # characters.
|
|
262
|
+
n = $3 == ''? 1 : $3.to_i # ESC[P == ESC[1P
|
|
263
|
+
info = @Out.Info()
|
|
264
|
+
n = info[0]-info[2] if info[2]+n > info[0]-1
|
|
265
|
+
@Out.Scroll(info[2]+n, info[3] , info[0]-1, info[3],
|
|
266
|
+
info[2], info[3],
|
|
267
|
+
' '[0], @Out.Attr(),
|
|
268
|
+
0, 0, 10000, 10000)
|
|
269
|
+
s = ' ' * n
|
|
270
|
+
@Out.Cursor(info[0]-n, info[3])
|
|
271
|
+
@Out.Write(s)
|
|
272
|
+
@Out.Cursor(info[2], info[3])
|
|
273
|
+
when '@' # ESC[#@ Insert # blank Characters
|
|
274
|
+
s = ' ' * $3.to_i
|
|
275
|
+
info = @Out.Info()
|
|
276
|
+
s << @Out.ReadChar(info[7]-info[2]+1, info[2], info[3])
|
|
277
|
+
s = s[0..-($3.to_i)]
|
|
278
|
+
@Out.Write(s);
|
|
279
|
+
@Out.Cursor(info[2], info[3])
|
|
280
|
+
when 'A' # ESC[#A Moves cursor up # lines
|
|
281
|
+
(x, y) = @Out.Cursor()
|
|
282
|
+
n = $3 == ''? 1 : $3.to_i; # ESC[A == ESC[1A
|
|
283
|
+
@Out.Cursor(x, y-n)
|
|
284
|
+
when 'B' # ESC[#B Moves cursor down # lines
|
|
285
|
+
(x, y) = @Out.Cursor()
|
|
286
|
+
n = $3 == ''? 1 : $3.to_i; # ESC[B == ESC[1B
|
|
287
|
+
@Out.Cursor(x, y+n)
|
|
288
|
+
when 'C' # ESC[#C Moves cursor forward # spaces
|
|
289
|
+
(x, y) = @Out.Cursor()
|
|
290
|
+
n = $3 == ''? 1 : $3.to_i; # ESC[C == ESC[1C
|
|
291
|
+
@Out.Cursor(x+n, y)
|
|
292
|
+
when 'D' # ESC[#D Moves cursor back # spaces
|
|
293
|
+
(x, y) = @Out.Cursor()
|
|
294
|
+
n = $3 == ''? 1 : $3.to_i; # ESC[D == ESC[1D
|
|
295
|
+
@Out.Cursor(x-n, y)
|
|
296
|
+
when 'E' # ESC[#E Moves cursor down # lines, column 1.
|
|
297
|
+
x, y = @Out.Cursor()
|
|
298
|
+
n = $3 == ''? 1 : $3.to_i; # ESC[E == ESC[1E
|
|
299
|
+
@Out.Cursor(0, y+n)
|
|
300
|
+
when 'F' # ESC[#F Moves cursor up # lines, column 1.
|
|
301
|
+
x, y = @Out.Cursor()
|
|
302
|
+
n = $3 == ''? 1 : $3.to_i; # ESC[F == ESC[1F
|
|
303
|
+
@Out.Cursor(0, y-n)
|
|
304
|
+
when 'G' # ESC[#G Moves cursor column # in current row.
|
|
305
|
+
x, y = @Out.Cursor()
|
|
306
|
+
n = $3 == ''? 1 : $3.to_i; # ESC[G == ESC[1G
|
|
307
|
+
@Out.Cursor(n-1, y)
|
|
308
|
+
when 'f' # ESC[#;#f Moves cursor to line #, column #
|
|
309
|
+
y, x = $3.split(';')
|
|
310
|
+
x = 1 unless x # ESC[;5H == ESC[1;5H ...etc
|
|
311
|
+
y = 1 unless y
|
|
312
|
+
@Out.Cursor(x.to_i-1, y.to_i-1) # origin (0,0) in DOS console
|
|
313
|
+
when 'H' # ESC[#;#H Moves cursor to line #, column #
|
|
314
|
+
y, x = $3.split(';')
|
|
315
|
+
x = 1 unless x # ESC[;5H == ESC[1;5H ...etc
|
|
316
|
+
y = 1 unless y
|
|
317
|
+
@Out.Cursor(x.to_i-1, y.to_i-1) # origin (0,0) in DOS console
|
|
318
|
+
when 's' # ESC[s Saves cursor position for recall later
|
|
319
|
+
(@x, @y) = @Out.Cursor()
|
|
320
|
+
when 'u' # ESC[u Return to saved cursor position
|
|
321
|
+
@Out.Cursor(@x, @y)
|
|
322
|
+
when 'U' # ESC(U no mapping
|
|
323
|
+
@conv = nil
|
|
324
|
+
when 'K' # ESC(K mapping if it exist
|
|
325
|
+
@Out.OutputCP(OEM) # restore original codepage
|
|
326
|
+
@conv = 1
|
|
327
|
+
when 'X' # ESC(#X codepage **EXPERIMENTAL**
|
|
328
|
+
@conv = nil
|
|
329
|
+
@Out.OutputCP($3)
|
|
330
|
+
else
|
|
331
|
+
STDERR.puts "\e#$2#$3#$4 not implemented" if DEBUG # ESC-code not implemented
|
|
332
|
+
end
|
|
333
|
+
end
|
|
334
|
+
else
|
|
335
|
+
@Out.Write(_conv(s))
|
|
336
|
+
s=''
|
|
337
|
+
end
|
|
338
|
+
end
|
|
339
|
+
end
|
|
340
|
+
|
|
341
|
+
def _conv(s)
|
|
342
|
+
if @concealed
|
|
343
|
+
s.gsub!( /\S/,' ')
|
|
344
|
+
end
|
|
345
|
+
return s
|
|
346
|
+
end
|
|
347
|
+
|
|
348
|
+
end
|
|
349
|
+
|
|
350
|
+
# end print overloading
|
|
351
|
+
|
|
352
|
+
end
|
|
353
|
+
end
|
|
354
|
+
end
|
|
355
|
+
|
|
356
|
+
$stdout = Win32::Console::ANSI::IO.new(:stdout)
|
|
357
|
+
$stderr = Win32::Console::ANSI::IO.new(:stderr)
|