vagrant-unbundled 2.2.2.0 → 2.2.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1119) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +1 -0
  3. data/CHANGELOG.md +41 -0
  4. data/Gemfile.lock +15 -15
  5. data/RELEASE.md +1 -1
  6. data/bin/vagrant +18 -0
  7. data/lib/vagrant/action/builtin/box_check_outdated.rb +2 -1
  8. data/lib/vagrant/errors.rb +8 -0
  9. data/lib/vagrant/machine.rb +4 -0
  10. data/lib/vagrant/util/checkpoint_client.rb +2 -2
  11. data/lib/vagrant/util/experimental.rb +76 -0
  12. data/lib/vagrant/util/guest_inspection.rb +5 -1
  13. data/lib/vagrant/util/platform.rb +20 -0
  14. data/lib/vagrant/util/powershell.rb +2 -2
  15. data/lib/vagrant/util/ssh.rb +4 -0
  16. data/plugins/commands/cloud/publish.rb +15 -4
  17. data/plugins/commands/package/command.rb +4 -1
  18. data/plugins/commands/powershell/command.rb +15 -8
  19. data/plugins/commands/powershell/errors.rb +4 -0
  20. data/plugins/commands/snapshot/command/pop.rb +6 -0
  21. data/plugins/commands/snapshot/command/restore.rb +6 -0
  22. data/plugins/commands/snapshot/command/root.rb +7 -3
  23. data/plugins/commands/ssh_config/command.rb +1 -0
  24. data/plugins/commands/validate/command.rb +58 -0
  25. data/plugins/communicators/ssh/communicator.rb +11 -3
  26. data/plugins/communicators/winrm/shell.rb +22 -12
  27. data/plugins/guests/alt/cap/configure_networks.rb +5 -2
  28. data/plugins/guests/coreos/cap/configure_networks.rb +1 -1
  29. data/plugins/guests/redhat/cap/configure_networks.rb +5 -2
  30. data/plugins/hosts/void/cap/nfs.rb +24 -0
  31. data/plugins/hosts/void/host.rb +22 -0
  32. data/plugins/hosts/void/plugin.rb +30 -0
  33. data/plugins/hosts/windows/cap/smb.rb +15 -9
  34. data/plugins/hosts/windows/scripts/unset_share.ps1 +1 -1
  35. data/plugins/kernel_v2/config/ssh_connect.rb +22 -0
  36. data/plugins/providers/virtualbox/action/set_default_nic_type.rb +1 -1
  37. data/plugins/providers/virtualbox/action.rb +5 -1
  38. data/plugins/provisioners/file/provisioner.rb +2 -0
  39. data/plugins/provisioners/salt/bootstrap-salt.ps1 +1 -1
  40. data/plugins/provisioners/salt/config.rb +7 -0
  41. data/plugins/provisioners/shell/config.rb +4 -1
  42. data/plugins/provisioners/shell/provisioner.rb +5 -1
  43. data/plugins/synced_folders/rsync/command/rsync.rb +7 -0
  44. data/plugins/synced_folders/rsync/command/rsync_auto.rb +11 -5
  45. data/plugins/synced_folders/rsync/default_unix_cap.rb +1 -0
  46. data/plugins/synced_folders/rsync/helper.rb +79 -7
  47. data/templates/commands/ssh_config/config.erb +3 -0
  48. data/templates/guests/freebsd/network_static.erb +1 -1
  49. data/templates/guests/freebsd/network_static6.erb +1 -1
  50. data/templates/locales/command_ps.yml +7 -2
  51. data/templates/locales/en.yml +39 -3
  52. data/vagrant.gemspec +2 -2
  53. data/vendor/bundle/ruby/2.5.0/bin/rwinrm +5 -5
  54. data/vendor/bundle/ruby/2.5.0/bin/rwinrmcp +5 -5
  55. data/vendor/bundle/ruby/2.5.0/bin/vagrant +5 -5
  56. data/vendor/bundle/ruby/2.5.0/bin/vagrant-spec +5 -5
  57. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/.gitignore +18 -0
  58. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/.travis.yml +10 -0
  59. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/Gemfile +5 -0
  60. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/LICENSE.txt +373 -0
  61. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/README.md +319 -0
  62. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/Rakefile +1 -0
  63. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/box_spec.rb +198 -0
  64. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/init_spec.rb +42 -0
  65. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/plugin_spec.rb +164 -0
  66. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/cli/version_spec.rb +15 -0
  67. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/output/box_output.rb +41 -0
  68. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/output/plugin_output.rb +34 -0
  69. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/output/version_output.rb +10 -0
  70. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/basic_spec.rb +90 -0
  71. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/network_forwarded_port_spec.rb +25 -0
  72. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/network_private_network_spec.rb +25 -0
  73. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/package_spec.rb +65 -0
  74. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provider/synced_folder_spec.rb +33 -0
  75. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/chef_solo_spec.rb +31 -0
  76. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/docker_spec.rb +26 -0
  77. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/puppet_spec.rb +31 -0
  78. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/provisioner/shell_spec.rb +45 -0
  79. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-boxes/empty/metadata.json +1 -0
  80. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-boxes/empty.box +0 -0
  81. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/README.md +4 -0
  82. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +18 -0
  83. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +18 -0
  84. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +18 -0
  85. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +10 -0
  86. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +7 -0
  87. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +5 -0
  88. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/network_private_network/Vagrantfile +5 -0
  89. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +14 -0
  90. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +3 -0
  91. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +3 -0
  92. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +2 -0
  93. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_docker/Vagrantfile +5 -0
  94. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +10 -0
  95. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +1 -0
  96. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +5 -0
  97. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +3 -0
  98. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/Vagrantfile +10 -0
  99. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/args.sh +4 -0
  100. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/path.sh +3 -0
  101. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/user.sh +3 -0
  102. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/provisioner_shell/user_root.sh +3 -0
  103. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +7 -0
  104. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_nfs/foo +1 -0
  105. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +6 -0
  106. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folder_rsync/foo +1 -0
  107. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folders/Vagrantfile +6 -0
  108. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/synced_folders/foo +1 -0
  109. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/Vagrantfile +44 -0
  110. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/fail.sh +1 -0
  111. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/script.sh +1 -0
  112. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-advanced/test.sh +1 -0
  113. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/support-skeletons/triggers-basic/Vagrantfile +25 -0
  114. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/synced_folder/nfs_spec.rb +29 -0
  115. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/synced_folder/rsync_spec.rb +38 -0
  116. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/triggers/triggers_advanced_spec.rb +57 -0
  117. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/acceptance/triggers/triggers_basic_spec.rb +33 -0
  118. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/bin/vagrant-spec +7 -0
  119. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/configuration.rb +81 -0
  120. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/isolated_environment.rb +90 -0
  121. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/output.rb +38 -0
  122. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/context.rb +96 -0
  123. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/formatter.rb +33 -0
  124. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +12 -0
  125. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +15 -0
  126. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +33 -0
  127. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/rspec.rb +9 -0
  128. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance/runner.rb +76 -0
  129. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/acceptance.rb +29 -0
  130. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/cli.rb +48 -0
  131. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/components.rb +57 -0
  132. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/isolated_environment.rb +44 -0
  133. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/server.rb +37 -0
  134. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/subprocess.rb +259 -0
  135. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/dummy_provider.rb +51 -0
  136. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/isolated_environment.rb +230 -0
  137. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/rspec/context.rb +104 -0
  138. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit/rspec.rb +1 -0
  139. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/unit.rb +17 -0
  140. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/vagrant-plugin/command.rb +67 -0
  141. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/vagrant-plugin/plugin.rb +17 -0
  142. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/version.rb +5 -0
  143. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec/which.rb +36 -0
  144. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/lib/vagrant-spec.rb +25 -0
  145. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/configuration_spec.rb +25 -0
  146. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/isolated_environment_spec.rb +43 -0
  147. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/shared/isolated_environment_spec.rb +43 -0
  148. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/spec/acceptance/shared/output_spec.rb +53 -0
  149. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/spec/components_spec.rb +62 -0
  150. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/spec/isolated_environment_spec.rb +31 -0
  151. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/spec/subprocess_spec.rb +9 -0
  152. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/spec/unit/isolated_environment_spec.rb +64 -0
  153. data/vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-spec-abfc34474d12/vagrant-spec.gemspec +47 -0
  154. data/vendor/bundle/ruby/2.5.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/FETCH_HEAD +1 -0
  155. data/vendor/bundle/ruby/2.5.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/objects/0c/239961181935240f946cac9b66357c8eeada52 +0 -0
  156. data/vendor/bundle/ruby/2.5.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/objects/0d/d52403c3e3b78f75069403c7bdad316089219c +0 -0
  157. data/vendor/bundle/ruby/2.5.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/objects/2f/1b24bccecd7df752689690ce047729a2031c00 +0 -0
  158. data/vendor/bundle/ruby/2.5.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/objects/62/67f4c29ab1aa79bbd06e5e20a612ffa1152396 +0 -0
  159. data/vendor/bundle/ruby/2.5.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/objects/ab/fc34474d122235d56e4c6b6fb5d3e35bedfa90 +1 -0
  160. data/vendor/bundle/ruby/2.5.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/objects/f0/af3a58fe2b5dcdb88118f33313c6ead75fdff8 +0 -0
  161. data/vendor/bundle/ruby/2.5.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/refs/heads/master +1 -0
  162. data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/ffi-1.10.0/ffi_c.so +0 -0
  163. data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/ffi-1.10.0/gem.build_complete +0 -0
  164. data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/ffi-1.10.0/gem_make.out +50 -0
  165. data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/ffi-1.10.0/mkmf.log +434 -0
  166. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/CHANGELOG.md +465 -0
  167. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/Gemfile +39 -0
  168. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/LICENSE.md +23 -0
  169. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/README.md +349 -0
  170. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/Rakefile +346 -0
  171. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/ConcurrentRubyService.java +17 -0
  172. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/AtomicReferenceLibrary.java +175 -0
  173. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/JRubyMapBackendLibrary.java +248 -0
  174. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicBooleanLibrary.java +93 -0
  175. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicFixnumLibrary.java +113 -0
  176. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaSemaphoreLibrary.java +159 -0
  177. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java +306 -0
  178. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMap.java +31 -0
  179. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMapV8.java +3863 -0
  180. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/LongAdder.java +203 -0
  181. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/Striped64.java +342 -0
  182. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/ConcurrentHashMapV8.java +3800 -0
  183. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/LongAdder.java +204 -0
  184. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/Striped64.java +291 -0
  185. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166y/ThreadLocalRandom.java +199 -0
  186. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/agent.rb +587 -0
  187. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/array.rb +66 -0
  188. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/async.rb +445 -0
  189. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atom.rb +222 -0
  190. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/abstract_thread_local_var.rb +66 -0
  191. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/atomic_boolean.rb +126 -0
  192. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/atomic_fixnum.rb +143 -0
  193. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/atomic_markable_reference.rb +164 -0
  194. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/atomic_reference.rb +204 -0
  195. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/count_down_latch.rb +100 -0
  196. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/cyclic_barrier.rb +128 -0
  197. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/event.rb +109 -0
  198. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/java_count_down_latch.rb +42 -0
  199. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/java_thread_local_var.rb +37 -0
  200. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/mutex_atomic_boolean.rb +62 -0
  201. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/mutex_atomic_fixnum.rb +75 -0
  202. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/mutex_count_down_latch.rb +44 -0
  203. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/mutex_semaphore.rb +115 -0
  204. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/read_write_lock.rb +254 -0
  205. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/reentrant_read_write_lock.rb +379 -0
  206. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/ruby_thread_local_var.rb +161 -0
  207. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/semaphore.rb +145 -0
  208. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/thread_local_var.rb +104 -0
  209. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic_reference/mutex_atomic.rb +56 -0
  210. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic_reference/numeric_cas_wrapper.rb +28 -0
  211. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomics.rb +10 -0
  212. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/copy_on_notify_observer_set.rb +107 -0
  213. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/copy_on_write_observer_set.rb +111 -0
  214. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/java_non_concurrent_priority_queue.rb +84 -0
  215. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/lock_free_stack.rb +158 -0
  216. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/map/atomic_reference_map_backend.rb +927 -0
  217. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/map/mri_map_backend.rb +66 -0
  218. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/map/non_concurrent_map_backend.rb +140 -0
  219. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/map/synchronized_map_backend.rb +82 -0
  220. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/non_concurrent_priority_queue.rb +143 -0
  221. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/ruby_non_concurrent_priority_queue.rb +150 -0
  222. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/concern/deprecation.rb +34 -0
  223. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/concern/dereferenceable.rb +73 -0
  224. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/concern/logging.rb +32 -0
  225. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/concern/obligation.rb +220 -0
  226. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/concern/observable.rb +110 -0
  227. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/concurrent_ruby.jar +0 -0
  228. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/configuration.rb +184 -0
  229. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/constants.rb +8 -0
  230. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/dataflow.rb +81 -0
  231. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/delay.rb +199 -0
  232. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/errors.rb +69 -0
  233. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/exchanger.rb +352 -0
  234. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/abstract_executor_service.rb +134 -0
  235. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/cached_thread_pool.rb +62 -0
  236. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/executor_service.rb +185 -0
  237. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/fixed_thread_pool.rb +206 -0
  238. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/immediate_executor.rb +66 -0
  239. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/indirect_immediate_executor.rb +44 -0
  240. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/java_executor_service.rb +91 -0
  241. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/java_single_thread_executor.rb +29 -0
  242. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/java_thread_pool_executor.rb +123 -0
  243. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/ruby_executor_service.rb +78 -0
  244. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/ruby_single_thread_executor.rb +22 -0
  245. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/ruby_thread_pool_executor.rb +362 -0
  246. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/safe_task_executor.rb +35 -0
  247. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/serial_executor_service.rb +34 -0
  248. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/serialized_execution.rb +107 -0
  249. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/serialized_execution_delegator.rb +28 -0
  250. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/simple_executor_service.rb +100 -0
  251. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/single_thread_executor.rb +56 -0
  252. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/thread_pool_executor.rb +87 -0
  253. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/timer_set.rb +175 -0
  254. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executors.rb +20 -0
  255. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/future.rb +141 -0
  256. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/hash.rb +59 -0
  257. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/immutable_struct.rb +93 -0
  258. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/ivar.rb +207 -0
  259. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/map.rb +337 -0
  260. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/maybe.rb +229 -0
  261. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/mutable_struct.rb +229 -0
  262. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/mvar.rb +242 -0
  263. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/options.rb +42 -0
  264. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/promise.rb +579 -0
  265. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/promises.rb +1936 -0
  266. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/re_include.rb +58 -0
  267. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/scheduled_task.rb +318 -0
  268. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/set.rb +66 -0
  269. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/settable_struct.rb +129 -0
  270. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/abstract_lockable_object.rb +98 -0
  271. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/abstract_object.rb +24 -0
  272. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/abstract_struct.rb +159 -0
  273. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/condition.rb +58 -0
  274. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/jruby_lockable_object.rb +13 -0
  275. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/jruby_object.rb +44 -0
  276. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/lock.rb +34 -0
  277. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/lockable_object.rb +74 -0
  278. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/mri_object.rb +43 -0
  279. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/mutex_lockable_object.rb +76 -0
  280. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/object.rb +157 -0
  281. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/rbx_lockable_object.rb +65 -0
  282. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/rbx_object.rb +48 -0
  283. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/truffleruby_object.rb +46 -0
  284. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/volatile.rb +36 -0
  285. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization.rb +30 -0
  286. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/synchronized_delegator.rb +50 -0
  287. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/util/adder.rb +74 -0
  288. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/util/cheap_lockable.rb +118 -0
  289. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/util/data_structures.rb +63 -0
  290. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/util/power_of_two_tuple.rb +38 -0
  291. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/util/striped64.rb +246 -0
  292. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/util/volatile.rb +75 -0
  293. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/util/xor_shift_random.rb +50 -0
  294. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/util.rb +16 -0
  295. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/timer_task.rb +334 -0
  296. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/tuple.rb +86 -0
  297. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/tvar.rb +258 -0
  298. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/utility/at_exit.rb +97 -0
  299. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/utility/engine.rb +56 -0
  300. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/utility/monotonic_time.rb +58 -0
  301. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/utility/native_extension_loader.rb +79 -0
  302. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/utility/native_integer.rb +53 -0
  303. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/utility/processor_counter.rb +158 -0
  304. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent/version.rb +4 -0
  305. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent-ruby.rb +1 -0
  306. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.4/lib/concurrent.rb +134 -0
  307. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/.gitignore +22 -0
  308. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/.gitmodules +3 -0
  309. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/.travis.yml +43 -0
  310. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/.yardopts +5 -0
  311. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/CHANGELOG.md +98 -0
  312. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/COPYING +49 -0
  313. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/Gemfile +15 -0
  314. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/LICENSE +24 -0
  315. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/LICENSE.SPECS +22 -0
  316. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/README.md +112 -0
  317. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/Rakefile +268 -0
  318. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/appveyor.yml +22 -0
  319. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/.sitearchdir.time +0 -0
  320. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/AbstractMemory.c +1109 -0
  321. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/AbstractMemory.h +175 -0
  322. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/AbstractMemory.o +0 -0
  323. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/ArrayType.c +162 -0
  324. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/ArrayType.h +59 -0
  325. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/ArrayType.o +0 -0
  326. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Buffer.c +365 -0
  327. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Buffer.o +0 -0
  328. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Call.c +520 -0
  329. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Call.h +110 -0
  330. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Call.o +0 -0
  331. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/ClosurePool.c +283 -0
  332. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/ClosurePool.h +57 -0
  333. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/ClosurePool.o +0 -0
  334. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/DataConverter.c +91 -0
  335. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/DataConverter.o +0 -0
  336. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/DynamicLibrary.c +339 -0
  337. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/DynamicLibrary.h +98 -0
  338. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/DynamicLibrary.o +0 -0
  339. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Function.c +1001 -0
  340. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Function.h +87 -0
  341. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Function.o +0 -0
  342. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/FunctionInfo.c +271 -0
  343. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/FunctionInfo.o +0 -0
  344. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/LastError.c +229 -0
  345. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/LastError.h +47 -0
  346. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/LastError.o +0 -0
  347. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/LongDouble.c +63 -0
  348. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/LongDouble.h +51 -0
  349. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/LongDouble.o +0 -0
  350. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Makefile +263 -0
  351. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/MappedType.c +168 -0
  352. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/MappedType.h +59 -0
  353. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/MappedType.o +0 -0
  354. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/MemoryPointer.c +197 -0
  355. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/MemoryPointer.h +53 -0
  356. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/MemoryPointer.o +0 -0
  357. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/MethodHandle.c +358 -0
  358. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/MethodHandle.h +55 -0
  359. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/MethodHandle.o +0 -0
  360. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Platform.c +129 -0
  361. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Platform.h +45 -0
  362. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Platform.o +0 -0
  363. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Pointer.c +508 -0
  364. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Pointer.h +63 -0
  365. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Pointer.o +0 -0
  366. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Struct.c +829 -0
  367. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Struct.h +106 -0
  368. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Struct.o +0 -0
  369. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/StructByReference.c +190 -0
  370. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/StructByReference.h +50 -0
  371. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/StructByReference.o +0 -0
  372. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/StructByValue.c +150 -0
  373. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/StructByValue.h +55 -0
  374. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/StructByValue.o +0 -0
  375. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/StructLayout.c +698 -0
  376. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/StructLayout.o +0 -0
  377. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Thread.c +353 -0
  378. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Thread.h +95 -0
  379. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Thread.o +0 -0
  380. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Type.c +397 -0
  381. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Type.h +62 -0
  382. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Type.o +0 -0
  383. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Types.c +139 -0
  384. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Types.h +89 -0
  385. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Types.o +0 -0
  386. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Variadic.c +304 -0
  387. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/Variadic.o +0 -0
  388. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/compat.h +78 -0
  389. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/extconf.h +12 -0
  390. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/extconf.rb +72 -0
  391. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/ffi.c +98 -0
  392. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/ffi.o +0 -0
  393. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/ffi_c.so +0 -0
  394. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/.appveyor.yml +50 -0
  395. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/.gitignore +38 -0
  396. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/.travis.yml +34 -0
  397. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/ChangeLog.libffi +584 -0
  398. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/ChangeLog.libffi-3.1 +6000 -0
  399. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/ChangeLog.libgcj +40 -0
  400. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/ChangeLog.v1 +764 -0
  401. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/LICENSE +21 -0
  402. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +352 -0
  403. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/Makefile.am +166 -0
  404. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/Makefile.in +1809 -0
  405. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/README.md +461 -0
  406. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/acinclude.m4 +479 -0
  407. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/autogen.sh +2 -0
  408. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/config.guess +1466 -0
  409. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/config.sub +1836 -0
  410. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/configure +21978 -0
  411. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/configure.ac +390 -0
  412. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/configure.host +289 -0
  413. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/doc/Makefile.am +3 -0
  414. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/doc/Makefile.in +811 -0
  415. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/doc/libffi.texi +985 -0
  416. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/doc/version.texi +4 -0
  417. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/fficonfig.h.in +210 -0
  418. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +203 -0
  419. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/include/Makefile.am +9 -0
  420. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/include/Makefile.in +604 -0
  421. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/include/ffi.h.in +511 -0
  422. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/include/ffi_cfi.h +55 -0
  423. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/include/ffi_common.h +149 -0
  424. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/install-sh +508 -0
  425. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/libffi.map.in +80 -0
  426. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/libffi.pc.in +11 -0
  427. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +1043 -0
  428. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/libtool-ldflags +106 -0
  429. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/libtool-version +29 -0
  430. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/ltmain.sh +11156 -0
  431. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/asmcfi.m4 +13 -0
  432. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_append_flag.m4 +71 -0
  433. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +194 -0
  434. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +122 -0
  435. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +74 -0
  436. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +87 -0
  437. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_configure_args.m4 +70 -0
  438. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +302 -0
  439. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +263 -0
  440. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +89 -0
  441. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/m4/ax_require_defined.m4 +37 -0
  442. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/man/Makefile.am +8 -0
  443. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/man/Makefile.in +558 -0
  444. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/man/ffi.3 +41 -0
  445. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/man/ffi_call.3 +103 -0
  446. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/man/ffi_prep_cif.3 +68 -0
  447. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +73 -0
  448. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/missing +215 -0
  449. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/msvcc.sh +328 -0
  450. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/aarch64/ffi.c +941 -0
  451. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/aarch64/ffitarget.h +81 -0
  452. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/aarch64/internal.h +67 -0
  453. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/aarch64/sysv.S +438 -0
  454. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/alpha/ffi.c +521 -0
  455. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/alpha/ffitarget.h +57 -0
  456. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/alpha/internal.h +23 -0
  457. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/alpha/osf.S +282 -0
  458. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/arc/arcompact.S +135 -0
  459. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/arc/ffi.c +266 -0
  460. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/arc/ffitarget.h +53 -0
  461. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/arm/ffi.c +819 -0
  462. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/arm/ffitarget.h +82 -0
  463. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/arm/internal.h +7 -0
  464. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/arm/sysv.S +383 -0
  465. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/avr32/ffi.c +423 -0
  466. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/avr32/ffitarget.h +55 -0
  467. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/avr32/sysv.S +208 -0
  468. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/bfin/ffi.c +196 -0
  469. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/bfin/ffitarget.h +43 -0
  470. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/bfin/sysv.S +179 -0
  471. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/closures.c +966 -0
  472. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/cris/ffi.c +386 -0
  473. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/cris/ffitarget.h +56 -0
  474. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/cris/sysv.S +215 -0
  475. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/debug.c +64 -0
  476. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/dlmalloc.c +5166 -0
  477. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/frv/eabi.S +128 -0
  478. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/frv/ffi.c +292 -0
  479. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/frv/ffitarget.h +62 -0
  480. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/ia64/ffi.c +604 -0
  481. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/ia64/ffitarget.h +56 -0
  482. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/ia64/ia64_flags.h +40 -0
  483. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/ia64/unix.S +567 -0
  484. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/java_raw_api.c +374 -0
  485. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m32r/ffi.c +232 -0
  486. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m32r/ffitarget.h +53 -0
  487. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m32r/sysv.S +121 -0
  488. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m68k/ffi.c +362 -0
  489. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m68k/ffitarget.h +54 -0
  490. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m68k/sysv.S +357 -0
  491. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m88k/ffi.c +400 -0
  492. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m88k/ffitarget.h +49 -0
  493. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/m88k/obsd.S +209 -0
  494. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/metag/ffi.c +330 -0
  495. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/metag/ffitarget.h +53 -0
  496. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/metag/sysv.S +311 -0
  497. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/microblaze/ffi.c +321 -0
  498. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/microblaze/ffitarget.h +53 -0
  499. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/microblaze/sysv.S +302 -0
  500. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/mips/ffi.c +1130 -0
  501. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/mips/ffitarget.h +244 -0
  502. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/mips/n32.S +663 -0
  503. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/mips/o32.S +502 -0
  504. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/moxie/eabi.S +101 -0
  505. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/moxie/ffi.c +285 -0
  506. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/moxie/ffitarget.h +52 -0
  507. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/nios2/ffi.c +304 -0
  508. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/nios2/ffitarget.h +52 -0
  509. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/nios2/sysv.S +136 -0
  510. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/or1k/ffi.c +328 -0
  511. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/or1k/ffitarget.h +58 -0
  512. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/or1k/sysv.S +107 -0
  513. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/pa/ffi.c +719 -0
  514. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/pa/ffitarget.h +85 -0
  515. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/pa/hpux32.S +368 -0
  516. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/pa/linux.S +357 -0
  517. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/aix.S +566 -0
  518. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/aix_closure.S +694 -0
  519. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
  520. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/darwin.S +378 -0
  521. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +571 -0
  522. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/ffi.c +173 -0
  523. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +1440 -0
  524. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +974 -0
  525. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +94 -0
  526. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +923 -0
  527. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/ffitarget.h +198 -0
  528. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/linux64.S +228 -0
  529. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +488 -0
  530. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +397 -0
  531. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/powerpc/sysv.S +175 -0
  532. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/prep_cif.c +261 -0
  533. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/raw_api.c +267 -0
  534. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/riscv/ffi.c +445 -0
  535. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/riscv/ffitarget.h +68 -0
  536. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/riscv/sysv.S +214 -0
  537. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/s390/ffi.c +756 -0
  538. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/s390/ffitarget.h +70 -0
  539. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/s390/internal.h +11 -0
  540. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/s390/sysv.S +325 -0
  541. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sh/ffi.c +717 -0
  542. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sh/ffitarget.h +54 -0
  543. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sh/sysv.S +850 -0
  544. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sh64/ffi.c +469 -0
  545. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sh64/ffitarget.h +58 -0
  546. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sh64/sysv.S +539 -0
  547. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sparc/ffi.c +468 -0
  548. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sparc/ffi64.c +608 -0
  549. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sparc/ffitarget.h +81 -0
  550. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sparc/internal.h +26 -0
  551. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sparc/v8.S +443 -0
  552. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/sparc/v9.S +440 -0
  553. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/tile/ffi.c +355 -0
  554. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/tile/ffitarget.h +65 -0
  555. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/tile/tile.S +360 -0
  556. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/types.c +108 -0
  557. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/vax/elfbsd.S +195 -0
  558. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/vax/ffi.c +276 -0
  559. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/vax/ffitarget.h +49 -0
  560. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/asmnames.h +30 -0
  561. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/ffi.c +753 -0
  562. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/ffi64.c +884 -0
  563. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/ffitarget.h +147 -0
  564. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/ffiw64.c +308 -0
  565. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/internal.h +29 -0
  566. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/internal64.h +22 -0
  567. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/sysv.S +1043 -0
  568. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/unix64.S +525 -0
  569. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/win64.S +232 -0
  570. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/x86/win64_intel.S +237 -0
  571. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/xtensa/ffi.c +298 -0
  572. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/xtensa/ffitarget.h +53 -0
  573. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/src/xtensa/sysv.S +258 -0
  574. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/stamp-h.in +1 -0
  575. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/Makefile.am +117 -0
  576. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/Makefile.in +608 -0
  577. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
  578. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/lib/libffi.exp +636 -0
  579. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +283 -0
  580. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +45 -0
  581. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +28 -0
  582. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +78 -0
  583. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +50 -0
  584. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +58 -0
  585. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1745 -0
  586. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2885 -0
  587. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +743 -0
  588. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +46 -0
  589. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +46 -0
  590. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +43 -0
  591. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +89 -0
  592. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +81 -0
  593. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +81 -0
  594. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +82 -0
  595. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +89 -0
  596. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +92 -0
  597. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +90 -0
  598. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c +95 -0
  599. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/closure_simple.c +55 -0
  600. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +94 -0
  601. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +95 -0
  602. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +96 -0
  603. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +102 -0
  604. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +89 -0
  605. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +91 -0
  606. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +93 -0
  607. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +113 -0
  608. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +90 -0
  609. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +95 -0
  610. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +90 -0
  611. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +90 -0
  612. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_3float.c +95 -0
  613. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +98 -0
  614. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +90 -0
  615. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +109 -0
  616. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +98 -0
  617. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +124 -0
  618. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +113 -0
  619. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +99 -0
  620. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +117 -0
  621. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +97 -0
  622. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +88 -0
  623. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +90 -0
  624. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +91 -0
  625. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +93 -0
  626. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +91 -0
  627. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +92 -0
  628. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +132 -0
  629. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +115 -0
  630. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +95 -0
  631. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +91 -0
  632. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +91 -0
  633. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +92 -0
  634. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +91 -0
  635. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +91 -0
  636. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +93 -0
  637. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +66 -0
  638. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +43 -0
  639. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +61 -0
  640. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +42 -0
  641. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +105 -0
  642. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +61 -0
  643. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_args.c +70 -0
  644. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_float_double.c +55 -0
  645. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +74 -0
  646. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +74 -0
  647. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +86 -0
  648. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +91 -0
  649. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +74 -0
  650. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +86 -0
  651. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +74 -0
  652. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +142 -0
  653. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +44 -0
  654. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +42 -0
  655. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +42 -0
  656. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_struct_va1.c +114 -0
  657. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +42 -0
  658. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c +44 -0
  659. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +43 -0
  660. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint_va.c +45 -0
  661. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulong_va.c +45 -0
  662. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +47 -0
  663. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +43 -0
  664. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c +44 -0
  665. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +36 -0
  666. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +26 -0
  667. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +138 -0
  668. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/float.c +59 -0
  669. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +60 -0
  670. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +60 -0
  671. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +74 -0
  672. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +62 -0
  673. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +107 -0
  674. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +341 -0
  675. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/many.c +59 -0
  676. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +57 -0
  677. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +70 -0
  678. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +78 -0
  679. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +52 -0
  680. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +152 -0
  681. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +161 -0
  682. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +134 -0
  683. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct11.c +121 -0
  684. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +110 -0
  685. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +111 -0
  686. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +111 -0
  687. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +112 -0
  688. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +131 -0
  689. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +111 -0
  690. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +131 -0
  691. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +131 -0
  692. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +46 -0
  693. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +127 -0
  694. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +90 -0
  695. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +59 -0
  696. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +114 -0
  697. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +36 -0
  698. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +43 -0
  699. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +42 -0
  700. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +35 -0
  701. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +36 -0
  702. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +49 -0
  703. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +42 -0
  704. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +34 -0
  705. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +41 -0
  706. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +43 -0
  707. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +36 -0
  708. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +38 -0
  709. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +38 -0
  710. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +38 -0
  711. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +145 -0
  712. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +148 -0
  713. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +124 -0
  714. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +125 -0
  715. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +44 -0
  716. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +49 -0
  717. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +49 -0
  718. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +55 -0
  719. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +67 -0
  720. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +57 -0
  721. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +67 -0
  722. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +60 -0
  723. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +64 -0
  724. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +66 -0
  725. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +64 -0
  726. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +74 -0
  727. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +81 -0
  728. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +68 -0
  729. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +70 -0
  730. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +61 -0
  731. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest.cc +117 -0
  732. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest_ffi_call.cc +54 -0
  733. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +196 -0
  734. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +121 -0
  735. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +123 -0
  736. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +125 -0
  737. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +91 -0
  738. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +10 -0
  739. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +10 -0
  740. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +10 -0
  741. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +42 -0
  742. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +10 -0
  743. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +10 -0
  744. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +10 -0
  745. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +71 -0
  746. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +10 -0
  747. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +10 -0
  748. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +10 -0
  749. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +80 -0
  750. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +10 -0
  751. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +16 -0
  752. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +10 -0
  753. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +36 -0
  754. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +51 -0
  755. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +7 -0
  756. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +7 -0
  757. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +7 -0
  758. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +10 -0
  759. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +10 -0
  760. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +86 -0
  761. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +10 -0
  762. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +1 -0
  763. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +78 -0
  764. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +10 -0
  765. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +10 -0
  766. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +10 -0
  767. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +37 -0
  768. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +41 -0
  769. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +10 -0
  770. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +10 -0
  771. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +10 -0
  772. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +44 -0
  773. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +10 -0
  774. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +10 -0
  775. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +10 -0
  776. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +10 -0
  777. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +10 -0
  778. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +10 -0
  779. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +34 -0
  780. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +28 -0
  781. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +1 -0
  782. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +36 -0
  783. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +19 -0
  784. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi.bsd.mk +40 -0
  785. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi.darwin.mk +105 -0
  786. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi.gnu.mk +32 -0
  787. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi.mk +18 -0
  788. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi.vc.mk +26 -0
  789. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/libffi.vc64.mk +26 -0
  790. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/rbffi.h +57 -0
  791. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/rbffi_endian.h +59 -0
  792. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/win32/stdbool.h +8 -0
  793. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ext/ffi_c/win32/stdint.h +201 -0
  794. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/ffi.gemspec +36 -0
  795. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/autopointer.rb +203 -0
  796. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/buffer.rb +4 -0
  797. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/callback.rb +4 -0
  798. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/enum.rb +296 -0
  799. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/errno.rb +43 -0
  800. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/ffi.rb +44 -0
  801. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/io.rb +62 -0
  802. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/library.rb +588 -0
  803. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/managedstruct.rb +84 -0
  804. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/memorypointer.rb +1 -0
  805. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
  806. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/aarch64-freebsd12/types.conf +128 -0
  807. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/aarch64-linux/types.conf +104 -0
  808. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/arm-freebsd/types.conf +152 -0
  809. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
  810. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/arm-linux/types.conf +104 -0
  811. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/i386-cygwin/types.conf +3 -0
  812. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/i386-darwin/types.conf +100 -0
  813. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/i386-freebsd/types.conf +152 -0
  814. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
  815. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/i386-gnu/types.conf +107 -0
  816. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/i386-linux/types.conf +103 -0
  817. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/i386-netbsd/types.conf +126 -0
  818. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/i386-openbsd/types.conf +128 -0
  819. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/i386-solaris/types.conf +122 -0
  820. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/i386-windows/types.conf +105 -0
  821. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/ia64-linux/types.conf +104 -0
  822. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/mips-linux/types.conf +102 -0
  823. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/mips64-linux/types.conf +104 -0
  824. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/mips64el-linux/types.conf +104 -0
  825. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/mipsel-linux/types.conf +102 -0
  826. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/mipsisa32r6-linux/types.conf +102 -0
  827. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/mipsisa32r6el-linux/types.conf +102 -0
  828. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/mipsisa64r6-linux/types.conf +104 -0
  829. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/mipsisa64r6el-linux/types.conf +104 -0
  830. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/powerpc-aix/types.conf +180 -0
  831. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
  832. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/powerpc-linux/types.conf +100 -0
  833. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
  834. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/s390-linux/types.conf +102 -0
  835. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/s390x-linux/types.conf +102 -0
  836. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/sparc-linux/types.conf +102 -0
  837. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/sparc-solaris/types.conf +128 -0
  838. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/sparc64-linux/types.conf +102 -0
  839. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
  840. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
  841. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/x86_64-darwin/types.conf +126 -0
  842. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
  843. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/x86_64-freebsd12/types.conf +128 -0
  844. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/x86_64-linux/types.conf +102 -0
  845. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/x86_64-netbsd/types.conf +128 -0
  846. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/x86_64-openbsd/types.conf +134 -0
  847. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
  848. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform/x86_64-windows/types.conf +120 -0
  849. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/platform.rb +170 -0
  850. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/pointer.rb +160 -0
  851. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/struct.rb +371 -0
  852. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/struct_layout_builder.rb +227 -0
  853. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/tools/const_generator.rb +229 -0
  854. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/tools/generator.rb +60 -0
  855. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/tools/generator_task.rb +36 -0
  856. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/tools/struct_generator.rb +194 -0
  857. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/tools/types_generator.rb +134 -0
  858. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/types.rb +194 -0
  859. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/union.rb +43 -0
  860. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/variadic.rb +78 -0
  861. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi/version.rb +3 -0
  862. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi.rb +20 -0
  863. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/lib/ffi_c.so +0 -0
  864. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/samples/getlogin.rb +8 -0
  865. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/samples/getpid.rb +8 -0
  866. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/samples/gettimeofday.rb +18 -0
  867. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/samples/hello.rb +7 -0
  868. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/samples/inotify.rb +60 -0
  869. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/samples/pty.rb +76 -0
  870. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/samples/qsort.rb +21 -0
  871. data/vendor/bundle/ruby/2.5.0/gems/ffi-1.10.0/samples/sample_helper.rb +6 -0
  872. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/.gitignore +15 -0
  873. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/.rspec +1 -0
  874. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/.rubocop.yml +21 -0
  875. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/.travis.yml +10 -0
  876. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/.yardopts +1 -0
  877. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/Gemfile +6 -0
  878. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/LICENSE +19 -0
  879. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/README.md +265 -0
  880. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/Rakefile +16 -0
  881. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/changelog.md +76 -0
  882. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/hashdiff.gemspec +27 -0
  883. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/lib/hashdiff/diff.rb +224 -0
  884. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/lib/hashdiff/lcs.rb +64 -0
  885. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/lib/hashdiff/linear_compare_array.rb +157 -0
  886. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/lib/hashdiff/patch.rb +86 -0
  887. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/lib/hashdiff/util.rb +142 -0
  888. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/lib/hashdiff/version.rb +3 -0
  889. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/lib/hashdiff.rb +6 -0
  890. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/spec/hash_diff/best_diff_spec.rb +73 -0
  891. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/spec/hash_diff/diff_array_spec.rb +58 -0
  892. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/spec/hash_diff/diff_spec.rb +339 -0
  893. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/spec/hash_diff/lcs_spec.rb +74 -0
  894. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/spec/hash_diff/linear_compare_array_spec.rb +48 -0
  895. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/spec/hash_diff/patch_spec.rb +183 -0
  896. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/spec/hash_diff/util_spec.rb +85 -0
  897. data/vendor/bundle/ruby/2.5.0/gems/hashdiff-0.3.8/spec/spec_helper.rb +13 -0
  898. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/.gitignore +10 -0
  899. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/.rubocop.yml +5 -0
  900. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/.rubocop_todo.yml +969 -0
  901. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/.travis.yml +53 -0
  902. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/CHANGES.txt +634 -0
  903. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/Gemfile +11 -0
  904. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/Gemfile.noed25519 +10 -0
  905. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/Gemfile.noed25519.lock +41 -0
  906. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/ISSUE_TEMPLATE.md +30 -0
  907. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/LICENSE.txt +19 -0
  908. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/Manifest +133 -0
  909. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/README.rdoc +194 -0
  910. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/Rakefile +105 -0
  911. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/THANKS.txt +110 -0
  912. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/appveyor.yml +56 -0
  913. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/authentication/agent.rb +268 -0
  914. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/authentication/certificate.rb +171 -0
  915. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/authentication/constants.rb +21 -0
  916. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/authentication/ed25519.rb +169 -0
  917. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/authentication/ed25519_loader.rb +34 -0
  918. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/authentication/key_manager.rb +269 -0
  919. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/authentication/methods/abstract.rb +70 -0
  920. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/authentication/methods/hostbased.rb +74 -0
  921. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/authentication/methods/keyboard_interactive.rb +75 -0
  922. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/authentication/methods/none.rb +37 -0
  923. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/authentication/methods/password.rb +81 -0
  924. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/authentication/methods/publickey.rb +97 -0
  925. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/authentication/pageant.rb +497 -0
  926. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/authentication/pub_key_fingerprint.rb +44 -0
  927. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/authentication/session.rb +161 -0
  928. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/buffer.rb +438 -0
  929. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/buffered_io.rb +204 -0
  930. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/config.rb +372 -0
  931. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/connection/channel.rb +680 -0
  932. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/connection/constants.rb +37 -0
  933. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/connection/event_loop.rb +118 -0
  934. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/connection/keepalive.rb +59 -0
  935. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/connection/session.rb +708 -0
  936. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/connection/term.rb +182 -0
  937. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/errors.rb +106 -0
  938. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/key_factory.rb +132 -0
  939. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/known_hosts.rb +181 -0
  940. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/loggable.rb +63 -0
  941. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/packet.rb +106 -0
  942. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/prompt.rb +64 -0
  943. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/proxy/command.rb +124 -0
  944. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/proxy/errors.rb +18 -0
  945. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/proxy/http.rb +100 -0
  946. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/proxy/https.rb +52 -0
  947. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/proxy/jump.rb +56 -0
  948. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/proxy/socks4.rb +69 -0
  949. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/proxy/socks5.rb +143 -0
  950. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/ruby_compat.rb +13 -0
  951. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/service/forward.rb +425 -0
  952. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/test/channel.rb +149 -0
  953. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/test/extensions.rb +173 -0
  954. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/test/kex.rb +48 -0
  955. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/test/local_packet.rb +55 -0
  956. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/test/packet.rb +101 -0
  957. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/test/remote_packet.rb +42 -0
  958. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/test/script.rb +182 -0
  959. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/test/socket.rb +68 -0
  960. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/test.rb +94 -0
  961. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/algorithms.rb +460 -0
  962. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/cipher_factory.rb +119 -0
  963. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/constants.rb +36 -0
  964. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/ctr.rb +121 -0
  965. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/hmac/abstract.rb +82 -0
  966. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/hmac/md5.rb +12 -0
  967. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/hmac/md5_96.rb +11 -0
  968. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/hmac/none.rb +15 -0
  969. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/hmac/ripemd160.rb +13 -0
  970. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/hmac/sha1.rb +13 -0
  971. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/hmac/sha1_96.rb +11 -0
  972. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/hmac/sha2_256.rb +15 -0
  973. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/hmac/sha2_256_96.rb +13 -0
  974. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/hmac/sha2_512.rb +14 -0
  975. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/hmac/sha2_512_96.rb +13 -0
  976. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/hmac.rb +45 -0
  977. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/identity_cipher.rb +59 -0
  978. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/kex/diffie_hellman_group14_sha1.rb +51 -0
  979. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/kex/diffie_hellman_group1_sha1.rb +231 -0
  980. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha1.rb +79 -0
  981. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha256.rb +15 -0
  982. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/kex/ecdh_sha2_nistp256.rb +100 -0
  983. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/kex/ecdh_sha2_nistp384.rb +20 -0
  984. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/kex/ecdh_sha2_nistp521.rb +20 -0
  985. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/kex.rb +26 -0
  986. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/key_expander.rb +31 -0
  987. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/openssl.rb +252 -0
  988. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/packet_stream.rb +246 -0
  989. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/server_version.rb +76 -0
  990. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/session.rb +352 -0
  991. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/transport/state.rb +208 -0
  992. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/verifiers/accept_new.rb +35 -0
  993. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/verifiers/accept_new_or_local_tunnel.rb +34 -0
  994. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/verifiers/always.rb +56 -0
  995. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/verifiers/never.rb +21 -0
  996. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh/version.rb +68 -0
  997. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/lib/net/ssh.rb +322 -0
  998. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/net-ssh-public_cert.pem +21 -0
  999. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/net-ssh.gemspec +42 -0
  1000. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/support/arcfour_check.rb +20 -0
  1001. data/vendor/bundle/ruby/2.5.0/gems/net-ssh-5.1.0/support/ssh_tunnel_bug.rb +65 -0
  1002. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/.gitignore +21 -0
  1003. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/.travis.yml +21 -0
  1004. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/.yardopts +4 -0
  1005. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/Gemfile +16 -0
  1006. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/LICENSE.md +10 -0
  1007. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/README.md +103 -0
  1008. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/Rakefile +14 -0
  1009. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/lib/rb-inotify/errors.rb +3 -0
  1010. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/lib/rb-inotify/event.rb +146 -0
  1011. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/lib/rb-inotify/native/flags.rb +94 -0
  1012. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/lib/rb-inotify/native.rb +33 -0
  1013. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/lib/rb-inotify/notifier.rb +315 -0
  1014. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/lib/rb-inotify/version.rb +24 -0
  1015. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/lib/rb-inotify/watcher.rb +88 -0
  1016. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/lib/rb-inotify.rb +15 -0
  1017. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/rb-inotify.gemspec +28 -0
  1018. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/spec/inotify_spec.rb +9 -0
  1019. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/spec/notifier_spec.rb +170 -0
  1020. data/vendor/bundle/ruby/2.5.0/gems/rb-inotify-0.10.0/spec/spec_helper.rb +29 -0
  1021. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.2/LICENSE +22 -0
  1022. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.2/README.md +67 -0
  1023. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.2/bin/vagrant_cloud +6 -0
  1024. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.2/lib/vagrant_cloud/account.rb +195 -0
  1025. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.2/lib/vagrant_cloud/box.rb +190 -0
  1026. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.2/lib/vagrant_cloud/client.rb +73 -0
  1027. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.2/lib/vagrant_cloud/errors.rb +35 -0
  1028. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.2/lib/vagrant_cloud/provider.rb +149 -0
  1029. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.2/lib/vagrant_cloud/search.rb +31 -0
  1030. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.2/lib/vagrant_cloud/version.rb +202 -0
  1031. data/vendor/bundle/ruby/2.5.0/gems/vagrant_cloud-2.0.2/lib/vagrant_cloud.rb +11 -0
  1032. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/LICENSE +202 -0
  1033. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/README.md +276 -0
  1034. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/bin/rwinrm +90 -0
  1035. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/connection.rb +84 -0
  1036. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/connection_opts.rb +90 -0
  1037. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/exceptions.rb +88 -0
  1038. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/http/response_handler.rb +127 -0
  1039. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/http/transport.rb +462 -0
  1040. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/http/transport_factory.rb +64 -0
  1041. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/output.rb +58 -0
  1042. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/create_pipeline.xml.erb +167 -0
  1043. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/fragment.rb +68 -0
  1044. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/init_runspace_pool.xml.erb +224 -0
  1045. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/message.rb +128 -0
  1046. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/message_data/base.rb +47 -0
  1047. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/message_data/error_record.rb +66 -0
  1048. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/message_data/pipeline_host_call.rb +30 -0
  1049. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/message_data/pipeline_output.rb +48 -0
  1050. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/message_data/pipeline_state.rb +38 -0
  1051. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/message_data/runspacepool_host_call.rb +30 -0
  1052. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/message_data/runspacepool_state.rb +37 -0
  1053. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/message_data/session_capability.rb +34 -0
  1054. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/message_data.rb +40 -0
  1055. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/message_defragmenter.rb +62 -0
  1056. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/message_factory.rb +74 -0
  1057. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/message_fragmenter.rb +58 -0
  1058. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/powershell_output_decoder.rb +142 -0
  1059. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/receive_response_reader.rb +95 -0
  1060. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/session_capability.xml.erb +7 -0
  1061. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/psrp/uuid.rb +39 -0
  1062. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/shells/base.rb +187 -0
  1063. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/shells/cmd.rb +63 -0
  1064. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/shells/power_shell.rb +206 -0
  1065. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/shells/retryable.rb +44 -0
  1066. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/shells/shell_factory.rb +56 -0
  1067. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/version.rb +5 -0
  1068. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/base.rb +57 -0
  1069. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/cleanup_command.rb +60 -0
  1070. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/close_shell.rb +49 -0
  1071. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/command.rb +100 -0
  1072. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/command_output.rb +75 -0
  1073. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/command_output_decoder.rb +54 -0
  1074. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/configuration.rb +44 -0
  1075. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/create_pipeline.rb +64 -0
  1076. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/create_shell.rb +115 -0
  1077. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/header.rb +213 -0
  1078. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/init_runspace_pool.rb +96 -0
  1079. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/iso8601_duration.rb +58 -0
  1080. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/keep_alive.rb +66 -0
  1081. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/receive_response_reader.rb +128 -0
  1082. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/send_data.rb +66 -0
  1083. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/soap.rb +49 -0
  1084. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/wql_pull.rb +54 -0
  1085. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/wql_query.rb +98 -0
  1086. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm/wsmv/write_stdin.rb +86 -0
  1087. data/vendor/bundle/ruby/2.5.0/gems/winrm-2.3.1/lib/winrm.rb +37 -0
  1088. data/vendor/bundle/ruby/2.5.0/gems/winrm-elevated-1.1.1/LICENSE +202 -0
  1089. data/vendor/bundle/ruby/2.5.0/gems/winrm-elevated-1.1.1/README.md +99 -0
  1090. data/vendor/bundle/ruby/2.5.0/gems/winrm-elevated-1.1.1/lib/winrm/shells/elevated.rb +103 -0
  1091. data/vendor/bundle/ruby/2.5.0/gems/winrm-elevated-1.1.1/lib/winrm-elevated/scripts/elevated_shell.ps1 +116 -0
  1092. data/vendor/bundle/ruby/2.5.0/gems/winrm-elevated-1.1.1/lib/winrm-elevated.rb +17 -0
  1093. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.2/LICENSE +202 -0
  1094. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.2/README.md +82 -0
  1095. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.2/bin/rwinrmcp +85 -0
  1096. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.2/lib/winrm-fs/core/file_transporter.rb +566 -0
  1097. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.2/lib/winrm-fs/core/tmp_zip.rb +176 -0
  1098. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.2/lib/winrm-fs/exceptions.rb +27 -0
  1099. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.2/lib/winrm-fs/file_manager.rb +156 -0
  1100. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.2/lib/winrm-fs/scripts/check_files.ps1.erb +49 -0
  1101. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.2/lib/winrm-fs/scripts/checksum.ps1.erb +13 -0
  1102. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.2/lib/winrm-fs/scripts/create_dir.ps1.erb +6 -0
  1103. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.2/lib/winrm-fs/scripts/delete.ps1.erb +6 -0
  1104. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.2/lib/winrm-fs/scripts/download.ps1.erb +17 -0
  1105. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.2/lib/winrm-fs/scripts/exists.ps1.erb +10 -0
  1106. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.2/lib/winrm-fs/scripts/extract_files.ps1.erb +52 -0
  1107. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.2/lib/winrm-fs/scripts/scripts.rb +31 -0
  1108. data/vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.2/lib/winrm-fs.rb +27 -0
  1109. data/vendor/bundle/ruby/2.5.0/specifications/concurrent-ruby-1.1.4.gemspec +23 -0
  1110. data/vendor/bundle/ruby/2.5.0/specifications/ffi-1.10.0.gemspec +49 -0
  1111. data/vendor/bundle/ruby/2.5.0/specifications/hashdiff-0.3.8.gemspec +45 -0
  1112. data/vendor/bundle/ruby/2.5.0/specifications/net-ssh-5.1.0.gemspec +55 -0
  1113. data/vendor/bundle/ruby/2.5.0/specifications/rb-inotify-0.10.0.gemspec +44 -0
  1114. data/vendor/bundle/ruby/2.5.0/specifications/vagrant_cloud-2.0.2.gemspec +45 -0
  1115. data/vendor/bundle/ruby/2.5.0/specifications/winrm-2.3.1.gemspec +73 -0
  1116. data/vendor/bundle/ruby/2.5.0/specifications/winrm-elevated-1.1.1.gemspec +47 -0
  1117. data/vendor/bundle/ruby/2.5.0/specifications/winrm-fs-1.3.2.gemspec +58 -0
  1118. data/version.txt +1 -1
  1119. metadata +1072 -8
