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,65 @@
1
+ # This tests that packaging works with a given provider.
2
+ shared_examples "provider/package" do |provider, options|
3
+ if !options[:box]
4
+ raise ArgumentError,
5
+ "box option must be specified for provider: #{provider}"
6
+ end
7
+
8
+ include_context "acceptance"
9
+
10
+ it "can't package before an up" do
11
+ expect(execute("vagrant", "package")).to exit_with(1)
12
+ end
13
+
14
+ context "with a running machine" do
15
+ before do
16
+ assert_execute("vagrant", "box", "add", "box", options[:box])
17
+ assert_execute("vagrant", "init", "box")
18
+ assert_execute("vagrant", "up", "--provider=#{provider}")
19
+ end
20
+
21
+ after do
22
+ # Just always do this just in case
23
+ execute("vagrant", "destroy", "--force", log: false)
24
+ end
25
+
26
+ it "can package and bring the box back up" do
27
+ expect(execute("vagrant", "package")).to exit_with(0)
28
+ assert_execute("vagrant", "destroy", "--force")
29
+
30
+ path = environment.workdir.join("package.box")
31
+ expect(path).to be_file
32
+
33
+ begin
34
+ # Create a new environment and bring up the packaged box
35
+ status("Testing that we can re-use the packaged box")
36
+ new_env = new_environment
37
+ assert_execute("vagrant", "box", "add", "temp", path.to_s, env: new_env)
38
+ assert_execute("vagrant", "init", "temp", env: new_env)
39
+ assert_execute("vagrant", "up", "--provider=#{provider}", env: new_env)
40
+
41
+ # Test again for GH-5780
42
+ status("Testing we can re-package again (GH-5780)")
43
+ assert_execute("vagrant", "package", env: new_env)
44
+ assert_execute("vagrant", "destroy", "--force", env: new_env)
45
+
46
+ path = new_env.workdir.join("package.box")
47
+ new_env2 = new_environment
48
+ assert_execute("vagrant", "box", "add", "temp", path.to_s, env: new_env2)
49
+ assert_execute("vagrant", "init", "temp", env: new_env2)
50
+ assert_execute("vagrant", "up", "--provider=#{provider}", env: new_env2)
51
+ assert_execute("vagrant", "destroy", "--force", env: new_env2)
52
+ ensure
53
+ if new_env
54
+ new_env.execute("vagrant", "destroy", "--force")
55
+ new_env.close
56
+ end
57
+
58
+ if new_env2
59
+ new_env2.execute("vagrant", "destroy", "--force")
60
+ new_env2.close
61
+ end
62
+ end
63
+ end
64
+ end
65
+ end
@@ -0,0 +1,33 @@
1
+ # This tests that synced folders work with a given provider.
2
+ shared_examples "provider/synced_folder" do |provider, options|
3
+ if !options[:box]
4
+ raise ArgumentError,
5
+ "box option must be specified for provider: #{provider}"
6
+ end
7
+
8
+ include_context "acceptance"
9
+
10
+ before do
11
+ environment.skeleton("synced_folders")
12
+ assert_execute("vagrant", "box", "add", "basic", options[:box])
13
+ assert_execute("vagrant", "up", "--provider=#{provider}")
14
+ end
15
+
16
+ after do
17
+ assert_execute("vagrant", "destroy", "--force")
18
+ end
19
+
20
+ # We put all of this in a single RSpec test so that we can test all
21
+ # the cases within a single VM rather than having to `vagrant up` many
22
+ # times.
23
+ it "properly configures synced folder types" do
24
+ status("Test: mounts the default /vagrant synced folder")
25
+ result = execute("vagrant", "ssh", "-c", "cat /vagrant/foo")
26
+ expect(result.exit_code).to eql(0)
27
+ expect(result.stdout).to match(/hello$/)
28
+
29
+ status("Test: doesn't mount a disabled folder")
30
+ result = execute("vagrant", "ssh", "-c", "test -d /foo")
31
+ expect(result.exit_code).to eql(1)
32
+ end
33
+ end
@@ -0,0 +1,31 @@
1
+ shared_examples "provider/provisioner/chef-solo" do |provider, options|
2
+ box = options[:box_chef] || options[:box]
3
+ if !box
4
+ raise ArgumentError,
5
+ "box_basic option must be specified for provider: #{provider}"
6
+ end
7
+
8
+ include_context "acceptance"
9
+
10
+ before do
11
+ environment.skeleton("provisioner_chef_solo")
12
+ assert_execute("vagrant", "box", "add", "box", box)
13
+ assert_execute("vagrant", "up", "--provider=#{provider}")
14
+ end
15
+
16
+ after do
17
+ assert_execute("vagrant", "destroy", "--force")
18
+ end
19
+
20
+ it "provisions with chef-solo" do
21
+ status("Test: basic cookbooks and recipes")
22
+ result = execute("vagrant", "ssh", "-c", "cat /vagrant-chef-basic")
23
+ expect(result).to exit_with(0)
24
+ expect(result.stdout).to match(/basic$/)
25
+
26
+ status("Test: works with roles")
27
+ result = execute("vagrant", "ssh", "-c", "cat /vagrant-chef-basic-roles")
28
+ expect(result).to exit_with(0)
29
+ expect(result.stdout).to match(/basic-roles$/)
30
+ end
31
+ end
@@ -0,0 +1,26 @@
1
+ shared_examples "provider/provisioner/docker" do |provider, options|
2
+ box = options[:box_docker] || options[:box]
3
+ if !box
4
+ raise ArgumentError,
5
+ "box_basic option must be specified for provider: #{provider}"
6
+ end
7
+
8
+ include_context "acceptance"
9
+
10
+ before do
11
+ environment.skeleton("provisioner_docker")
12
+ assert_execute("vagrant", "box", "add", "box", box)
13
+ assert_execute("vagrant", "up", "--provider=#{provider}")
14
+ end
15
+
16
+ after do
17
+ assert_execute("vagrant", "destroy", "--force")
18
+ end
19
+
20
+ it "provisions with and installs docker" do
21
+ status("Test: installs docker")
22
+ result = execute("vagrant", "ssh", "-c", "which docker")
23
+ expect(result).to exit_with(0)
24
+ expect(result.stdout).to match(/docker/)
25
+ end
26
+ end
@@ -0,0 +1,31 @@
1
+ shared_examples "provider/provisioner/puppet" do |provider, options|
2
+ box = options[:box_puppet] || options[:box]
3
+ if !box
4
+ raise ArgumentError,
5
+ "box_basic option must be specified for provider: #{provider}"
6
+ end
7
+
8
+ include_context "acceptance"
9
+
10
+ before do
11
+ environment.skeleton("provisioner_puppet")
12
+ assert_execute("vagrant", "box", "add", "box", box)
13
+ assert_execute("vagrant", "up", "--provider=#{provider}")
14
+ end
15
+
16
+ after do
17
+ assert_execute("vagrant", "destroy", "--force")
18
+ end
19
+
20
+ it "provisions with puppet" do
21
+ status("Test: basic manifests")
22
+ result = execute("vagrant", "ssh", "-c", "cat /vagrant-puppet-basic")
23
+ expect(result).to exit_with(0)
24
+ expect(result.stdout).to match(/basic$/)
25
+
26
+ status("Test: basic modules")
27
+ result = execute("vagrant", "ssh", "-c", "cat /vagrant-puppet-basic-modules")
28
+ expect(result).to exit_with(0)
29
+ expect(result.stdout).to match(/modules$/)
30
+ end
31
+ end
@@ -0,0 +1,45 @@
1
+ shared_examples "provider/provisioner/shell" do |provider, options|
2
+ if !options[:box]
3
+ raise ArgumentError,
4
+ "box_basic option must be specified for provider: #{provider}"
5
+ end
6
+
7
+ include_context "acceptance"
8
+
9
+ before do
10
+ environment.skeleton("provisioner_shell")
11
+ assert_execute("vagrant", "box", "add", "box", options[:box])
12
+ assert_execute("vagrant", "up", "--provider=#{provider}")
13
+ end
14
+
15
+ after do
16
+ assert_execute("vagrant", "destroy", "--force")
17
+ end
18
+
19
+ it "provisions with the shell script" do
20
+ status("Test: inline script")
21
+ result = execute("vagrant", "ssh", "-c", "cat /foo")
22
+ expect(result).to exit_with(0)
23
+ expect(result.stdout).to match(/foo\n$/)
24
+
25
+ status("Test: script from path")
26
+ result = execute("vagrant", "ssh", "-c", "cat /vagrant-path")
27
+ expect(result).to exit_with(0)
28
+ expect(result.stdout).to match(/bar\n$/)
29
+
30
+ status("Test: script with args")
31
+ result = execute("vagrant", "ssh", "-c", "cat /vagrant-args")
32
+ expect(result).to exit_with(0)
33
+ expect(result.stdout).to match(/hello\ntwo words\n$/)
34
+
35
+ status("Test: privileged scripts")
36
+ result = execute("vagrant", "ssh", "-c", "cat /tmp/vagrant-user-root")
37
+ expect(result).to exit_with(0)
38
+ expect(result.stdout).to match(/root$/)
39
+
40
+ status("Test: non-privileged scripts")
41
+ result = execute("vagrant", "ssh", "-c", "cat /tmp/vagrant-user")
42
+ expect(result).to exit_with(0)
43
+ expect(result.stdout).to_not match(/root$/)
44
+ end
45
+ end
@@ -0,0 +1,4 @@
1
+ This directory contains Vagrant plugins that should be built and are
2
+ used as support for some of the acceptance tests. These plugins are
3
+ manually built and updated in the git repository so that users of
4
+ vagrant-spec don't have to do this.
@@ -0,0 +1,18 @@
1
+ # coding: utf-8
2
+ Gem::Specification.new do |spec|
3
+ spec.name = "vagrant-spec-helper-basic"
4
+ spec.version = "0.1.0"
5
+ spec.authors = ["Mitchell Hashimoto"]
6
+ spec.email = ["mitchell.hashimoto@gmail.com"]
7
+ spec.description = %q{Gem used as a helper for vagrant-spec.}
8
+ spec.summary = %q{Gem used as a helper for vagrant-spec. Don't use this.}
9
+ spec.homepage = "https://github.com/mitchellh/vagrant-spec"
10
+ spec.license = "MPL2"
11
+
12
+ spec.files = `git ls-files`.split($/)
13
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
14
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
15
+ spec.require_paths = ["lib"]
16
+
17
+ spec.add_development_dependency "rake"
18
+ end
@@ -0,0 +1,18 @@
1
+ # coding: utf-8
2
+ Gem::Specification.new do |spec|
3
+ spec.name = "vagrant-spec-helper-basic"
4
+ spec.version = "0.2.0"
5
+ spec.authors = ["Mitchell Hashimoto"]
6
+ spec.email = ["mitchell.hashimoto@gmail.com"]
7
+ spec.description = %q{Gem used as a helper for vagrant-spec.}
8
+ spec.summary = %q{Gem used as a helper for vagrant-spec. Don't use this.}
9
+ spec.homepage = "https://github.com/mitchellh/vagrant-spec"
10
+ spec.license = "MPL2"
11
+
12
+ spec.files = `git ls-files`.split($/)
13
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
14
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
15
+ spec.require_paths = ["lib"]
16
+
17
+ spec.add_development_dependency "rake"
18
+ end
@@ -0,0 +1,18 @@
1
+ # coding: utf-8
2
+ Gem::Specification.new do |spec|
3
+ spec.name = "vagrant-spec-helper-basic-rename"
4
+ spec.version = "0.1.0"
5
+ spec.authors = ["Mitchell Hashimoto"]
6
+ spec.email = ["mitchell.hashimoto@gmail.com"]
7
+ spec.description = %q{Gem used as a helper for vagrant-spec.}
8
+ spec.summary = %q{Gem used as a helper for vagrant-spec. Don't use this.}
9
+ spec.homepage = "https://github.com/mitchellh/vagrant-spec"
10
+ spec.license = "MPL2"
11
+
12
+ spec.files = `git ls-files`.split($/)
13
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
14
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
15
+ spec.require_paths = ["lib"]
16
+
17
+ spec.add_development_dependency "rake"
18
+ end
@@ -0,0 +1,10 @@
1
+ module VSHB
2
+ class Plugin < Vagrant.plugin("2")
3
+ name "vshb"
4
+
5
+ command("vshb") do
6
+ require_relative "vshb/command"
7
+ Command
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,7 @@
1
+ module VSHB
2
+ class Command < Vagrant.plugin("2", "command")
3
+ def execute
4
+ puts "I HAVE BEEN EXECUTED"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ Vagrant.configure("2") do |config|
2
+ config.vm.box = "box"
3
+
4
+ config.vm.network "forwarded_port", guest: 8080, host: 8080
5
+ end
@@ -0,0 +1,5 @@
1
+ Vagrant.configure("2") do |config|
2
+ config.vm.box = "box"
3
+
4
+ config.vm.network "private_network", ip: "192.168.33.10"
5
+ end
@@ -0,0 +1,14 @@
1
+ Vagrant.configure("2") do |config|
2
+ config.vm.box = "box"
3
+
4
+ config.vm.provision "chef_solo" do |chef|
5
+ chef.cookbooks_path = "basic/cookbooks"
6
+ chef.run_list = ["recipe[foo]"]
7
+ end
8
+
9
+ config.vm.provision "chef_solo" do |chef|
10
+ chef.cookbooks_path = "basic-roles/cookbooks"
11
+ chef.roles_path = "basic-roles/roles"
12
+ chef.run_list = ["role[foo]"]
13
+ end
14
+ end
@@ -0,0 +1,5 @@
1
+ Vagrant.configure("2") do |config|
2
+ config.vm.box = "box"
3
+
4
+ config.vm.provision "docker"
5
+ end
@@ -0,0 +1,10 @@
1
+ Vagrant.configure("2") do |config|
2
+ config.vm.box = "box"
3
+
4
+ config.vm.provision "puppet"
5
+
6
+ config.vm.provision "puppet" do |p|
7
+ p.module_path = "basic-modules/modules"
8
+ p.manifests_path = "basic-modules/manifests"
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ Vagrant.configure("2") do |config|
2
+ config.vm.box = "box"
3
+
4
+ config.vm.provision "shell", inline: "echo foo > /foo"
5
+ config.vm.provision "shell", path: "path.sh"
6
+ config.vm.provision "shell", path: "args.sh", args: ["hello", "two words"]
7
+
8
+ config.vm.provision "shell", path: "user_root.sh"
9
+ config.vm.provision "shell", path: "user.sh", privileged: false
10
+ end
@@ -0,0 +1,4 @@
1
+ #!/bin/bash
2
+
3
+ echo $1 > /vagrant-args
4
+ echo $2 >> /vagrant-args
@@ -0,0 +1,7 @@
1
+ Vagrant.configure("2") do |config|
2
+ config.vm.box = "box"
3
+
4
+ config.vm.synced_folder ".", "/vagrant-nfs", type: "nfs"
5
+ config.vm.synced_folder ".", "/foo", type: "nfs", disabled: true
6
+ config.vm.network "private_network", ip: "192.168.33.10"
7
+ end
@@ -0,0 +1,6 @@
1
+ Vagrant.configure("2") do |config|
2
+ config.vm.box = "box"
3
+
4
+ config.vm.synced_folder ".", "/vagrant-rsync", type: "rsync"
5
+ config.vm.synced_folder ".", "/foo", type: "rsync", disabled: true
6
+ end
@@ -0,0 +1,6 @@
1
+ Vagrant.configure("2") do |config|
2
+ config.vm.box = "basic"
3
+
4
+ # Test that disabled works
5
+ config.vm.synced_folder "../", "/foo", disabled: true
6
+ end
@@ -0,0 +1,44 @@
1
+ # -*- mode: ruby -*-
2
+ # vi: set ft=ruby :
3
+
4
+
5
+ Vagrant.configure("2") do |config|
6
+ config.vm.box = "box"
7
+
8
+ config.trigger.before :up do |trigger|
9
+ trigger.name = "Failure"
10
+ trigger.warn = "I'm going to fail"
11
+ trigger.on_error = :continue
12
+ trigger.run_remote = {inline: "echo 'hiiiiiiii'"}
13
+ end
14
+
15
+ config.trigger.before :up do |trigger|
16
+ trigger.name = "Failure part 2"
17
+ trigger.warn = "Does not exist"
18
+ trigger.on_error = :continue
19
+ trigger.run = {path: "fail.sh"}
20
+ end
21
+
22
+ config.trigger.before :all do |trigger|
23
+ trigger.name = "ALL"
24
+ trigger.info = "Before the action!"
25
+ trigger.ignore = :destroy
26
+ trigger.run = {path: "script.sh"}
27
+ end
28
+
29
+ config.trigger.after :up do |trigger|
30
+ trigger.name = "Acceptance Advanced"
31
+ trigger.only_on = /machine/
32
+ trigger.run_remote = {path: "script.sh"}
33
+ end
34
+
35
+ config.vm.define "spec-box" do |v|
36
+ v.vm.hostname = "vagrant-spec.local"
37
+ v.trigger.after :up,
38
+ info: "Only spec-box"
39
+ end
40
+
41
+ config.vm.define "machine-box" do |v|
42
+ v.vm.hostname = "machine-box.local"
43
+ end
44
+ end
@@ -0,0 +1,25 @@
1
+ Vagrant.configure("2") do |config|
2
+ config.vm.box = "box"
3
+
4
+ config.trigger.before :up do |trigger|
5
+ trigger.name = "Acceptance"
6
+ trigger.info = "Testing 1 2 3..."
7
+ trigger.run = {inline: "echo 'Hello before up'"}
8
+ end
9
+
10
+ config.trigger.after :up do |trigger|
11
+ trigger.name = "Acceptance"
12
+ trigger.info = "Testing 1 2 3..."
13
+ trigger.run = {inline: "echo 'Hello after up'"}
14
+ end
15
+
16
+ config.trigger.before :destroy,
17
+ name: "DESTROY!!",
18
+ warn: "Testing 1 2 3...",
19
+ run: {inline: "echo 'Hello before destroy'"}
20
+
21
+ config.trigger.after :destroy,
22
+ name: "Destroyed",
23
+ warn: "Testing 1 2 3...",
24
+ run: {inline: "echo 'Hello after destroy'"}
25
+ end
@@ -0,0 +1,29 @@
1
+ shared_examples "provider/synced_folder/nfs" do |provider, options|
2
+ if !options[:box]
3
+ raise ArgumentError,
4
+ "box option must be specified for provider: #{provider}"
5
+ end
6
+
7
+ include_context "acceptance"
8
+
9
+ before do
10
+ environment.skeleton("synced_folder_nfs")
11
+ assert_execute("vagrant", "box", "add", "box", options[:box])
12
+ assert_execute("vagrant", "up", "--provider=#{provider}")
13
+ end
14
+
15
+ after do
16
+ assert_execute("vagrant", "destroy", "--force")
17
+ end
18
+
19
+ it "properly configures NFS" do
20
+ status("Test: mounts the NFS folder")
21
+ result = execute("vagrant", "ssh", "-c", "cat /vagrant-nfs/foo")
22
+ expect(result).to exit_with(0)
23
+ expect(result.stdout).to match(/hello$/)
24
+
25
+ status("Test: doesn't mount a disabled folder")
26
+ result = execute("vagrant", "ssh", "-c", "test -d /foo")
27
+ expect(result.exit_code).to eql(1)
28
+ end
29
+ end
@@ -0,0 +1,38 @@
1
+ shared_examples "provider/synced_folder/rsync" do |provider, options|
2
+ if !options[:box]
3
+ raise ArgumentError,
4
+ "box option must be specified for provider: #{provider}"
5
+ end
6
+
7
+ include_context "acceptance"
8
+
9
+ before do
10
+ environment.skeleton("synced_folder_rsync")
11
+ assert_execute("vagrant", "box", "add", "box", options[:box])
12
+ assert_execute("vagrant", "up", "--provider=#{provider}")
13
+ end
14
+
15
+ after do
16
+ assert_execute("vagrant", "destroy", "--force")
17
+ end
18
+
19
+ it "properly syncs using rsync" do
20
+ status("Test: does initial rsync sync")
21
+ result = execute("vagrant", "ssh", "-c", "cat /vagrant-rsync/foo")
22
+ expect(result).to exit_with(0)
23
+ expect(result.stdout).to match(/hello$/)
24
+
25
+ status("Test: doesn't mount a disabled folder")
26
+ result = execute("vagrant", "ssh", "-c", "test -d /foo")
27
+ expect(result.exit_code).to eql(1)
28
+
29
+ status("Test: syncs changes when requested")
30
+ environment.workdir.join("bar").open("w+") do |f|
31
+ f.write("goodbye")
32
+ end
33
+ assert_execute("vagrant", "rsync")
34
+ result = execute("vagrant", "ssh", "-c", "cat /vagrant-rsync/bar")
35
+ expect(result).to exit_with(0)
36
+ expect(result.stdout).to match(/goodbye$/)
37
+ end
38
+ end