ping

On 2019-04-15 17.38.01 +0000, Mike Burns wrote:
> gitsh 0.14[1] brings a lot more tab completion improvements.
> 
> Part of this is that it installs an `/etc/completions` with
> user-overridable tab completions, useful for adding your own git
> subcommands. Thanks to afresh1@ for advice on how to do that[2]. Did I
> do it right?
> 
> As usual, long PLIST diff because they bumped some vendored ruby
> libraries.
> 
> [1]: https://github.com/thoughtbot/gitsh/releases/tag/v0.14
> [2]: https://bsd.network/@AFresh1/101837346684902378
> 
> ---
> 
> Index: Makefile
> ===================================================================
> RCS file: /cvs/ports/devel/gitsh/Makefile,v
> retrieving revision 1.10
> diff -u -p -r1.10 Makefile
> --- Makefile  13 Jan 2019 14:00:56 -0000      1.10
> +++ Makefile  5 Apr 2019 21:37:35 -0000
> @@ -1,6 +1,6 @@
>  # $OpenBSD: Makefile,v 1.10 2019/01/13 14:00:56 rsadowski Exp $
>  
> -VERSION =            0.13
> +VERSION =            0.14
>  
>  COMMENT =            interactive shell for git
>  
> @@ -24,6 +24,7 @@ RUN_DEPENDS =               devel/git
>  LIB_DEPENDS =                devel/readline
>  
>  CONFIGURE_STYLE =    gnu
> +FAKE_FLAGS =         pkgsysconfdir="${PREFIX}/share/examples/gitsh"
>  CONFIGURE_ENV =              READLINE_LIB="ereadline" \
>                       CPPFLAGS="-I${LOCALBASE}/include/ereadline" \
>                       LDFLAGS="-L${LOCALBASE}/lib" \
> Index: distinfo
> ===================================================================
> RCS file: /cvs/ports/devel/gitsh/distinfo,v
> retrieving revision 1.6
> diff -u -p -r1.6 distinfo
> --- distinfo  13 Jan 2019 14:00:56 -0000      1.6
> +++ distinfo  5 Apr 2019 21:37:35 -0000
> @@ -1,2 +1,2 @@
> -SHA256 (gitsh-0.13.tar.gz) = bDjbU4d/LESEAg8GgaRPEaKc5NHh2ssGK65JwvLDoqA=
> -SIZE (gitsh-0.13.tar.gz) = 1180908
> +SHA256 (gitsh-0.14.tar.gz) = S4m20AYyantXxMjkQFlOR322G30/4mM6iq0Xa7GdASU=
> +SIZE (gitsh-0.14.tar.gz) = 1171693
> Index: pkg/PLIST
> ===================================================================
> RCS file: /cvs/ports/devel/gitsh/pkg/PLIST,v
> retrieving revision 1.7
> diff -u -p -r1.7 PLIST
> --- pkg/PLIST 13 Jan 2019 14:00:56 -0000      1.7
> +++ pkg/PLIST 5 Apr 2019 21:37:35 -0000
> @@ -2,6 +2,10 @@
>  @bin bin/gitsh
>  @man man/man1/gitsh.1
>  @man man/man5/gitsh_completions.5
> +share/examples/gitsh/
> +@sample ${SYSCONFDIR}/gitsh/
> +share/examples/gitsh/completions
> +@sample ${SYSCONFDIR}/gitsh/completions
>  share/gitsh/
>  share/gitsh/ruby/
>  share/gitsh/ruby/gitsh.rb
> @@ -52,6 +56,7 @@ share/gitsh/ruby/lib/gitsh/prompter.rb
>  share/gitsh/ruby/lib/gitsh/quote_detector.rb
>  share/gitsh/ruby/lib/gitsh/shell_command_runner.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/
> +share/gitsh/ruby/lib/gitsh/tab_completion/alias_expander.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/automaton.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/automaton_factory.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/command_completer.rb
> @@ -60,10 +65,12 @@ share/gitsh/ruby/lib/gitsh/tab_completio
>  share/gitsh/ruby/lib/gitsh/tab_completion/dsl.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/dsl/choice_factory.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/dsl/concatenation_factory.rb
> +share/gitsh/ruby/lib/gitsh/tab_completion/dsl/fallback_transition_factory.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/dsl/lexer.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/dsl/maybe_operation_factory.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/dsl/null_factory.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/dsl/option_transition_factory.rb
> +share/gitsh/ruby/lib/gitsh/tab_completion/dsl/parse_error.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/dsl/parser.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/dsl/plus_operation_factory.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/dsl/rule_factory.rb
> @@ -76,551 +83,659 @@ share/gitsh/ruby/lib/gitsh/tab_completio
>  share/gitsh/ruby/lib/gitsh/tab_completion/matchers/
>  share/gitsh/ruby/lib/gitsh/tab_completion/matchers/anything_matcher.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/matchers/base_matcher.rb
> +share/gitsh/ruby/lib/gitsh/tab_completion/matchers/branch_matcher.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/matchers/command_matcher.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/matchers/path_matcher.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/matchers/remote_matcher.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/matchers/revision_matcher.rb
> +share/gitsh/ruby/lib/gitsh/tab_completion/matchers/tag_matcher.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/matchers/text_matcher.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/matchers/unknown_option_matcher.rb
> +share/gitsh/ruby/lib/gitsh/tab_completion/tokens_to_words.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/variable_completer.rb
>  share/gitsh/ruby/lib/gitsh/tab_completion/visualization.rb
>  share/gitsh/ruby/lib/gitsh/terminal.rb
>  share/gitsh/ruby/lib/gitsh/version.rb
>  share/gitsh/vendor/
>  share/gitsh/vendor/gems/
> -share/gitsh/vendor/gems/ffi-1.9.17/
> -share/gitsh/vendor/gems/ffi-1.9.17/COPYING
> -share/gitsh/vendor/gems/ffi-1.9.17/LICENSE
> -share/gitsh/vendor/gems/ffi-1.9.17/README.md
> -share/gitsh/vendor/gems/ffi-1.9.17/Rakefile
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/AbstractMemory.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/AbstractMemory.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/ArrayType.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/ArrayType.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/Buffer.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/Call.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/Call.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/ClosurePool.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/ClosurePool.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/DataConverter.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/DynamicLibrary.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/DynamicLibrary.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/Function.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/Function.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/FunctionInfo.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/LastError.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/LastError.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/LongDouble.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/LongDouble.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/MappedType.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/MappedType.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/MemoryPointer.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/MemoryPointer.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/MethodHandle.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/MethodHandle.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/Platform.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/Platform.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/Pointer.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/Pointer.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/Struct.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/Struct.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/StructByReference.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/StructByReference.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/StructByValue.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/StructByValue.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/StructLayout.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/Thread.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/Thread.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/Type.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/Type.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/Types.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/Types.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/Variadic.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/compat.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/extconf.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/ffi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi.bsd.mk
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi.darwin.mk
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi.gnu.mk
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi.mk
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi.vc.mk
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi.vc64.mk
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/ChangeLog
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/ChangeLog.libffi
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/ChangeLog.libgcj
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/ChangeLog.v1
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/LICENSE
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/Makefile.am
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/Makefile.in
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/Makefile.vc
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/Makefile.vc64
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/README
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/acinclude.m4
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/aclocal.m4
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/build-ios.sh
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/compile
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/config.guess
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/config.sub
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/configure
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/configure.ac
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/configure.host
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/depcomp
> -@info share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/doc/
> -@info share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/doc/libffi.info
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/doc/libffi.texi
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/doc/stamp-vti
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/doc/version.texi
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/fficonfig.h.in
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/fficonfig.hw
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/include/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/include/Makefile.am
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/include/Makefile.in
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/include/ffi.h.in
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/include/ffi.h.vc
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/include/ffi.h.vc64
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/include/ffi_common.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/install-sh
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/libffi.pc.in
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/libtool-version
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/ltmain.sh
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/m4/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/m4/ax_check_compiler_flags.m4
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/m4/ax_configure_args.m4
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/m4/ax_enable_builddir.m4
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/m4/libtool.m4
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/m4/ltoptions.m4
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/m4/ltsugar.m4
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/m4/ltversion.m4
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/m4/lt~obsolete.m4
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/man/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/man/Makefile.am
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/man/Makefile.in
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/man/ffi.3
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/man/ffi_call.3
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/man/ffi_prep_cif.3
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/mdate-sh
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/missing
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/msvcc.sh
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/alpha/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/alpha/ffi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/alpha/ffitarget.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/alpha/osf.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/arm/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/arm/ffi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/arm/ffitarget.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/arm/gentramp.sh
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/arm/sysv.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/arm/trampoline.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/avr32/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/avr32/ffi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/avr32/ffitarget.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/avr32/sysv.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/closures.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/cris/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/cris/ffi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/cris/ffitarget.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/cris/sysv.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/debug.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/dlmalloc.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/frv/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/frv/eabi.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/frv/ffi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/frv/ffitarget.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/ia64/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/ia64/ffi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/ia64/ffitarget.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/ia64/ia64_flags.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/ia64/unix.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/java_raw_api.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/m32r/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/m32r/ffi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/m32r/ffitarget.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/m32r/sysv.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/m68k/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/m68k/ffi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/m68k/ffitarget.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/m68k/sysv.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/mips/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/mips/ffi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/mips/ffitarget.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/mips/n32.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/mips/o32.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/moxie/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/moxie/eabi.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/moxie/ffi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/pa/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/pa/ffi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/pa/ffitarget.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/pa/hpux32.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/pa/linux.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/powerpc/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/powerpc/aix.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/powerpc/aix_closure.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/powerpc/asm.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/powerpc/darwin.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/powerpc/darwin_closure.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/powerpc/ffi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/powerpc/ffitarget.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/powerpc/linux64.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/powerpc/linux64_closure.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/powerpc/ppc_closure.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/powerpc/sysv.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/prep_cif.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/raw_api.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/s390/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/s390/ffi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/s390/ffitarget.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/s390/sysv.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/sh/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/sh/ffi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/sh/ffitarget.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/sh/sysv.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/sh64/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/sh64/ffi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/sh64/ffitarget.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/sh64/sysv.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/sparc/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/sparc/ffi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/sparc/ffitarget.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/sparc/v8.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/sparc/v9.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/types.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/x86/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/x86/darwin.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/x86/darwin64.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/x86/ffi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/x86/ffi64.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/x86/ffitarget.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/x86/freebsd.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/x86/sysv.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/x86/unix64.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/x86/win32.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/src/x86/win64.S
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/Makefile.am
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/Makefile.in
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/config/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/config/default.exp
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/lib/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/lib/libffi.exp
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/lib/wrapper.exp
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/call.exp
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/closure_stdcall.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/float.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/float1.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/float2.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/float3.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/float4.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/many.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/negint.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.special/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.special/special.exp
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest.cc
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest_ffi_call.cc
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/libffi/texinfo.tex
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/rbffi.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/rbffi_endian.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/win32/
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/win32/stdbool.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ext/ffi_c/win32/stdint.h
> -share/gitsh/vendor/gems/ffi-1.9.17/ffi.gemspec
> -share/gitsh/vendor/gems/ffi-1.9.17/gen/
> -share/gitsh/vendor/gems/ffi-1.9.17/gen/Rakefile
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/autopointer.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/buffer.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/callback.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/enum.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/errno.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/ffi.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/io.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/library.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/managedstruct.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/memorypointer.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/aarch64-linux/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/aarch64-linux/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/arm-linux/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/arm-linux/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/i386-cygwin/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/i386-cygwin/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/i386-darwin/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/i386-darwin/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/i386-freebsd/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/i386-freebsd/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/i386-gnu/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/i386-gnu/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/i386-linux/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/i386-linux/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/i386-netbsd/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/i386-netbsd/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/i386-openbsd/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/i386-openbsd/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/i386-solaris/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/i386-solaris/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/i386-windows/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/i386-windows/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/ia64-linux/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/ia64-linux/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/mips-linux/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/mips-linux/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/mips64el-linux/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/mips64el-linux/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/mipsel-linux/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/mipsel-linux/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/powerpc-aix/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/powerpc-aix/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/powerpc-darwin/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/powerpc-darwin/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/powerpc-linux/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/powerpc-linux/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/powerpc64-linux/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/powerpc64-linux/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/s390-linux/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/s390-linux/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/s390x-linux/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/s390x-linux/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/sparc-linux/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/sparc-linux/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/sparc-solaris/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/sparc-solaris/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/sparcv9-solaris/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/sparcv9-solaris/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/x86_64-cygwin/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/x86_64-cygwin/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/x86_64-darwin/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/x86_64-darwin/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/x86_64-freebsd/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/x86_64-freebsd/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/x86_64-linux/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/x86_64-linux/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/x86_64-netbsd/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/x86_64-netbsd/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/x86_64-solaris/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/x86_64-solaris/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/x86_64-windows/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/platform/x86_64-windows/types.conf
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/pointer.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/struct.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/struct_layout_builder.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/tools/
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/tools/const_generator.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/tools/generator.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/tools/generator_task.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/tools/struct_generator.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/tools/types_generator.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/types.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/union.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/variadic.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/lib/ffi/version.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/libtest/
> -share/gitsh/vendor/gems/ffi-1.9.17/libtest/Benchmark.c
> -share/gitsh/vendor/gems/ffi-1.9.17/libtest/BoolTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/libtest/BufferTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/libtest/ClosureTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/libtest/EnumTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/libtest/FunctionTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/libtest/GNUmakefile
> -share/gitsh/vendor/gems/ffi-1.9.17/libtest/GlobalVariable.c
> -share/gitsh/vendor/gems/ffi-1.9.17/libtest/LastErrorTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/libtest/NumberTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/libtest/PointerTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/libtest/ReferenceTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/libtest/StringTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/libtest/StructTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/libtest/UnionTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/libtest/VariadicTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/LICENSE.SPECS
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/async_callback_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/bool_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/buffer_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/callback_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/custom_param_type.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/custom_type_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/dup_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/enum_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/errno_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/ffi_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/Benchmark.c
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/BoolTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/BufferTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/ClosureTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/EnumTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/FunctionTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/GNUmakefile
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/GlobalVariable.c
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/LastErrorTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/NumberTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/PipeHelper.h
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/PipeHelperPosix.c
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/PipeHelperWindows.c
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/PointerTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/ReferenceTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/StringTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/StructTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/UnionTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/VariadicTest.c
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/fixtures/classes.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/function_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/io_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/library_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/long_double.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/managed_struct_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/memorypointer_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/number_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/platform_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/pointer_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/rbx/
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/rbx/attach_function_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/rbx/memory_pointer_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/rbx/spec_helper.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/rbx/struct_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/spec_helper.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/string_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/strptr_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/struct_by_ref_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/struct_callback_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/struct_initialize_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/struct_packed_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/struct_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/typedef_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/union_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/ffi/variadic_spec.rb
> -share/gitsh/vendor/gems/ffi-1.9.17/spec/spec.opts
> +share/gitsh/vendor/gems/ffi-1.10.0/
> +share/gitsh/vendor/gems/ffi-1.10.0/.gitignore
> +share/gitsh/vendor/gems/ffi-1.10.0/.gitmodules
> +share/gitsh/vendor/gems/ffi-1.10.0/.travis.yml
> +share/gitsh/vendor/gems/ffi-1.10.0/.yardopts
> +share/gitsh/vendor/gems/ffi-1.10.0/CHANGELOG.md
> +share/gitsh/vendor/gems/ffi-1.10.0/COPYING
> +share/gitsh/vendor/gems/ffi-1.10.0/Gemfile
> +share/gitsh/vendor/gems/ffi-1.10.0/LICENSE
> +share/gitsh/vendor/gems/ffi-1.10.0/LICENSE.SPECS
> +share/gitsh/vendor/gems/ffi-1.10.0/README.md
> +share/gitsh/vendor/gems/ffi-1.10.0/Rakefile
> +share/gitsh/vendor/gems/ffi-1.10.0/appveyor.yml
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/AbstractMemory.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/AbstractMemory.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/ArrayType.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/ArrayType.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/Buffer.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/Call.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/Call.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/ClosurePool.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/ClosurePool.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/DataConverter.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/DynamicLibrary.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/DynamicLibrary.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/Function.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/Function.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/FunctionInfo.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/LastError.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/LastError.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/LongDouble.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/LongDouble.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/MappedType.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/MappedType.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/MemoryPointer.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/MemoryPointer.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/MethodHandle.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/MethodHandle.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/Platform.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/Platform.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/Pointer.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/Pointer.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/Struct.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/Struct.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/StructByReference.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/StructByReference.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/StructByValue.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/StructByValue.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/StructLayout.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/Thread.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/Thread.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/Type.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/Type.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/Types.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/Types.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/Variadic.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/compat.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/extconf.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi.bsd.mk
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi.darwin.mk
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi.gnu.mk
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi.mk
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi.vc.mk
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi.vc64.mk
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/.appveyor.yml
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/.github/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/.github/issue_template.md
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/.gitignore
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/.travis/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/.travis.yml
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/.travis/ar-lib
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/.travis/build.sh
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/.travis/compile
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/.travis/install.sh
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/.travis/moxie-sim.exp
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/.travis/site.exp
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/ChangeLog.libffi
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/ChangeLog.libffi-3.1
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/ChangeLog.libgcj
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/ChangeLog.v1
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/LICENSE
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/LICENSE-BUILDTOOLS
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/Makefile.am
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/Makefile.in
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/README.md
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/acinclude.m4
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/autogen.sh
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/config.guess
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/config.sub
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/configure
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/configure.ac
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/configure.host
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/doc/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/doc/Makefile.am
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/doc/Makefile.in
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/doc/libffi.texi
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/doc/version.texi
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/fficonfig.h.in
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/generate-darwin-source-and-headers.py
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/include/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/include/Makefile.am
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/include/Makefile.in
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/include/ffi.h.in
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/include/ffi_cfi.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/include/ffi_common.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/install-sh
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/libffi.map.in
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/libffi.pc.in
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/libffi.xcodeproj/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/libtool-ldflags
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/libtool-version
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/ltmain.sh
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/asmcfi.m4
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_append_flag.m4
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_configure_args.m4
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_enable_builddir.m4
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_require_defined.m4
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/man/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/man/Makefile.am
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/man/Makefile.in
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/man/ffi.3
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/man/ffi_call.3
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/man/ffi_prep_cif.3
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/man/ffi_prep_cif_var.3
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/missing
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/msvcc.sh
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/aarch64/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/aarch64/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/aarch64/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/aarch64/internal.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/aarch64/sysv.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/alpha/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/alpha/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/alpha/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/alpha/internal.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/alpha/osf.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/arc/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/arc/arcompact.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/arc/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/arc/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/arm/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/arm/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/arm/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/arm/internal.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/arm/sysv.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/avr32/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/avr32/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/avr32/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/avr32/sysv.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/bfin/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/bfin/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/bfin/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/bfin/sysv.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/closures.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/cris/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/cris/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/cris/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/cris/sysv.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/debug.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/dlmalloc.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/frv/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/frv/eabi.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/frv/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/frv/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/ia64/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/ia64/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/ia64/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/ia64/ia64_flags.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/ia64/unix.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/java_raw_api.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m32r/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m32r/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m32r/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m32r/sysv.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m68k/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m68k/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m68k/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m68k/sysv.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m88k/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m88k/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m88k/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m88k/obsd.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/metag/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/metag/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/metag/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/metag/sysv.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/microblaze/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/microblaze/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/microblaze/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/microblaze/sysv.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/mips/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/mips/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/mips/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/mips/n32.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/mips/o32.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/moxie/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/moxie/eabi.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/moxie/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/moxie/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/nios2/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/nios2/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/nios2/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/nios2/sysv.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/or1k/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/or1k/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/or1k/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/or1k/sysv.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/pa/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/pa/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/pa/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/pa/hpux32.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/pa/linux.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/aix.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/aix_closure.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/asm.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/darwin.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/darwin_closure.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/linux64.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/linux64_closure.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/ppc_closure.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/sysv.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/prep_cif.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/raw_api.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/riscv/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/riscv/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/riscv/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/riscv/sysv.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/s390/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/s390/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/s390/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/s390/internal.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/s390/sysv.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sh/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sh/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sh/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sh/sysv.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sh64/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sh64/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sh64/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sh64/sysv.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sparc/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sparc/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sparc/ffi64.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sparc/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sparc/internal.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sparc/v8.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sparc/v9.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/tile/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/tile/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/tile/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/tile/tile.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/types.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/vax/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/vax/elfbsd.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/vax/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/vax/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/asmnames.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/ffi64.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/ffiw64.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/internal.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/internal64.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/sysv.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/unix64.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/win64.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/win64_intel.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/xtensa/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/xtensa/ffi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/xtensa/ffitarget.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/src/xtensa/sysv.S
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/stamp-h.in
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/Makefile.am
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/Makefile.in
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/config/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/config/default.exp
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/lib/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/lib/libffi.exp
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/lib/wrapper.exp
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.bhaible/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.bhaible/README
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/call.exp
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_simple.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_3float.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_args.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_float_double.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_struct_va1.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint_va.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulong_va.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/float.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/float1.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/float2.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/float3.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/float4.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/many.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/many2.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/negint.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct11.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest.cc
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest_ffi_call.cc
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.go/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.go/go.exp
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/rbffi.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/rbffi_endian.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/win32/
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/win32/stdbool.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ext/ffi_c/win32/stdint.h
> +share/gitsh/vendor/gems/ffi-1.10.0/ffi.gemspec
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/autopointer.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/buffer.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/callback.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/enum.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/errno.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/ffi.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/io.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/library.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/managedstruct.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/memorypointer.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/aarch64-freebsd/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/aarch64-freebsd/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/aarch64-freebsd12/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/aarch64-freebsd12/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/aarch64-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/aarch64-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/arm-freebsd/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/arm-freebsd/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/arm-freebsd12/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/arm-freebsd12/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/arm-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/arm-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-cygwin/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-cygwin/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-darwin/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-darwin/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-freebsd/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-freebsd/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-freebsd12/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-freebsd12/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-gnu/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-gnu/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-netbsd/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-netbsd/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-openbsd/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-openbsd/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-solaris/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-solaris/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-windows/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/i386-windows/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/ia64-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/ia64-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/mips-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/mips-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/mips64-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/mips64-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/mips64el-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/mips64el-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/mipsel-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/mipsel-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/mipsisa32r6-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/mipsisa32r6-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/mipsisa32r6el-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/mipsisa32r6el-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/mipsisa64r6-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/mipsisa64r6-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/mipsisa64r6el-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/mipsisa64r6el-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/powerpc-aix/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/powerpc-aix/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/powerpc-darwin/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/powerpc-darwin/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/powerpc-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/powerpc-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/powerpc64-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/powerpc64-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/s390-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/s390-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/s390x-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/s390x-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/sparc-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/sparc-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/sparc-solaris/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/sparc-solaris/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/sparc64-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/sparc64-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/sparcv9-solaris/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/sparcv9-solaris/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/x86_64-cygwin/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/x86_64-cygwin/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/x86_64-darwin/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/x86_64-darwin/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/x86_64-freebsd/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/x86_64-freebsd/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/x86_64-freebsd12/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/x86_64-freebsd12/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/x86_64-linux/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/x86_64-linux/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/x86_64-netbsd/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/x86_64-netbsd/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/x86_64-solaris/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/x86_64-solaris/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/x86_64-windows/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/platform/x86_64-windows/types.conf
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/pointer.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/struct.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/struct_layout_builder.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/tools/
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/tools/const_generator.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/tools/generator.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/tools/generator_task.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/tools/struct_generator.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/tools/types_generator.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/types.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/union.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/variadic.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/lib/ffi/version.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/samples/
> +share/gitsh/vendor/gems/ffi-1.10.0/samples/getlogin.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/samples/getpid.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/samples/gettimeofday.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/samples/hello.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/samples/inotify.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/samples/pty.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/samples/qsort.rb
> +share/gitsh/vendor/gems/ffi-1.10.0/samples/sample_helper.rb
>  share/gitsh/vendor/gems/filigree-0.3.3/
>  share/gitsh/vendor/gems/filigree-0.3.3/AUTHORS
>  share/gitsh/vendor/gems/filigree-0.3.3/LICENSE
> 

Reply via email to