@@ -0,0 +1,423 @@
1
+ /* -----------------------------------------------------------------------
2
+ ffi.c - Copyright (c) 2011 Anthony Green
3
+ Copyright (c) 2009 Bradley Smith <brad@brad-smith.co.uk>
4
+
5
+ AVR32 Foreign Function Interface
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining
8
+ a copy of this software and associated documentation files (the
9
+ ``Software''), to deal in the Software without restriction, including
10
+ without limitation the rights to use, copy, modify, merge, publish,
11
+ distribute, sublicense, and/or sell copies of the Software, and to
12
+ permit persons to whom the Software is furnished to do so, subject to
13
+ the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be included
16
+ in all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
19
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
22
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25
+ DEALINGS IN THE SOFTWARE.
26
+ ----------------------------------------------------------------------- */
27
+
28
+ #include <ffi.h>
29
+ #include <ffi_common.h>
30
+
31
+ #include <stdlib.h>
32
+ #include <stdio.h>
33
+ #include <unistd.h>
34
+ #include <asm/unistd.h>
35
+
36
+ /* #define DEBUG */
37
+
38
+ extern void ffi_call_SYSV(void (*)(char *, extended_cif *), extended_cif *,
39
+ unsigned int, unsigned int, unsigned int*, unsigned int,
40
+ void (*fn)(void));
41
+ extern void ffi_closure_SYSV (ffi_closure *);
42
+
43
+ unsigned int pass_struct_on_stack(ffi_type *type)
44
+ {
45
+ if(type->type != FFI_TYPE_STRUCT)
46
+ return 0;
47
+
48
+ if(type->alignment < type->size &&
49
+ !(type->size == 4 || type->size == 8) &&
50
+ !(type->size == 8 && type->alignment >= 4))
51
+ return 1;
52
+
53
+ if(type->size == 3 || type->size == 5 || type->size == 6 ||
54
+ type->size == 7)
55
+ return 1;
56
+
57
+ return 0;
58
+ }
59
+
60
+ /* ffi_prep_args is called by the assembly routine once stack space
61
+ * has been allocated for the function's arguments
62
+ *
63
+ * This is annoyingly complex since we need to keep track of used
64
+ * registers.
65
+ */
66
+
67
+ void ffi_prep_args(char *stack, extended_cif *ecif)
68
+ {
69
+ unsigned int i;
70
+ void **p_argv;
71
+ ffi_type **p_arg;
72
+ char *reg_base = stack;
73
+ char *stack_base = stack + 20;
74
+ unsigned int stack_offset = 0;
75
+ unsigned int reg_mask = 0;
76
+
77
+ p_argv = ecif->avalue;
78
+
79
+ /* If cif->flags is struct then we know it's not passed in registers */
80
+ if(ecif->cif->flags == FFI_TYPE_STRUCT)
81
+ {
82
+ *(void**)reg_base = ecif->rvalue;
83
+ reg_mask |= 1;
84
+ }
85
+
86
+ for(i = 0, p_arg = ecif->cif->arg_types; i < ecif->cif->nargs;
87
+ i++, p_arg++)
88
+ {
89
+ size_t z = (*p_arg)->size;
90
+ int alignment = (*p_arg)->alignment;
91
+ int type = (*p_arg)->type;
92
+ char *addr = 0;
93
+
94
+ if(z % 4 != 0)
95
+ z += (4 - z % 4);
96
+
97
+ if(reg_mask != 0x1f)
98
+ {
99
+ if(pass_struct_on_stack(*p_arg))
100
+ {
101
+ addr = stack_base + stack_offset;
102
+ stack_offset += z;
103
+ }
104
+ else if(z == sizeof(int))
105
+ {
106
+ char index = 0;
107
+
108
+ while((reg_mask >> index) & 1)
109
+ index++;
110
+
111
+ addr = reg_base + (index * 4);
112
+ reg_mask |= (1 << index);
113
+ }
114
+ else if(z == 2 * sizeof(int))
115
+ {
116
+ if(!((reg_mask >> 1) & 1))
117
+ {
118
+ addr = reg_base + 4;
119
+ reg_mask |= (3 << 1);
120
+ }
121
+ else if(!((reg_mask >> 3) & 1))
122
+ {
123
+ addr = reg_base + 12;
124
+ reg_mask |= (3 << 3);
125
+ }
126
+ }
127
+ }
128
+
129
+ if(!addr)
130
+ {
131
+ addr = stack_base + stack_offset;
132
+ stack_offset += z;
133
+ }
134
+
135
+ if(type == FFI_TYPE_STRUCT && (*p_arg)->elements[1] == NULL)
136
+ type = (*p_arg)->elements[0]->type;
137
+
138
+ switch(type)
139
+ {
140
+ case FFI_TYPE_UINT8:
141
+ *(unsigned int *)addr = (unsigned int)*(UINT8 *)(*p_argv);
142
+ break;
143
+ case FFI_TYPE_SINT8:
144
+ *(signed int *)addr = (signed int)*(SINT8 *)(*p_argv);
145
+ break;
146
+ case FFI_TYPE_UINT16:
147
+ *(unsigned int *)addr = (unsigned int)*(UINT16 *)(*p_argv);
148
+ break;
149
+ case FFI_TYPE_SINT16:
150
+ *(signed int *)addr = (signed int)*(SINT16 *)(*p_argv);
151
+ break;
152
+ default:
153
+ memcpy(addr, *p_argv, z);
154
+ }
155
+
156
+ p_argv++;
157
+ }
158
+
159
+ #ifdef DEBUG
160
+ /* Debugging */
161
+ for(i = 0; i < 5; i++)
162
+ {
163
+ if((reg_mask & (1 << i)) == 0)
164
+ printf("r%d: (unused)\n", 12 - i);
165
+ else
166
+ printf("r%d: 0x%08x\n", 12 - i, ((unsigned int*)reg_base)[i]);
167
+ }
168
+
169
+ for(i = 0; i < stack_offset / 4; i++)
170
+ {
171
+ printf("sp+%d: 0x%08x\n", i*4, ((unsigned int*)stack_base)[i]);
172
+ }
173
+ #endif
174
+ }
175
+
176
+ /* Perform machine dependent cif processing */
177
+ ffi_status ffi_prep_cif_machdep(ffi_cif *cif)
178
+ {
179
+ /* Round the stack up to a multiple of 8 bytes. This isn't needed
180
+ * everywhere, but it is on some platforms, and it doesn't harm
181
+ * anything when it isn't needed. */
182
+ cif->bytes = (cif->bytes + 7) & ~7;
183
+
184
+ /* Flag to indicate that he return value is in fact a struct */
185
+ cif->rstruct_flag = 0;
186
+
187
+ /* Set the return type flag */
188
+ switch(cif->rtype->type)
189
+ {
190
+ case FFI_TYPE_SINT8:
191
+ case FFI_TYPE_UINT8:
192
+ cif->flags = (unsigned)FFI_TYPE_UINT8;
193
+ break;
194
+ case FFI_TYPE_SINT16:
195
+ case FFI_TYPE_UINT16:
196
+ cif->flags = (unsigned)FFI_TYPE_UINT16;
197
+ break;
198
+ case FFI_TYPE_FLOAT:
199
+ case FFI_TYPE_SINT32:
200
+ case FFI_TYPE_UINT32:
201
+ case FFI_TYPE_POINTER:
202
+ cif->flags = (unsigned)FFI_TYPE_UINT32;
203
+ break;
204
+ case FFI_TYPE_DOUBLE:
205
+ case FFI_TYPE_SINT64:
206
+ case FFI_TYPE_UINT64:
207
+ cif->flags = (unsigned)FFI_TYPE_UINT64;
208
+ break;
209
+ case FFI_TYPE_STRUCT:
210
+ cif->rstruct_flag = 1;
211
+ if(!pass_struct_on_stack(cif->rtype))
212
+ {
213
+ if(cif->rtype->size <= 1)
214
+ cif->flags = (unsigned)FFI_TYPE_UINT8;
215
+ else if(cif->rtype->size <= 2)
216
+ cif->flags = (unsigned)FFI_TYPE_UINT16;
217
+ else if(cif->rtype->size <= 4)
218
+ cif->flags = (unsigned)FFI_TYPE_UINT32;
219
+ else if(cif->rtype->size <= 8)
220
+ cif->flags = (unsigned)FFI_TYPE_UINT64;
221
+ else
222
+ cif->flags = (unsigned)cif->rtype->type;
223
+ }
224
+ else
225
+ cif->flags = (unsigned)cif->rtype->type;
226
+ break;
227
+ default:
228
+ cif->flags = (unsigned)cif->rtype->type;
229
+ break;
230
+ }
231
+
232
+ return FFI_OK;
233
+ }
234
+
235
+ void ffi_call(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue)
236
+ {
237
+ extended_cif ecif;
238
+
239
+ unsigned int size = 0, i = 0;
240
+ ffi_type **p_arg;
241
+
242
+ ecif.cif = cif;
243
+ ecif.avalue = avalue;
244
+
245
+ for(i = 0, p_arg = cif->arg_types; i < cif->nargs; i++, p_arg++)
246
+ size += (*p_arg)->size + (4 - (*p_arg)->size % 4);
247
+
248
+ /* If the return value is a struct and we don't have a return value
249
+ * address then we need to make one */
250
+
251
+ /* If cif->flags is struct then it's not suitable for registers */
252
+ if((rvalue == NULL) && (cif->flags == FFI_TYPE_STRUCT))
253
+ ecif.rvalue = alloca(cif->rtype->size);
254
+ else
255
+ ecif.rvalue = rvalue;
256
+
257
+ switch(cif->abi)
258
+ {
259
+ case FFI_SYSV:
260
+ ffi_call_SYSV(ffi_prep_args, &ecif, size, cif->flags,
261
+ ecif.rvalue, cif->rstruct_flag, fn);
262
+ break;
263
+ default:
264
+ FFI_ASSERT(0);
265
+ break;
266
+ }
267
+ }
268
+
269
+ static void ffi_prep_incoming_args_SYSV(char *stack, void **rvalue,
270
+ void **avalue, ffi_cif *cif)
271
+ {
272
+ register unsigned int i, reg_mask = 0;
273
+ register void **p_argv;
274
+ register ffi_type **p_arg;
275
+ register char *reg_base = stack;
276
+ register char *stack_base = stack + 20;
277
+ register unsigned int stack_offset = 0;
278
+
279
+ #ifdef DEBUG
280
+ /* Debugging */
281
+ for(i = 0; i < cif->nargs + 7; i++)
282
+ {
283
+ printf("sp+%d: 0x%08x\n", i*4, ((unsigned int*)stack)[i]);
284
+ }
285
+ #endif
286
+
287
+ /* If cif->flags is struct then we know it's not passed in registers */
288
+ if(cif->flags == FFI_TYPE_STRUCT)
289
+ {
290
+ *rvalue = *(void **)reg_base;
291
+ reg_mask |= 1;
292
+ }
293
+
294
+ p_argv = avalue;
295
+
296
+ for(i = 0, p_arg = cif->arg_types; i < cif->nargs; i++, p_arg++)
297
+ {
298
+ size_t z = (*p_arg)->size;
299
+ int alignment = (*p_arg)->alignment;
300
+
301
+ *p_argv = 0;
302
+
303
+ if(z % 4 != 0)
304
+ z += (4 - z % 4);
305
+
306
+ if(reg_mask != 0x1f)
307
+ {
308
+ if(pass_struct_on_stack(*p_arg))
309
+ {
310
+ *p_argv = (void*)stack_base + stack_offset;
311
+ stack_offset += z;
312
+ }
313
+ else if(z <= sizeof(int))
314
+ {
315
+ char index = 0;
316
+
317
+ while((reg_mask >> index) & 1)
318
+ index++;
319
+
320
+ *p_argv = (void*)reg_base + (index * 4);
321
+ reg_mask |= (1 << index);
322
+ }
323
+ else if(z == 2 * sizeof(int))
324
+ {
325
+ if(!((reg_mask >> 1) & 1))
326
+ {
327
+ *p_argv = (void*)reg_base + 4;
328
+ reg_mask |= (3 << 1);
329
+ }
330
+ else if(!((reg_mask >> 3) & 1))
331
+ {
332
+ *p_argv = (void*)reg_base + 12;
333
+ reg_mask |= (3 << 3);
334
+ }
335
+ }
336
+ }
337
+
338
+ if(!*p_argv)
339
+ {
340
+ *p_argv = (void*)stack_base + stack_offset;
341
+ stack_offset += z;
342
+ }
343
+
344
+ if((*p_arg)->type != FFI_TYPE_STRUCT ||
345
+ (*p_arg)->elements[1] == NULL)
346
+ {
347
+ if(alignment == 1)
348
+ **(unsigned int**)p_argv <<= 24;
349
+ else if(alignment == 2)
350
+ **(unsigned int**)p_argv <<= 16;
351
+ }
352
+
353
+ p_argv++;
354
+ }
355
+
356
+ #ifdef DEBUG
357
+ /* Debugging */
358
+ for(i = 0; i < cif->nargs; i++)
359
+ {
360
+ printf("sp+%d: 0x%08x\n", i*4, *(((unsigned int**)avalue)[i]));
361
+ }
362
+ #endif
363
+ }
364
+
365
+ /* This function is jumped to by the trampoline */
366
+
367
+ unsigned int ffi_closure_SYSV_inner(ffi_closure *closure, void **respp,
368
+ void *args)
369
+ {
370
+ ffi_cif *cif;
371
+ void **arg_area;
372
+ unsigned int i, size = 0;
373
+ ffi_type **p_arg;
374
+
375
+ cif = closure->cif;
376
+
377
+ for(i = 0, p_arg = cif->arg_types; i < cif->nargs; i++, p_arg++)
378
+ size += (*p_arg)->size + (4 - (*p_arg)->size % 4);
379
+
380
+ arg_area = (void **)alloca(size);
381
+
382
+ /* this call will initialize ARG_AREA, such that each element in that
383
+ * array points to the corresponding value on the stack; and if the
384
+ * function returns a structure, it will re-set RESP to point to the
385
+ * structure return address. */
386
+
387
+ ffi_prep_incoming_args_SYSV(args, respp, arg_area, cif);
388
+
389
+ (closure->fun)(cif, *respp, arg_area, closure->user_data);
390
+
391
+ return cif->flags;
392
+ }
393
+
394
+ ffi_status ffi_prep_closure_loc(ffi_closure* closure, ffi_cif* cif,
395
+ void (*fun)(ffi_cif*, void*, void**, void*), void *user_data,
396
+ void *codeloc)
397
+ {
398
+ if (cif->abi != FFI_SYSV)
399
+ return FFI_BAD_ABI;
400
+
401
+ unsigned char *__tramp = (unsigned char*)(&closure->tramp[0]);
402
+ unsigned int __fun = (unsigned int)(&ffi_closure_SYSV);
403
+ unsigned int __ctx = (unsigned int)(codeloc);
404
+ unsigned int __rstruct_flag = (unsigned int)(cif->rstruct_flag);
405
+ unsigned int __inner = (unsigned int)(&ffi_closure_SYSV_inner);
406
+ *(unsigned int*) &__tramp[0] = 0xebcd1f00; /* pushm r8-r12 */
407
+ *(unsigned int*) &__tramp[4] = 0xfefc0010; /* ld.w r12, pc[16] */
408
+ *(unsigned int*) &__tramp[8] = 0xfefb0010; /* ld.w r11, pc[16] */
409
+ *(unsigned int*) &__tramp[12] = 0xfefa0010; /* ld.w r10, pc[16] */
410
+ *(unsigned int*) &__tramp[16] = 0xfeff0010; /* ld.w pc, pc[16] */
411
+ *(unsigned int*) &__tramp[20] = __ctx;
412
+ *(unsigned int*) &__tramp[24] = __rstruct_flag;
413
+ *(unsigned int*) &__tramp[28] = __inner;
414
+ *(unsigned int*) &__tramp[32] = __fun;
415
+ syscall(__NR_cacheflush, 0, (&__tramp[0]), 36);
416
+
417
+ closure->cif = cif;
418
+ closure->user_data = user_data;
419
+ closure->fun = fun;
420
+
421
+ return FFI_OK;
422
+ }
423
+
@@ -0,0 +1,55 @@
1
+ /* -----------------------------------------------------------------*-C-*-
2
+ ffitarget.h - Copyright (c) 2012 Anthony Green
3
+ Copyright (c) 2009 Bradley Smith <brad@brad-smith.co.uk>
4
+ Target configuration macros for AVR32.
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining
7
+ a copy of this software and associated documentation files (the
8
+ ``Software''), to deal in the Software without restriction, including
9
+ without limitation the rights to use, copy, modify, merge, publish,
10
+ distribute, sublicense, and/or sell copies of the Software, and to
11
+ permit persons to whom the Software is furnished to do so, subject to
12
+ the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included
15
+ in all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
18
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
21
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
22
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24
+ DEALINGS IN THE SOFTWARE.
25
+
26
+ ----------------------------------------------------------------------- */
27
+
28
+ #ifndef LIBFFI_TARGET_H
29
+ #define LIBFFI_TARGET_H
30
+
31
+ #ifndef LIBFFI_H
32
+ #error "Please do not include ffitarget.h directly into your source. Use ffi.h instead."
33
+ #endif
34
+
35
+ #ifndef LIBFFI_ASM
36
+ typedef unsigned long ffi_arg;
37
+ typedef signed long ffi_sarg;
38
+
39
+ typedef enum ffi_abi {
40
+ FFI_FIRST_ABI = 0,
41
+ FFI_SYSV,
42
+ FFI_LAST_ABI,
43
+ FFI_DEFAULT_ABI = FFI_SYSV
44
+ } ffi_abi;
45
+ #endif
46
+
47
+ #define FFI_EXTRA_CIF_FIELDS unsigned int rstruct_flag
48
+
49
+ /* Definitions for closures */
50
+
51
+ #define FFI_CLOSURES 1
52
+ #define FFI_TRAMPOLINE_SIZE 36
53
+ #define FFI_NATIVE_RAW_API 0
54
+
55
+ #endif
@@ -0,0 +1,208 @@
1
+ /* -----------------------------------------------------------------------
2
+ sysv.S - Copyright (c) 2009 Bradley Smith <brad@brad-smith.co.uk>
3
+
4
+ AVR32 Foreign Function Interface
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining
7
+ a copy of this software and associated documentation files (the
8
+ ``Software''), to deal in the Software without restriction, including
9
+ without limitation the rights to use, copy, modify, merge, publish,
10
+ distribute, sublicense, and/or sell copies of the Software, and to
11
+ permit persons to whom the Software is furnished to do so, subject to
12
+ the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included
15
+ in all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
18
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
21
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24
+ --------------------------------------------------------------------- */
25
+
26
+ #define LIBFFI_ASM
27
+ #include <fficonfig.h>
28
+ #include <ffi.h>
29
+
30
+ /* r12: ffi_prep_args
31
+ * r11: &ecif
32
+ * r10: size
33
+ * r9: cif->flags
34
+ * r8: ecif.rvalue
35
+ * sp+0: cif->rstruct_flag
36
+ * sp+4: fn */
37
+
38
+ .text
39
+ .align 1
40
+ .globl ffi_call_SYSV
41
+ .type ffi_call_SYSV, @function
42
+ ffi_call_SYSV:
43
+ stm --sp, r0,r1,lr
44
+ stm --sp, r8-r12
45
+ mov r0, sp
46
+
47
+ /* Make room for all of the new args. */
48
+ sub sp, r10
49
+ /* Pad to make way for potential skipped registers */
50
+ sub sp, 20
51
+
52
+ /* Call ffi_prep_args(stack, &ecif). */
53
+ /* r11 already set */
54
+ mov r1, r12
55
+ mov r12, sp
56
+ icall r1
57
+
58
+ /* Save new argument size */
59
+ mov r1, r12
60
+
61
+ /* Move first 5 parameters in registers. */
62
+ ldm sp++, r8-r12
63
+
64
+ /* call (fn) (...). */
65
+ ld.w r1, r0[36]
66
+ icall r1
67
+
68
+ /* Remove the space we pushed for the args. */
69
+ mov sp, r0
70
+
71
+ /* Load r1 with the rstruct flag. */
72
+ ld.w r1, sp[32]
73
+
74
+ /* Load r9 with the return type code. */
75
+ ld.w r9, sp[12]
76
+
77
+ /* Load r8 with the return value pointer. */
78
+ ld.w r8, sp[16]
79
+
80
+ /* If the return value pointer is NULL, assume no return value. */
81
+ cp.w r8, 0
82
+ breq .Lend
83
+
84
+ /* Check if return type is actually a struct */
85
+ cp.w r1, 0
86
+ breq 1f
87
+
88
+ /* Return 8bit */
89
+ cp.w r9, FFI_TYPE_UINT8
90
+ breq .Lstore8
91
+
92
+ /* Return 16bit */
93
+ cp.w r9, FFI_TYPE_UINT16
94
+ breq .Lstore16
95
+
96
+ 1:
97
+ /* Return 32bit */
98
+ cp.w r9, FFI_TYPE_UINT32
99
+ breq .Lstore32
100
+ cp.w r9, FFI_TYPE_UINT16
101
+ breq .Lstore32
102
+ cp.w r9, FFI_TYPE_UINT8
103
+ breq .Lstore32
104
+
105
+ /* Return 64bit */
106
+ cp.w r9, FFI_TYPE_UINT64
107
+ breq .Lstore64
108
+
109
+ /* Didn't match anything */
110
+ bral .Lend
111
+
112
+ .Lstore64:
113
+ st.w r8[0], r11
114
+ st.w r8[4], r10
115
+ bral .Lend
116
+
117
+ .Lstore32:
118
+ st.w r8[0], r12
119
+ bral .Lend
120
+
121
+ .Lstore16:
122
+ st.h r8[0], r12
123
+ bral .Lend
124
+
125
+ .Lstore8:
126
+ st.b r8[0], r12
127
+ bral .Lend
128
+
129
+ .Lend:
130
+ sub sp, -20
131
+ ldm sp++, r0,r1,pc
132
+
133
+ .size ffi_call_SYSV, . - ffi_call_SYSV
134
+
135
+
136
+ /* r12: __ctx
137
+ * r11: __rstruct_flag
138
+ * r10: __inner */
139
+
140
+ .align 1
141
+ .globl ffi_closure_SYSV
142
+ .type ffi_closure_SYSV, @function
143
+ ffi_closure_SYSV:
144
+ stm --sp, r0,lr
145
+ mov r0, r11
146
+ mov r8, r10
147
+ sub r10, sp, -8
148
+ sub sp, 12
149
+ st.w sp[8], sp
150
+ sub r11, sp, -8
151
+ icall r8
152
+
153
+ /* Check if return type is actually a struct */
154
+ cp.w r0, 0
155
+ breq 1f
156
+
157
+ /* Return 8bit */
158
+ cp.w r12, FFI_TYPE_UINT8
159
+ breq .Lget8
160
+
161
+ /* Return 16bit */
162
+ cp.w r12, FFI_TYPE_UINT16
163
+ breq .Lget16
164
+
165
+ 1:
166
+ /* Return 32bit */
167
+ cp.w r12, FFI_TYPE_UINT32
168
+ breq .Lget32
169
+ cp.w r12, FFI_TYPE_UINT16
170
+ breq .Lget32
171
+ cp.w r12, FFI_TYPE_UINT8
172
+ breq .Lget32
173
+
174
+ /* Return 64bit */
175
+ cp.w r12, FFI_TYPE_UINT64
176
+ breq .Lget64
177
+
178
+ /* Didn't match anything */
179
+ bral .Lclend
180
+
181
+ .Lget64:
182
+ ld.w r11, sp[0]
183
+ ld.w r10, sp[4]
184
+ bral .Lclend
185
+
186
+ .Lget32:
187
+ ld.w r12, sp[0]
188
+ bral .Lclend
189
+
190
+ .Lget16:
191
+ ld.uh r12, sp[0]
192
+ bral .Lclend
193
+
194
+ .Lget8:
195
+ ld.ub r12, sp[0]
196
+ bral .Lclend
197
+
198
+ .Lclend:
199
+ sub sp, -12
200
+ ldm sp++, r0,lr
201
+ sub sp, -20
202
+ mov pc, lr
203
+
204
+ .size ffi_closure_SYSV, . - ffi_closure_SYSV
205
+
206
+ #if defined __ELF__ && defined __linux__
207
+ .section .note.GNU-stack,"",@progbits
208
+ #endif