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,204 @@
1
+ /*
2
+ * Written by Doug Lea with assistance from members of JCP JSR-166
3
+ * Expert Group and released to the public domain, as explained at
4
+ * http://creativecommons.org/publicdomain/zero/1.0/
5
+ */
6
+
7
+ // This is based on 1.9 version.
8
+
9
+ package com.concurrent_ruby.ext.jsr166e.nounsafe;
10
+
11
+ import java.util.concurrent.atomic.AtomicLong;
12
+ import java.io.IOException;
13
+ import java.io.Serializable;
14
+ import java.io.ObjectInputStream;
15
+
16
+ /**
17
+ * One or more variables that together maintain an initially zero
18
+ * {@code long} sum. When updates (method {@link #add}) are contended
19
+ * across threads, the set of variables may grow dynamically to reduce
20
+ * contention. Method {@link #sum} (or, equivalently, {@link
21
+ * #longValue}) returns the current total combined across the
22
+ * variables maintaining the sum.
23
+ *
24
+ * <p>This class is usually preferable to {@link AtomicLong} when
25
+ * multiple threads update a common sum that is used for purposes such
26
+ * as collecting statistics, not for fine-grained synchronization
27
+ * control. Under low update contention, the two classes have similar
28
+ * characteristics. But under high contention, expected throughput of
29
+ * this class is significantly higher, at the expense of higher space
30
+ * consumption.
31
+ *
32
+ * <p>This class extends {@link Number}, but does <em>not</em> define
33
+ * methods such as {@code hashCode} and {@code compareTo} because
34
+ * instances are expected to be mutated, and so are not useful as
35
+ * collection keys.
36
+ *
37
+ * <p><em>jsr166e note: This class is targeted to be placed in
38
+ * java.util.concurrent.atomic.</em>
39
+ *
40
+ * @since 1.8
41
+ * @author Doug Lea
42
+ */
43
+ public class LongAdder extends Striped64 implements Serializable {
44
+ private static final long serialVersionUID = 7249069246863182397L;
45
+
46
+ /**
47
+ * Version of plus for use in retryUpdate
48
+ */
49
+ final long fn(long v, long x) { return v + x; }
50
+
51
+ /**
52
+ * Creates a new adder with initial sum of zero.
53
+ */
54
+ public LongAdder() {
55
+ }
56
+
57
+ /**
58
+ * Adds the given value.
59
+ *
60
+ * @param x the value to add
61
+ */
62
+ public void add(long x) {
63
+ Cell[] as; long b, v; HashCode hc; Cell a; int n;
64
+ if ((as = cells) != null || !casBase(b = base, b + x)) {
65
+ boolean uncontended = true;
66
+ int h = (hc = threadHashCode.get()).code;
67
+ if (as == null || (n = as.length) < 1 ||
68
+ (a = as[(n - 1) & h]) == null ||
69
+ !(uncontended = a.cas(v = a.value, v + x)))
70
+ retryUpdate(x, hc, uncontended);
71
+ }
72
+ }
73
+
74
+ /**
75
+ * Equivalent to {@code add(1)}.
76
+ */
77
+ public void increment() {
78
+ add(1L);
79
+ }
80
+
81
+ /**
82
+ * Equivalent to {@code add(-1)}.
83
+ */
84
+ public void decrement() {
85
+ add(-1L);
86
+ }
87
+
88
+ /**
89
+ * Returns the current sum. The returned value is <em>NOT</em> an
90
+ * atomic snapshot: Invocation in the absence of concurrent
91
+ * updates returns an accurate result, but concurrent updates that
92
+ * occur while the sum is being calculated might not be
93
+ * incorporated.
94
+ *
95
+ * @return the sum
96
+ */
97
+ public long sum() {
98
+ long sum = base;
99
+ Cell[] as = cells;
100
+ if (as != null) {
101
+ int n = as.length;
102
+ for (int i = 0; i < n; ++i) {
103
+ Cell a = as[i];
104
+ if (a != null)
105
+ sum += a.value;
106
+ }
107
+ }
108
+ return sum;
109
+ }
110
+
111
+ /**
112
+ * Resets variables maintaining the sum to zero. This method may
113
+ * be a useful alternative to creating a new adder, but is only
114
+ * effective if there are no concurrent updates. Because this
115
+ * method is intrinsically racy, it should only be used when it is
116
+ * known that no threads are concurrently updating.
117
+ */
118
+ public void reset() {
119
+ internalReset(0L);
120
+ }
121
+
122
+ /**
123
+ * Equivalent in effect to {@link #sum} followed by {@link
124
+ * #reset}. This method may apply for example during quiescent
125
+ * points between multithreaded computations. If there are
126
+ * updates concurrent with this method, the returned value is
127
+ * <em>not</em> guaranteed to be the final value occurring before
128
+ * the reset.
129
+ *
130
+ * @return the sum
131
+ */
132
+ public long sumThenReset() {
133
+ long sum = base;
134
+ Cell[] as = cells;
135
+ base = 0L;
136
+ if (as != null) {
137
+ int n = as.length;
138
+ for (int i = 0; i < n; ++i) {
139
+ Cell a = as[i];
140
+ if (a != null) {
141
+ sum += a.value;
142
+ a.value = 0L;
143
+ }
144
+ }
145
+ }
146
+ return sum;
147
+ }
148
+
149
+ /**
150
+ * Returns the String representation of the {@link #sum}.
151
+ * @return the String representation of the {@link #sum}
152
+ */
153
+ public String toString() {
154
+ return Long.toString(sum());
155
+ }
156
+
157
+ /**
158
+ * Equivalent to {@link #sum}.
159
+ *
160
+ * @return the sum
161
+ */
162
+ public long longValue() {
163
+ return sum();
164
+ }
165
+
166
+ /**
167
+ * Returns the {@link #sum} as an {@code int} after a narrowing
168
+ * primitive conversion.
169
+ */
170
+ public int intValue() {
171
+ return (int)sum();
172
+ }
173
+
174
+ /**
175
+ * Returns the {@link #sum} as a {@code float}
176
+ * after a widening primitive conversion.
177
+ */
178
+ public float floatValue() {
179
+ return (float)sum();
180
+ }
181
+
182
+ /**
183
+ * Returns the {@link #sum} as a {@code double} after a widening
184
+ * primitive conversion.
185
+ */
186
+ public double doubleValue() {
187
+ return (double)sum();
188
+ }
189
+
190
+ private void writeObject(java.io.ObjectOutputStream s)
191
+ throws java.io.IOException {
192
+ s.defaultWriteObject();
193
+ s.writeLong(sum());
194
+ }
195
+
196
+ private void readObject(ObjectInputStream s)
197
+ throws IOException, ClassNotFoundException {
198
+ s.defaultReadObject();
199
+ busy = 0;
200
+ cells = null;
201
+ base = s.readLong();
202
+ }
203
+
204
+ }
@@ -0,0 +1,291 @@
1
+ /*
2
+ * Written by Doug Lea with assistance from members of JCP JSR-166
3
+ * Expert Group and released to the public domain, as explained at
4
+ * http://creativecommons.org/publicdomain/zero/1.0/
5
+ */
6
+
7
+ // This is based on 1.5 version.
8
+
9
+ package com.concurrent_ruby.ext.jsr166e.nounsafe;
10
+
11
+ import java.util.Random;
12
+ import java.util.concurrent.atomic.AtomicIntegerFieldUpdater;
13
+ import java.util.concurrent.atomic.AtomicLongFieldUpdater;
14
+
15
+ /**
16
+ * A package-local class holding common representation and mechanics
17
+ * for classes supporting dynamic striping on 64bit values. The class
18
+ * extends Number so that concrete subclasses must publicly do so.
19
+ */
20
+ abstract class Striped64 extends Number {
21
+ /*
22
+ * This class maintains a lazily-initialized table of atomically
23
+ * updated variables, plus an extra "base" field. The table size
24
+ * is a power of two. Indexing uses masked per-thread hash codes.
25
+ * Nearly all declarations in this class are package-private,
26
+ * accessed directly by subclasses.
27
+ *
28
+ * Table entries are of class Cell; a variant of AtomicLong padded
29
+ * to reduce cache contention on most processors. Padding is
30
+ * overkill for most Atomics because they are usually irregularly
31
+ * scattered in memory and thus don't interfere much with each
32
+ * other. But Atomic objects residing in arrays will tend to be
33
+ * placed adjacent to each other, and so will most often share
34
+ * cache lines (with a huge negative performance impact) without
35
+ * this precaution.
36
+ *
37
+ * In part because Cells are relatively large, we avoid creating
38
+ * them until they are needed. When there is no contention, all
39
+ * updates are made to the base field. Upon first contention (a
40
+ * failed CAS on base update), the table is initialized to size 2.
41
+ * The table size is doubled upon further contention until
42
+ * reaching the nearest power of two greater than or equal to the
43
+ * number of CPUS. Table slots remain empty (null) until they are
44
+ * needed.
45
+ *
46
+ * A single spinlock ("busy") is used for initializing and
47
+ * resizing the table, as well as populating slots with new Cells.
48
+ * There is no need for a blocking lock: When the lock is not
49
+ * available, threads try other slots (or the base). During these
50
+ * retries, there is increased contention and reduced locality,
51
+ * which is still better than alternatives.
52
+ *
53
+ * Per-thread hash codes are initialized to random values.
54
+ * Contention and/or table collisions are indicated by failed
55
+ * CASes when performing an update operation (see method
56
+ * retryUpdate). Upon a collision, if the table size is less than
57
+ * the capacity, it is doubled in size unless some other thread
58
+ * holds the lock. If a hashed slot is empty, and lock is
59
+ * available, a new Cell is created. Otherwise, if the slot
60
+ * exists, a CAS is tried. Retries proceed by "double hashing",
61
+ * using a secondary hash (Marsaglia XorShift) to try to find a
62
+ * free slot.
63
+ *
64
+ * The table size is capped because, when there are more threads
65
+ * than CPUs, supposing that each thread were bound to a CPU,
66
+ * there would exist a perfect hash function mapping threads to
67
+ * slots that eliminates collisions. When we reach capacity, we
68
+ * search for this mapping by randomly varying the hash codes of
69
+ * colliding threads. Because search is random, and collisions
70
+ * only become known via CAS failures, convergence can be slow,
71
+ * and because threads are typically not bound to CPUS forever,
72
+ * may not occur at all. However, despite these limitations,
73
+ * observed contention rates are typically low in these cases.
74
+ *
75
+ * It is possible for a Cell to become unused when threads that
76
+ * once hashed to it terminate, as well as in the case where
77
+ * doubling the table causes no thread to hash to it under
78
+ * expanded mask. We do not try to detect or remove such cells,
79
+ * under the assumption that for long-running instances, observed
80
+ * contention levels will recur, so the cells will eventually be
81
+ * needed again; and for short-lived ones, it does not matter.
82
+ */
83
+
84
+ /**
85
+ * Padded variant of AtomicLong supporting only raw accesses plus CAS.
86
+ * The value field is placed between pads, hoping that the JVM doesn't
87
+ * reorder them.
88
+ *
89
+ * JVM intrinsics note: It would be possible to use a release-only
90
+ * form of CAS here, if it were provided.
91
+ */
92
+ static final class Cell {
93
+ volatile long p0, p1, p2, p3, p4, p5, p6;
94
+ volatile long value;
95
+ volatile long q0, q1, q2, q3, q4, q5, q6;
96
+
97
+ static AtomicLongFieldUpdater<Cell> VALUE_UPDATER = AtomicLongFieldUpdater.newUpdater(Cell.class, "value");
98
+
99
+ Cell(long x) { value = x; }
100
+
101
+ final boolean cas(long cmp, long val) {
102
+ return VALUE_UPDATER.compareAndSet(this, cmp, val);
103
+ }
104
+
105
+ }
106
+
107
+ /**
108
+ * Holder for the thread-local hash code. The code is initially
109
+ * random, but may be set to a different value upon collisions.
110
+ */
111
+ static final class HashCode {
112
+ static final Random rng = new Random();
113
+ int code;
114
+ HashCode() {
115
+ int h = rng.nextInt(); // Avoid zero to allow xorShift rehash
116
+ code = (h == 0) ? 1 : h;
117
+ }
118
+ }
119
+
120
+ /**
121
+ * The corresponding ThreadLocal class
122
+ */
123
+ static final class ThreadHashCode extends ThreadLocal<HashCode> {
124
+ public HashCode initialValue() { return new HashCode(); }
125
+ }
126
+
127
+ /**
128
+ * Static per-thread hash codes. Shared across all instances to
129
+ * reduce ThreadLocal pollution and because adjustments due to
130
+ * collisions in one table are likely to be appropriate for
131
+ * others.
132
+ */
133
+ static final ThreadHashCode threadHashCode = new ThreadHashCode();
134
+
135
+ /** Number of CPUS, to place bound on table size */
136
+ static final int NCPU = Runtime.getRuntime().availableProcessors();
137
+
138
+ /**
139
+ * Table of cells. When non-null, size is a power of 2.
140
+ */
141
+ transient volatile Cell[] cells;
142
+
143
+ /**
144
+ * Base value, used mainly when there is no contention, but also as
145
+ * a fallback during table initialization races. Updated via CAS.
146
+ */
147
+ transient volatile long base;
148
+
149
+ /**
150
+ * Spinlock (locked via CAS) used when resizing and/or creating Cells.
151
+ */
152
+ transient volatile int busy;
153
+
154
+ AtomicLongFieldUpdater<Striped64> BASE_UPDATER = AtomicLongFieldUpdater.newUpdater(Striped64.class, "base");
155
+ AtomicIntegerFieldUpdater<Striped64> BUSY_UPDATER = AtomicIntegerFieldUpdater.newUpdater(Striped64.class, "busy");
156
+
157
+ /**
158
+ * Package-private default constructor
159
+ */
160
+ Striped64() {
161
+ }
162
+
163
+ /**
164
+ * CASes the base field.
165
+ */
166
+ final boolean casBase(long cmp, long val) {
167
+ return BASE_UPDATER.compareAndSet(this, cmp, val);
168
+ }
169
+
170
+ /**
171
+ * CASes the busy field from 0 to 1 to acquire lock.
172
+ */
173
+ final boolean casBusy() {
174
+ return BUSY_UPDATER.compareAndSet(this, 0, 1);
175
+ }
176
+
177
+ /**
178
+ * Computes the function of current and new value. Subclasses
179
+ * should open-code this update function for most uses, but the
180
+ * virtualized form is needed within retryUpdate.
181
+ *
182
+ * @param currentValue the current value (of either base or a cell)
183
+ * @param newValue the argument from a user update call
184
+ * @return result of the update function
185
+ */
186
+ abstract long fn(long currentValue, long newValue);
187
+
188
+ /**
189
+ * Handles cases of updates involving initialization, resizing,
190
+ * creating new Cells, and/or contention. See above for
191
+ * explanation. This method suffers the usual non-modularity
192
+ * problems of optimistic retry code, relying on rechecked sets of
193
+ * reads.
194
+ *
195
+ * @param x the value
196
+ * @param hc the hash code holder
197
+ * @param wasUncontended false if CAS failed before call
198
+ */
199
+ final void retryUpdate(long x, HashCode hc, boolean wasUncontended) {
200
+ int h = hc.code;
201
+ boolean collide = false; // True if last slot nonempty
202
+ for (;;) {
203
+ Cell[] as; Cell a; int n; long v;
204
+ if ((as = cells) != null && (n = as.length) > 0) {
205
+ if ((a = as[(n - 1) & h]) == null) {
206
+ if (busy == 0) { // Try to attach new Cell
207
+ Cell r = new Cell(x); // Optimistically create
208
+ if (busy == 0 && casBusy()) {
209
+ boolean created = false;
210
+ try { // Recheck under lock
211
+ Cell[] rs; int m, j;
212
+ if ((rs = cells) != null &&
213
+ (m = rs.length) > 0 &&
214
+ rs[j = (m - 1) & h] == null) {
215
+ rs[j] = r;
216
+ created = true;
217
+ }
218
+ } finally {
219
+ busy = 0;
220
+ }
221
+ if (created)
222
+ break;
223
+ continue; // Slot is now non-empty
224
+ }
225
+ }
226
+ collide = false;
227
+ }
228
+ else if (!wasUncontended) // CAS already known to fail
229
+ wasUncontended = true; // Continue after rehash
230
+ else if (a.cas(v = a.value, fn(v, x)))
231
+ break;
232
+ else if (n >= NCPU || cells != as)
233
+ collide = false; // At max size or stale
234
+ else if (!collide)
235
+ collide = true;
236
+ else if (busy == 0 && casBusy()) {
237
+ try {
238
+ if (cells == as) { // Expand table unless stale
239
+ Cell[] rs = new Cell[n << 1];
240
+ for (int i = 0; i < n; ++i)
241
+ rs[i] = as[i];
242
+ cells = rs;
243
+ }
244
+ } finally {
245
+ busy = 0;
246
+ }
247
+ collide = false;
248
+ continue; // Retry with expanded table
249
+ }
250
+ h ^= h << 13; // Rehash
251
+ h ^= h >>> 17;
252
+ h ^= h << 5;
253
+ }
254
+ else if (busy == 0 && cells == as && casBusy()) {
255
+ boolean init = false;
256
+ try { // Initialize table
257
+ if (cells == as) {
258
+ Cell[] rs = new Cell[2];
259
+ rs[h & 1] = new Cell(x);
260
+ cells = rs;
261
+ init = true;
262
+ }
263
+ } finally {
264
+ busy = 0;
265
+ }
266
+ if (init)
267
+ break;
268
+ }
269
+ else if (casBase(v = base, fn(v, x)))
270
+ break; // Fall back on using base
271
+ }
272
+ hc.code = h; // Record index for next time
273
+ }
274
+
275
+
276
+ /**
277
+ * Sets base and all cells to the given value.
278
+ */
279
+ final void internalReset(long initialValue) {
280
+ Cell[] as = cells;
281
+ base = initialValue;
282
+ if (as != null) {
283
+ int n = as.length;
284
+ for (int i = 0; i < n; ++i) {
285
+ Cell a = as[i];
286
+ if (a != null)
287
+ a.value = initialValue;
288
+ }
289
+ }
290
+ }
291
+ }
@@ -0,0 +1,199 @@
1
+ /*
2
+ * Written by Doug Lea with assistance from members of JCP JSR-166
3
+ * Expert Group and released to the public domain, as explained at
4
+ * http://creativecommons.org/publicdomain/zero/1.0/
5
+ */
6
+
7
+ // This is based on 1.16 version
8
+
9
+ package com.concurrent_ruby.ext.jsr166y;
10
+
11
+ import java.util.Random;
12
+
13
+ /**
14
+ * A random number generator isolated to the current thread. Like the
15
+ * global {@link java.util.Random} generator used by the {@link
16
+ * java.lang.Math} class, a {@code ThreadLocalRandom} is initialized
17
+ * with an internally generated seed that may not otherwise be
18
+ * modified. When applicable, use of {@code ThreadLocalRandom} rather
19
+ * than shared {@code Random} objects in concurrent programs will
20
+ * typically encounter much less overhead and contention. Use of
21
+ * {@code ThreadLocalRandom} is particularly appropriate when multiple
22
+ * tasks (for example, each a {@link ForkJoinTask}) use random numbers
23
+ * in parallel in thread pools.
24
+ *
25
+ * <p>Usages of this class should typically be of the form:
26
+ * {@code ThreadLocalRandom.current().nextX(...)} (where
27
+ * {@code X} is {@code Int}, {@code Long}, etc).
28
+ * When all usages are of this form, it is never possible to
29
+ * accidently share a {@code ThreadLocalRandom} across multiple threads.
30
+ *
31
+ * <p>This class also provides additional commonly used bounded random
32
+ * generation methods.
33
+ *
34
+ * @since 1.7
35
+ * @author Doug Lea
36
+ */
37
+ public class ThreadLocalRandom extends Random {
38
+ // same constants as Random, but must be redeclared because private
39
+ private static final long multiplier = 0x5DEECE66DL;
40
+ private static final long addend = 0xBL;
41
+ private static final long mask = (1L << 48) - 1;
42
+
43
+ /**
44
+ * The random seed. We can't use super.seed.
45
+ */
46
+ private long rnd;
47
+
48
+ /**
49
+ * Initialization flag to permit calls to setSeed to succeed only
50
+ * while executing the Random constructor. We can't allow others
51
+ * since it would cause setting seed in one part of a program to
52
+ * unintentionally impact other usages by the thread.
53
+ */
54
+ boolean initialized;
55
+
56
+ // Padding to help avoid memory contention among seed updates in
57
+ // different TLRs in the common case that they are located near
58
+ // each other.
59
+ private long pad0, pad1, pad2, pad3, pad4, pad5, pad6, pad7;
60
+
61
+ /**
62
+ * The actual ThreadLocal
63
+ */
64
+ private static final ThreadLocal<ThreadLocalRandom> localRandom =
65
+ new ThreadLocal<ThreadLocalRandom>() {
66
+ protected ThreadLocalRandom initialValue() {
67
+ return new ThreadLocalRandom();
68
+ }
69
+ };
70
+
71
+
72
+ /**
73
+ * Constructor called only by localRandom.initialValue.
74
+ */
75
+ ThreadLocalRandom() {
76
+ super();
77
+ initialized = true;
78
+ }
79
+
80
+ /**
81
+ * Returns the current thread's {@code ThreadLocalRandom}.
82
+ *
83
+ * @return the current thread's {@code ThreadLocalRandom}
84
+ */
85
+ public static ThreadLocalRandom current() {
86
+ return localRandom.get();
87
+ }
88
+
89
+ /**
90
+ * Throws {@code UnsupportedOperationException}. Setting seeds in
91
+ * this generator is not supported.
92
+ *
93
+ * @throws UnsupportedOperationException always
94
+ */
95
+ public void setSeed(long seed) {
96
+ if (initialized)
97
+ throw new UnsupportedOperationException();
98
+ rnd = (seed ^ multiplier) & mask;
99
+ }
100
+
101
+ protected int next(int bits) {
102
+ rnd = (rnd * multiplier + addend) & mask;
103
+ return (int) (rnd >>> (48-bits));
104
+ }
105
+
106
+ /**
107
+ * Returns a pseudorandom, uniformly distributed value between the
108
+ * given least value (inclusive) and bound (exclusive).
109
+ *
110
+ * @param least the least value returned
111
+ * @param bound the upper bound (exclusive)
112
+ * @throws IllegalArgumentException if least greater than or equal
113
+ * to bound
114
+ * @return the next value
115
+ */
116
+ public int nextInt(int least, int bound) {
117
+ if (least >= bound)
118
+ throw new IllegalArgumentException();
119
+ return nextInt(bound - least) + least;
120
+ }
121
+
122
+ /**
123
+ * Returns a pseudorandom, uniformly distributed value
124
+ * between 0 (inclusive) and the specified value (exclusive).
125
+ *
126
+ * @param n the bound on the random number to be returned. Must be
127
+ * positive.
128
+ * @return the next value
129
+ * @throws IllegalArgumentException if n is not positive
130
+ */
131
+ public long nextLong(long n) {
132
+ if (n <= 0)
133
+ throw new IllegalArgumentException("n must be positive");
134
+ // Divide n by two until small enough for nextInt. On each
135
+ // iteration (at most 31 of them but usually much less),
136
+ // randomly choose both whether to include high bit in result
137
+ // (offset) and whether to continue with the lower vs upper
138
+ // half (which makes a difference only if odd).
139
+ long offset = 0;
140
+ while (n >= Integer.MAX_VALUE) {
141
+ int bits = next(2);
142
+ long half = n >>> 1;
143
+ long nextn = ((bits & 2) == 0) ? half : n - half;
144
+ if ((bits & 1) == 0)
145
+ offset += n - nextn;
146
+ n = nextn;
147
+ }
148
+ return offset + nextInt((int) n);
149
+ }
150
+
151
+ /**
152
+ * Returns a pseudorandom, uniformly distributed value between the
153
+ * given least value (inclusive) and bound (exclusive).
154
+ *
155
+ * @param least the least value returned
156
+ * @param bound the upper bound (exclusive)
157
+ * @return the next value
158
+ * @throws IllegalArgumentException if least greater than or equal
159
+ * to bound
160
+ */
161
+ public long nextLong(long least, long bound) {
162
+ if (least >= bound)
163
+ throw new IllegalArgumentException();
164
+ return nextLong(bound - least) + least;
165
+ }
166
+
167
+ /**
168
+ * Returns a pseudorandom, uniformly distributed {@code double} value
169
+ * between 0 (inclusive) and the specified value (exclusive).
170
+ *
171
+ * @param n the bound on the random number to be returned. Must be
172
+ * positive.
173
+ * @return the next value
174
+ * @throws IllegalArgumentException if n is not positive
175
+ */
176
+ public double nextDouble(double n) {
177
+ if (n <= 0)
178
+ throw new IllegalArgumentException("n must be positive");
179
+ return nextDouble() * n;
180
+ }
181
+
182
+ /**
183
+ * Returns a pseudorandom, uniformly distributed value between the
184
+ * given least value (inclusive) and bound (exclusive).
185
+ *
186
+ * @param least the least value returned
187
+ * @param bound the upper bound (exclusive)
188
+ * @return the next value
189
+ * @throws IllegalArgumentException if least greater than or equal
190
+ * to bound
191
+ */
192
+ public double nextDouble(double least, double bound) {
193
+ if (least >= bound)
194
+ throw new IllegalArgumentException();
195
+ return nextDouble() * (bound - least) + least;
196
+ }
197
+
198
+ private static final long serialVersionUID = -5851777807851030925L;
199
+ }