vagrant-unbundled 1.9.5.1 → 1.9.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/2.14.0 +5 -0
- data/CHANGELOG.md +55 -0
- data/Gemfile.lock +23 -18
- data/lib/vagrant/action/builtin/box_add.rb +10 -0
- data/lib/vagrant/action/builtin/ssh_run.rb +3 -1
- data/lib/vagrant/bundler.rb +33 -8
- data/lib/vagrant/config/loader.rb +12 -0
- data/lib/vagrant/environment.rb +100 -36
- data/lib/vagrant/errors.rb +12 -0
- data/lib/vagrant/machine.rb +32 -0
- data/lib/vagrant/plugin/manager.rb +13 -2
- data/lib/vagrant/shared_helpers.rb +15 -2
- data/lib/vagrant/util/platform.rb +6 -15
- data/lib/vagrant/util/safe_exec.rb +6 -6
- data/lib/vagrant/util/ssh.rb +8 -2
- data/plugins/commands/box/command/add.rb +1 -1
- data/plugins/commands/login/client.rb +12 -9
- data/plugins/commands/login/command.rb +4 -4
- data/plugins/commands/login/locales/en.yml +5 -5
- data/plugins/commands/login/middleware/add_authentication.rb +2 -1
- data/plugins/commands/login/plugin.rb +1 -1
- data/plugins/commands/snapshot/command/delete.rb +13 -1
- data/plugins/commands/snapshot/command/list.rb +1 -2
- data/plugins/commands/snapshot/command/restore.rb +13 -1
- data/plugins/commands/snapshot/command/save.rb +20 -1
- data/plugins/commands/ssh/command.rb +7 -1
- data/plugins/communicators/ssh/communicator.rb +9 -0
- data/plugins/communicators/winssh/communicator.rb +1 -1
- data/plugins/communicators/winssh/config.rb +8 -0
- data/plugins/guests/kali/guest.rb +10 -0
- data/plugins/guests/kali/plugin.rb +15 -0
- data/plugins/guests/smartos/cap/change_host_name.rb +14 -5
- data/plugins/guests/smartos/cap/halt.rb +1 -1
- data/plugins/guests/smartos/cap/insert_public_key.rb +28 -0
- data/plugins/guests/smartos/cap/mount_nfs.rb +11 -2
- data/plugins/guests/smartos/cap/remove_public_key.rb +25 -0
- data/plugins/guests/smartos/plugin.rb +11 -0
- data/plugins/guests/windows/cap/public_key.rb +106 -0
- data/plugins/guests/windows/cap/rsync.rb +1 -1
- data/plugins/guests/windows/errors.rb +4 -0
- data/plugins/guests/windows/plugin.rb +10 -0
- data/plugins/hosts/bsd/cap/nfs.rb +1 -1
- data/plugins/kernel_v2/config/ssh_connect.rb +6 -0
- data/plugins/kernel_v2/config/vm.rb +10 -12
- data/plugins/kernel_v2/config/vm_provisioner.rb +10 -0
- data/plugins/providers/docker/driver/compose.rb +1 -1
- data/plugins/providers/docker/provider.rb +1 -1
- data/plugins/providers/hyperv/action/import.rb +1 -1
- data/plugins/providers/virtualbox/action.rb +2 -3
- data/plugins/providers/virtualbox/driver/version_4_3.rb +6 -1
- data/plugins/providers/virtualbox/driver/version_5_0.rb +12 -1
- data/plugins/provisioners/ansible/cap/guest/freebsd/ansible_install.rb +1 -1
- data/plugins/provisioners/ansible/cap/guest/suse/ansible_install.rb +1 -1
- data/plugins/provisioners/ansible/provisioner/host.rb +2 -5
- data/plugins/provisioners/docker/config.rb +11 -0
- data/plugins/provisioners/docker/installer.rb +5 -1
- data/plugins/provisioners/docker/provisioner.rb +18 -1
- data/plugins/provisioners/salt/provisioner.rb +17 -7
- data/plugins/synced_folders/rsync/command/rsync_auto.rb +18 -0
- data/plugins/synced_folders/unix_mount_helpers.rb +1 -1
- data/templates/commands/init/Vagrantfile.erb +1 -8
- data/templates/locales/en.yml +29 -6
- data/templates/locales/guest_windows.yml +4 -0
- data/test/unit/plugins/commands/login/client_test.rb +2 -2
- data/test/unit/plugins/commands/snapshot/command/delete_test.rb +97 -0
- data/test/unit/plugins/commands/snapshot/command/list_test.rb +83 -0
- data/test/unit/plugins/commands/snapshot/command/restore_test.rb +97 -0
- data/test/unit/plugins/commands/snapshot/command/save_test.rb +110 -0
- data/test/unit/plugins/communicators/ssh/communicator_test.rb +14 -0
- data/test/unit/plugins/communicators/winssh/communicator_test.rb +2 -1
- data/test/unit/plugins/guests/smartos/cap/change_host_name_test.rb +22 -16
- data/test/unit/plugins/guests/smartos/cap/halt_test.rb +1 -1
- data/test/unit/plugins/guests/smartos/cap/insert_public_key_test.rb +38 -0
- data/test/unit/plugins/guests/smartos/cap/mount_nfs_test.rb +21 -13
- data/test/unit/plugins/guests/smartos/cap/remove_public_key_test.rb +34 -0
- data/test/unit/plugins/guests/windows/cap/insert_public_key_test.rb +75 -0
- data/test/unit/plugins/guests/windows/cap/remove_public_key_test.rb +66 -0
- data/test/unit/plugins/guests/windows/cap/rsync_test.rb +1 -1
- data/test/unit/plugins/kernel_v2/config/vm_test.rb +28 -0
- data/test/unit/plugins/provisioners/ansible/provisioner_test.rb +16 -0
- data/test/unit/plugins/provisioners/docker/config_test.rb +22 -0
- data/test/unit/plugins/provisioners/docker/provisioner_test.rb +79 -0
- data/test/unit/plugins/synced_folders/rsync/command/rsync_auto_test.rb +61 -15
- data/test/unit/vagrant/action/builtin/box_add_test.rb +47 -0
- data/test/unit/vagrant/action/builtin/ssh_run_test.rb +83 -0
- data/test/unit/vagrant/config/loader_test.rb +20 -1
- data/test/unit/vagrant/environment_test.rb +59 -14
- data/test/unit/vagrant/machine_test.rb +61 -0
- data/test/unit/vagrant/plugin/manager_test.rb +2 -2
- data/test/unit/vagrant/util/platform_test.rb +8 -2
- data/test/unit/vagrant/util/ssh_test.rb +158 -0
- data/test/unit/vagrant/util/subprocess_test.rb +1 -1
- data/vagrant.gemspec +1 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/.gitignore +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/.travis.yml +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/Gemfile +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/LICENSE.txt +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/README.md +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/Rakefile +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/cli/box_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/cli/init_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-af86757912f7/acceptance/cli/plugin_spec.rb +164 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/cli/version_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/output/box_output.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-af86757912f7/acceptance/output/plugin_output.rb +47 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/output/version_output.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/provider/basic_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-af86757912f7/acceptance/provider/network_forwarded_port_spec.rb +25 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-af86757912f7/acceptance/provider/network_private_network_spec.rb +25 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/provider/package_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/provider/synced_folder_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/provisioner/chef_solo_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/provisioner/docker_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/provisioner/puppet_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/provisioner/shell_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-boxes/empty/metadata.json +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-plugins/README.md +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/provisioner_shell/args.sh +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/provisioner_shell/path.sh +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/provisioner_shell/user.sh +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/synced_folder_nfs/foo +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/synced_folder_rsync/foo +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/support-skeletons/synced_folders/foo +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/synced_folder/nfs_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/acceptance/synced_folder/rsync_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/bin/vagrant-spec +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/acceptance.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/acceptance/configuration.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/acceptance/output.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/acceptance/rspec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/acceptance/rspec/context.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/acceptance/runner.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-af86757912f7/lib/vagrant-spec/cli.rb +48 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-af86757912f7/lib/vagrant-spec/components.rb +72 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/isolated_environment.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/server.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/subprocess.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/unit.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/unit/dummy_provider.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/unit/isolated_environment.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/unit/rspec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/unit/rspec/context.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/vagrant-plugin/command.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/vagrant-plugin/plugin.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/version.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/lib/vagrant-spec/which.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/spec/acceptance/configuration_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/spec/acceptance/isolated_environment_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-af86757912f7/spec/acceptance/shared/isolated_environment_spec.rb +43 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/spec/acceptance/shared/output_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/spec/components_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/spec/isolated_environment_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/spec/subprocess_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/{vagrant-spec-1d09951eaef3 → vagrant-spec-af86757912f7}/spec/unit/isolated_environment_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-af86757912f7/vagrant-spec.gemspec +47 -0
- data/vendor/bundle/ruby/2.4.0/cache/bundler/git/vagrant-spec-7f2ea299b3766e9a077e5bd825aa24cac5a3ef16/FETCH_HEAD +1 -1
- data/vendor/bundle/ruby/2.4.0/cache/bundler/git/vagrant-spec-7f2ea299b3766e9a077e5bd825aa24cac5a3ef16/hooks/pre-rebase.sample +3 -3
- data/vendor/bundle/ruby/2.4.0/cache/bundler/git/vagrant-spec-7f2ea299b3766e9a077e5bd825aa24cac5a3ef16/objects/pack/pack-f979460dc5541c1808629bdb43fe5492f9589bee.idx +0 -0
- data/vendor/bundle/ruby/2.4.0/cache/bundler/git/vagrant-spec-7f2ea299b3766e9a077e5bd825aa24cac5a3ef16/objects/pack/pack-f979460dc5541c1808629bdb43fe5492f9589bee.pack +0 -0
- data/vendor/bundle/ruby/2.4.0/cache/bundler/git/vagrant-spec-7f2ea299b3766e9a077e5bd825aa24cac5a3ef16/packed-refs +1 -1
- data/vendor/bundle/ruby/2.4.0/extensions/x86_64-linux/2.4.0/ffi-1.9.18/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.4.0/extensions/x86_64-linux/2.4.0/ffi-1.9.18/gem_make.out +6 -6
- data/vendor/bundle/ruby/2.4.0/extensions/x86_64-linux/2.4.0/ffi-1.9.18/mkmf.log +2 -2
- data/vendor/bundle/ruby/2.4.0/extensions/x86_64-linux/2.4.0/unf_ext-0.0.7.4/gem_make.out +6 -6
- data/vendor/bundle/ruby/2.4.0/extensions/x86_64-linux/2.4.0/unf_ext-0.0.7.4/unf_ext.so +0 -0
- data/vendor/bundle/ruby/2.4.0/extensions/x86_64-linux/2.4.0/wdm-0.1.1/gem_make.out +5 -5
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/.codeclimate.yml +16 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/.gitignore +9 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/.rspec +4 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/.rubocop.yml +27 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/.rubocop_todo.yml +7 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/.simplecov +6 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/.travis.yml +33 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/CHANGELOG.md +136 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/CONTRIBUTORS.md +21 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/Gemfile +14 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/Guardfile +11 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/LICENSE.md +20 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/README.md +101 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/Rakefile +15 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/fake_ftp.gemspec +21 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp.rb +6 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/file.rb +40 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server.rb +240 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands.rb +6 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/acct.rb +11 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/cdup.rb +11 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/cwd.rb +13 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/dele.rb +25 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/list.rb +39 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/mdtm.rb +17 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/mkd.rb +11 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/nlst.rb +32 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/pass.rb +11 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/pasv.rb +15 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/port.rb +23 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/pwd.rb +11 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/quit.rb +13 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/retr.rb +32 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/rnfr.rb +18 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/rnto.rb +22 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/site.rb +11 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/size.rb +11 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/stor.rb +30 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/type.rb +18 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/user.rb +12 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/server_commands/wat.rb +33 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/lib/fake_ftp/version.rb +5 -0
- data/vendor/bundle/ruby/2.4.0/gems/{fake_ftp-0.1.1 → fake_ftp-0.3.0}/spec/fixtures/invisible_bike.jpg +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/{fake_ftp-0.1.1 → fake_ftp-0.3.0}/spec/fixtures/text_file.txt +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/spec/functional/server_spec.rb +585 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/spec/integration/server_spec.rb +91 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/spec/models/fake_ftp/file_spec.rb +103 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/spec/models/fake_ftp/server_spec.rb +77 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.3.0/spec/spec_helper.rb +102 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/AbstractMemory.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/ArrayType.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/Buffer.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/Call.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/ClosurePool.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/DataConverter.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/DynamicLibrary.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/Function.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/FunctionInfo.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/LastError.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/LongDouble.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/Makefile +3 -3
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/MappedType.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/MemoryPointer.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/MethodHandle.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/Platform.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/Pointer.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/Struct.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/StructByReference.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/StructByValue.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/StructLayout.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/Thread.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/Type.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/Types.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/Variadic.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/ffi.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/ext/ffi_c/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/lib/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/{hashdiff-0.3.4 → hashdiff-0.3.5}/.gitignore +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/{hashdiff-0.3.4 → hashdiff-0.3.5}/.rspec +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/{hashdiff-0.3.4 → hashdiff-0.3.5}/.travis.yml +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/{hashdiff-0.3.4 → hashdiff-0.3.5}/.yardopts +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.5/Gemfile +7 -0
- data/vendor/bundle/ruby/2.4.0/gems/{hashdiff-0.3.4 → hashdiff-0.3.5}/LICENSE +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.5/README.md +243 -0
- data/vendor/bundle/ruby/2.4.0/gems/{hashdiff-0.3.4 → hashdiff-0.3.5}/Rakefile +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.5/changelog.md +64 -0
- data/vendor/bundle/ruby/2.4.0/gems/{hashdiff-0.3.4 → hashdiff-0.3.5}/hashdiff.gemspec +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/{hashdiff-0.3.4 → hashdiff-0.3.5}/lib/hashdiff.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.5/lib/hashdiff/diff.rb +227 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.5/lib/hashdiff/lcs.rb +69 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.5/lib/hashdiff/patch.rb +88 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.5/lib/hashdiff/util.rb +146 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.5/lib/hashdiff/version.rb +3 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.5/spec/hashdiff/best_diff_spec.rb +74 -0
- data/vendor/bundle/ruby/2.4.0/gems/{hashdiff-0.3.4 → hashdiff-0.3.5}/spec/hashdiff/diff_array_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.5/spec/hashdiff/diff_spec.rb +313 -0
- data/vendor/bundle/ruby/2.4.0/gems/{hashdiff-0.3.4 → hashdiff-0.3.5}/spec/hashdiff/lcs_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.5/spec/hashdiff/patch_spec.rb +183 -0
- data/vendor/bundle/ruby/2.4.0/gems/{hashdiff-0.3.4 → hashdiff-0.3.5}/spec/hashdiff/util_spec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.5/spec/spec_helper.rb +20 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rb-fsevent-0.9.8 → rb-fsevent-0.10.2}/.gitignore +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.10.2/Gemfile +3 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rb-fsevent-0.9.8 → rb-fsevent-0.10.2}/Guardfile +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rb-fsevent-0.9.8 → rb-fsevent-0.10.2}/LICENSE.txt +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.10.2/README.md +259 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.10.2/Rakefile +33 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.10.2/bin/fsevent_watch +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rb-fsevent-0.9.8 → rb-fsevent-0.10.2}/ext/LICENSE +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rb-fsevent-0.9.8 → rb-fsevent-0.10.2}/ext/fsevent_watch/FSEventsFix.c +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rb-fsevent-0.9.8 → rb-fsevent-0.10.2}/ext/fsevent_watch/FSEventsFix.h +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rb-fsevent-0.9.8 → rb-fsevent-0.10.2}/ext/fsevent_watch/TSICTString.c +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rb-fsevent-0.9.8 → rb-fsevent-0.10.2}/ext/fsevent_watch/TSICTString.h +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.10.2/ext/fsevent_watch/cli.c +201 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rb-fsevent-0.9.8 → rb-fsevent-0.10.2}/ext/fsevent_watch/cli.h +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rb-fsevent-0.9.8 → rb-fsevent-0.10.2}/ext/fsevent_watch/common.h +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.10.2/ext/fsevent_watch/compat.c +41 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.10.2/ext/fsevent_watch/compat.h +100 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rb-fsevent-0.9.8 → rb-fsevent-0.10.2}/ext/fsevent_watch/defines.h +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.10.2/ext/fsevent_watch/main.c +548 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rb-fsevent-0.9.8 → rb-fsevent-0.10.2}/ext/fsevent_watch/signal_handlers.c +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rb-fsevent-0.9.8 → rb-fsevent-0.10.2}/ext/fsevent_watch/signal_handlers.h +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.10.2/ext/rakefile.rb +226 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.10.2/lib/otnetstring.rb +85 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rb-fsevent-0.9.8 → rb-fsevent-0.10.2}/lib/rb-fsevent.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.10.2/lib/rb-fsevent/fsevent.rb +157 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.10.2/lib/rb-fsevent/version.rb +5 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.10.2/rb-fsevent.gemspec +27 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.10/.gitignore +19 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.10/.travis.yml +30 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rb-inotify-0.9.8 → rb-inotify-0.9.10}/.yardopts +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.10/Gemfile +3 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.10/README.md +103 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.10/Rakefile +14 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.10/lib/rb-inotify.rb +15 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rb-inotify-0.9.8 → rb-inotify-0.9.10}/lib/rb-inotify/errors.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rb-inotify-0.9.8 → rb-inotify-0.9.10}/lib/rb-inotify/event.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.10/lib/rb-inotify/native.rb +36 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.10/lib/rb-inotify/native/flags.rb +94 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.10/lib/rb-inotify/notifier.rb +339 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.10/lib/rb-inotify/version.rb +24 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rb-inotify-0.9.8 → rb-inotify-0.9.10}/lib/rb-inotify/watcher.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.10/rb-inotify.gemspec +30 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.10/spec/rb-inotify/errors_spec.rb +9 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.10/spec/rb-inotify_spec.rb +9 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.10/spec/spec_helper.rb +12 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-3.5.0/LICENSE.md +27 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-3.5.0/README.md +39 -0
- data/vendor/bundle/ruby/2.4.0/gems/{rspec-2.14.1 → rspec-3.5.0}/lib/rspec.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-3.5.0/lib/rspec/version.rb +5 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/.document +5 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/.yardopts +8 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/Changelog.md +2102 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/LICENSE.md +26 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/README.md +384 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/exe/rspec +4 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/autorun.rb +3 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core.rb +185 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/backtrace_formatter.rb +65 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/bisect/coordinator.rb +66 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/bisect/example_minimizer.rb +169 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/bisect/runner.rb +169 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/bisect/server.rb +65 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/configuration.rb +2100 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/configuration_options.rb +194 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/drb.rb +111 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/dsl.rb +98 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/example.rb +649 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/example_group.rb +879 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/example_status_persister.rb +235 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/filter_manager.rb +231 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/flat_map.rb +20 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters.rb +255 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters/base_formatter.rb +70 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters/base_text_formatter.rb +77 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters/bisect_formatter.rb +69 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters/bisect_progress_formatter.rb +144 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters/console_codes.rb +65 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters/documentation_formatter.rb +69 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters/exception_presenter.rb +491 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters/helpers.rb +110 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters/html_formatter.rb +151 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters/html_printer.rb +414 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters/html_snippet_extractor.rb +116 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters/json_formatter.rb +96 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters/profile_formatter.rb +68 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters/progress_formatter.rb +28 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters/protocol.rb +181 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/formatters/snippet_extractor.rb +136 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/hooks.rb +624 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/invocations.rb +67 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/memoized_helpers.rb +532 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/metadata.rb +499 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/metadata_filter.rb +243 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/mocking_adapters/null.rb +14 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/mocking_adapters/rr.rb +31 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/notifications.rb +498 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/option_parser.rb +289 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/ordering.rb +158 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/pending.rb +165 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/profiler.rb +32 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/project_initializer.rb +48 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/project_initializer/.rspec +2 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/project_initializer/spec/spec_helper.rb +103 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/rake_task.rb +168 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/reporter.rb +248 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/ruby_project.rb +53 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/runner.rb +188 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/sandbox.rb +37 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/set.rb +49 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/shared_context.rb +55 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/shared_example_group.rb +247 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/shell_escape.rb +49 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/source.rb +86 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/source/location.rb +13 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/source/node.rb +93 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/source/syntax_highlighter.rb +71 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/source/token.rb +87 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/version.rb +9 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/warnings.rb +40 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-3.5.4/lib/rspec/core/world.rb +256 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/.document +5 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/.yardopts +6 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/Changelog.md +1034 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/LICENSE.md +25 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/README.md +303 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/expectations.rb +81 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/expectations/configuration.rb +201 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/expectations/expectation_target.rb +127 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/expectations/fail_with.rb +31 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/expectations/failure_aggregator.rb +194 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/expectations/handler.rb +170 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/expectations/minitest_integration.rb +58 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/expectations/syntax.rb +132 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/expectations/version.rb +8 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers.rb +1038 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/aliased_matcher.rb +116 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in.rb +52 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/all.rb +85 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/base_matcher.rb +181 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/be.rb +288 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/be_between.rb +77 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/be_instance_of.rb +22 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/be_kind_of.rb +16 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/be_within.rb +72 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/change.rb +354 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/compound.rb +272 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/contain_exactly.rb +286 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/cover.rb +24 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/eq.rb +40 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/eql.rb +34 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/equal.rb +81 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/exist.rb +86 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/has.rb +103 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/include.rb +143 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/match.rb +106 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/operators.rb +128 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/output.rb +200 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/raise_error.rb +230 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/respond_to.rb +165 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/satisfy.rb +37 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/yield.rb +419 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/composable.rb +185 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/dsl.rb +466 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/english_phrasing.rb +58 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +73 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/fail_matchers.rb +42 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/generated_descriptions.rb +42 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/matcher_delegator.rb +35 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/matcher_protocol.rb +99 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/.document +5 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/.yardopts +6 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/Changelog.md +1043 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/LICENSE.md +25 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/README.md +445 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks.rb +130 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance.rb +11 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance/chain.rb +110 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance/expect_chain_chain.rb +35 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance/expectation_chain.rb +48 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance/proxy.rb +116 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance/recorder.rb +289 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance/stub_chain.rb +47 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance/stub_chain_chain.rb +28 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/argument_list_matcher.rb +100 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/argument_matchers.rb +320 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/configuration.rb +205 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/error_generator.rb +369 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/example_methods.rb +422 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/instance_method_stasher.rb +135 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/marshal_extension.rb +41 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/matchers/have_received.rb +130 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/matchers/receive.rb +132 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/matchers/receive_message_chain.rb +82 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/matchers/receive_messages.rb +77 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/message_chain.rb +87 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/message_expectation.rb +740 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/method_double.rb +287 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/method_reference.rb +202 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/minitest_integration.rb +68 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/mutate_const.rb +335 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/object_reference.rb +149 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/order_group.rb +81 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/proxy.rb +489 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/space.rb +238 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/standalone.rb +3 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/syntax.rb +325 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/targets.rb +124 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/test_double.rb +170 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/verifying_double.rb +129 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/verifying_message_expectation.rb +54 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/verifying_proxy.rb +213 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-3.5.0/lib/rspec/mocks/version.rb +9 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/Changelog.md +192 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/LICENSE.md +23 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/README.md +40 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support.rb +139 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/caller_filter.rb +83 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/comparable_version.rb +46 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/differ.rb +215 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/directory_maker.rb +63 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/encoded_string.rb +165 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/fuzzy_matcher.rb +48 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/hunk_generator.rb +47 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/matcher_definition.rb +42 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/method_signature_verifier.rb +392 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/mutex.rb +73 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/object_formatter.rb +249 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/recursive_const_methods.rb +76 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/reentrant_mutex.rb +53 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/ruby_features.rb +149 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/spec.rb +81 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/spec/deprecation_helpers.rb +64 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/spec/formatting_support.rb +9 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/spec/in_sub_process.rb +52 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/spec/library_wide_checks.rb +150 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/spec/shell_out.rb +82 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/spec/stderr_splitter.rb +63 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/spec/string_matcher.rb +46 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/spec/with_isolated_directory.rb +13 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/version.rb +7 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-support-3.5.0/lib/rspec/support/warnings.rb +39 -0
- data/vendor/bundle/ruby/2.4.0/gems/unf_ext-0.0.7.4/ext/unf_ext/Makefile +2 -2
- data/vendor/bundle/ruby/2.4.0/gems/unf_ext-0.0.7.4/ext/unf_ext/unf.o +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/unf_ext-0.0.7.4/ext/unf_ext/unf_ext.so +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/unf_ext-0.0.7.4/lib/unf_ext.so +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/wdm-0.1.1/ext/wdm/Makefile +2 -2
- data/vendor/bundle/ruby/2.4.0/specifications/fake_ftp-0.3.0.gemspec +20 -0
- data/vendor/bundle/ruby/2.4.0/specifications/hashdiff-0.3.5.gemspec +39 -0
- data/vendor/bundle/ruby/2.4.0/specifications/rb-fsevent-0.10.2.gemspec +42 -0
- data/vendor/bundle/ruby/2.4.0/specifications/rb-inotify-0.9.10.gemspec +40 -0
- data/vendor/bundle/ruby/2.4.0/specifications/rspec-3.5.0.gemspec +42 -0
- data/vendor/bundle/ruby/2.4.0/specifications/rspec-core-3.5.4.gemspec +62 -0
- data/vendor/bundle/ruby/2.4.0/specifications/rspec-expectations-3.5.0.gemspec +50 -0
- data/vendor/bundle/ruby/2.4.0/specifications/rspec-mocks-3.5.0.gemspec +50 -0
- data/vendor/bundle/ruby/2.4.0/specifications/rspec-support-3.5.0.gemspec +41 -0
- data/version.txt +1 -1
- metadata +448 -752
- data/vendor/bundle/ruby/2.4.0/bin/autospec +0 -22
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/cli/plugin_spec.rb +0 -156
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/output/plugin_output.rb +0 -42
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provider/network_forwarded_port_spec.rb +0 -23
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/acceptance/provider/network_private_network_spec.rb +0 -23
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/cli.rb +0 -45
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/lib/vagrant-spec/components.rb +0 -70
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-1d09951eaef3/vagrant-spec.gemspec +0 -50
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/.gitignore +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/.travis.yml +0 -8
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/Gemfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/LICENSE.txt +0 -373
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/README.md +0 -319
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/Rakefile +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/cli/box_spec.rb +0 -198
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/cli/init_spec.rb +0 -42
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/cli/plugin_spec.rb +0 -156
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/cli/version_spec.rb +0 -15
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/output/box_output.rb +0 -41
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/output/plugin_output.rb +0 -25
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/output/version_output.rb +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provider/basic_spec.rb +0 -90
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provider/network_forwarded_port_spec.rb +0 -23
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provider/network_private_network_spec.rb +0 -23
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provider/package_spec.rb +0 -65
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provider/synced_folder_spec.rb +0 -33
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provisioner/chef_solo_spec.rb +0 -31
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provisioner/docker_spec.rb +0 -26
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provisioner/puppet_spec.rb +0 -31
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/provisioner/shell_spec.rb +0 -45
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-boxes/empty.box +0 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-boxes/empty/metadata.json +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-plugins/README.md +0 -4
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-plugins/vagrant-spec-helper-basic/gem-0.2.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-plugins/vagrant-spec-helper-basic/gem-renamed-0.1.0.gemspec +0 -18
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vagrant-spec-helper-basic.rb +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-plugins/vagrant-spec-helper-basic/lib/vshb/command.rb +0 -7
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/network_forwarded_port/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/network_private_network/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_chef_solo/Vagrantfile +0 -14
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/cookbooks/bar/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_chef_solo/basic-roles/roles/foo.rb +0 -2
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_chef_solo/basic/cookbooks/foo/recipes/default.rb +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_docker/Vagrantfile +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_puppet/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_puppet/basic-modules/manifests/default.pp +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_puppet/basic-modules/modules/foo/manifests/init.pp +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_puppet/manifests/default.pp +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_shell/Vagrantfile +0 -10
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_shell/args.sh +0 -4
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_shell/path.sh +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_shell/user.sh +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/provisioner_shell/user_root.sh +0 -3
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/synced_folder_nfs/Vagrantfile +0 -7
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/synced_folder_nfs/foo +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/synced_folder_rsync/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/synced_folder_rsync/foo +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/synced_folders/Vagrantfile +0 -6
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/support-skeletons/synced_folders/foo +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/synced_folder/nfs_spec.rb +0 -29
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/acceptance/synced_folder/rsync_spec.rb +0 -38
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/bin/vagrant-spec +0 -7
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec.rb +0 -20
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance.rb +0 -29
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/configuration.rb +0 -74
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/isolated_environment.rb +0 -90
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/output.rb +0 -38
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/rspec.rb +0 -9
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/rspec/context.rb +0 -96
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/rspec/formatter.rb +0 -33
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/rspec/matcher_exit_with.rb +0 -12
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/rspec/matcher_match_output.rb +0 -15
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/rspec/shared_provider_synced_folder.rb +0 -33
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/acceptance/runner.rb +0 -84
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/cli.rb +0 -44
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/components.rb +0 -70
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/isolated_environment.rb +0 -44
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/server.rb +0 -37
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/subprocess.rb +0 -259
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/unit.rb +0 -17
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/unit/dummy_provider.rb +0 -51
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/unit/isolated_environment.rb +0 -230
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/unit/rspec.rb +0 -1
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/unit/rspec/context.rb +0 -104
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/version.rb +0 -5
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/lib/vagrant-spec/which.rb +0 -36
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/acceptance/configuration_spec.rb +0 -25
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/acceptance/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/acceptance/shared/isolated_environment_spec.rb +0 -43
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/acceptance/shared/output_spec.rb +0 -53
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/components_spec.rb +0 -63
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/isolated_environment_spec.rb +0 -31
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/subprocess_spec.rb +0 -9
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/spec/unit/isolated_environment_spec.rb +0 -64
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-9bba7e122837/vagrant-spec.gemspec +0 -50
- data/vendor/bundle/ruby/2.4.0/cache/bundler/git/vagrant-spec-7f2ea299b3766e9a077e5bd825aa24cac5a3ef16/objects/pack/pack-d95cb1f984995f857020b8c7be1573cc02e1be74.idx +0 -0
- data/vendor/bundle/ruby/2.4.0/cache/bundler/git/vagrant-spec-7f2ea299b3766e9a077e5bd825aa24cac5a3ef16/objects/pack/pack-d95cb1f984995f857020b8c7be1573cc02e1be74.pack +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/.gitignore +0 -7
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/.rspec +0 -2
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/.travis.yml +0 -5
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/CONTRIBUTORS.md +0 -19
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/Gemfile +0 -12
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/Gemfile.lock +0 -44
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/Guardfile +0 -10
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/README.md +0 -134
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/Rakefile +0 -10
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/fake_ftp.gemspec +0 -22
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/lib/fake_ftp.rb +0 -5
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/lib/fake_ftp/file.rb +0 -34
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/lib/fake_ftp/server.rb +0 -340
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/lib/fake_ftp/version.rb +0 -3
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/spec/functional/server_spec.rb +0 -468
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/spec/integration/server_spec.rb +0 -81
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/spec/models/fake_ftp/file_spec.rb +0 -102
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/spec/models/fake_ftp/server_spec.rb +0 -76
- data/vendor/bundle/ruby/2.4.0/gems/fake_ftp-0.1.1/spec/spec_helper.rb +0 -18
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.4/Gemfile +0 -6
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.4/README.md +0 -207
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.4/changelog.md +0 -60
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.4/lib/hashdiff/diff.rb +0 -220
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.4/lib/hashdiff/lcs.rb +0 -69
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.4/lib/hashdiff/patch.rb +0 -84
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.4/lib/hashdiff/util.rb +0 -132
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.4/lib/hashdiff/version.rb +0 -3
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.4/spec/hashdiff/best_diff_spec.rb +0 -65
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.4/spec/hashdiff/diff_spec.rb +0 -277
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.4/spec/hashdiff/patch_spec.rb +0 -161
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.4/spec/spec_helper.rb +0 -13
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.9.8/Gemfile +0 -6
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.9.8/README.md +0 -242
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.9.8/Rakefile +0 -32
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.9.8/bin/fsevent_watch +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.9.8/ext/fsevent_watch/cli.c +0 -202
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.9.8/ext/fsevent_watch/compat.c +0 -25
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.9.8/ext/fsevent_watch/compat.h +0 -47
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.9.8/ext/fsevent_watch/main.c +0 -509
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.9.8/ext/rakefile.rb +0 -224
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.9.8/lib/rb-fsevent/fsevent.rb +0 -123
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.9.8/lib/rb-fsevent/version.rb +0 -5
- data/vendor/bundle/ruby/2.4.0/gems/rb-fsevent-0.9.8/rb-fsevent.gemspec +0 -22
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.8/MIT-LICENSE +0 -20
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.8/README.md +0 -66
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.8/Rakefile +0 -54
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.8/VERSION +0 -1
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.8/lib/rb-inotify.rb +0 -18
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.8/lib/rb-inotify/native.rb +0 -35
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.8/lib/rb-inotify/native/flags.rb +0 -89
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.8/lib/rb-inotify/notifier.rb +0 -332
- data/vendor/bundle/ruby/2.4.0/gems/rb-inotify-0.9.8/rb-inotify.gemspec +0 -54
- data/vendor/bundle/ruby/2.4.0/gems/rspec-2.14.1/License.txt +0 -24
- data/vendor/bundle/ruby/2.4.0/gems/rspec-2.14.1/README.md +0 -47
- data/vendor/bundle/ruby/2.4.0/gems/rspec-2.14.1/lib/rspec/version.rb +0 -5
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/.document +0 -5
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/.yardopts +0 -6
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/Changelog.md +0 -912
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/License.txt +0 -24
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/README.md +0 -261
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/exe/autospec +0 -13
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/exe/rspec +0 -25
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/Autotest.md +0 -38
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/README.md +0 -17
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/Upgrade.md +0 -364
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/command_line/README.md +0 -28
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/command_line/example_name_option.feature +0 -97
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/command_line/exit_status.feature +0 -82
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/command_line/format_option.feature +0 -75
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/command_line/init.feature +0 -18
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/command_line/line_number_appended_to_path.feature +0 -140
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/command_line/line_number_option.feature +0 -58
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/command_line/order.feature +0 -29
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/command_line/pattern_option.feature +0 -49
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/command_line/rake_task.feature +0 -122
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/command_line/require_option.feature +0 -43
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/command_line/ruby.feature +0 -22
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/command_line/tag.feature +0 -98
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/command_line/warnings_option.feature +0 -29
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/configuration/alias_example_to.feature +0 -48
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/configuration/backtrace_clean_patterns.feature +0 -102
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/configuration/custom_settings.feature +0 -84
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/configuration/default_path.feature +0 -38
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/configuration/deprecation_stream.feature +0 -58
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/configuration/fail_fast.feature +0 -77
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/configuration/failure_exit_code.feature +0 -36
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/configuration/order_and_seed.feature +0 -3
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/configuration/output_stream.feature +0 -24
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/configuration/pattern.feature +0 -38
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/configuration/profile.feature +0 -220
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/configuration/read_options_from_file.feature +0 -90
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/configuration/run_all_when_everything_filtered.feature +0 -76
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/configuration/show_failures_in_pending_blocks.feature +0 -61
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/configuration/treat_symbols_as_metadata_keys_with_true_values.feature +0 -52
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/example_groups/basic_structure.feature +0 -55
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/example_groups/shared_context.feature +0 -74
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/example_groups/shared_examples.feature +0 -294
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/expectation_framework_integration/configure_expectation_framework.feature +0 -102
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/filtering/exclusion_filters.feature +0 -138
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/filtering/if_and_unless.feature +0 -168
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/filtering/inclusion_filters.feature +0 -105
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/formatters/configurable_colors.feature +0 -31
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/formatters/custom_formatter.feature +0 -36
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/formatters/json_formatter.feature +0 -30
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/formatters/text_formatter.feature +0 -46
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/helper_methods/arbitrary_methods.feature +0 -40
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/helper_methods/let.feature +0 -50
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/helper_methods/modules.feature +0 -149
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/hooks/around_hooks.feature +0 -343
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/hooks/before_and_after_hooks.feature +0 -427
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/hooks/filtering.feature +0 -234
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/metadata/current_example.feature +0 -17
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/metadata/described_class.feature +0 -17
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/metadata/user_defined.feature +0 -113
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/mock_framework_integration/use_any_framework.feature +0 -106
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/mock_framework_integration/use_flexmock.feature +0 -96
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/mock_framework_integration/use_mocha.feature +0 -97
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/mock_framework_integration/use_rr.feature +0 -98
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/mock_framework_integration/use_rspec.feature +0 -97
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/pending/pending_examples.feature +0 -229
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/spec_files/arbitrary_file_suffix.feature +0 -13
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/step_definitions/additional_cli_steps.rb +0 -49
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/subject/attribute_of_subject.feature +0 -124
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/subject/explicit_subject.feature +0 -101
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/subject/implicit_receiver.feature +0 -29
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/subject/implicit_subject.feature +0 -63
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/support/env.rb +0 -14
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/features/support/rubinius.rb +0 -6
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/autotest/discover.rb +0 -1
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/autotest/rspec2.rb +0 -73
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/autorun.rb +0 -2
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core.rb +0 -169
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/backtrace_cleaner.rb +0 -46
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/backward_compatibility.rb +0 -55
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/command_line.rb +0 -36
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/configuration.rb +0 -1174
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/configuration_options.rb +0 -156
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/deprecation.rb +0 -31
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/drb_command_line.rb +0 -26
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/drb_options.rb +0 -87
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/dsl.rb +0 -26
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/example.rb +0 -325
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/example_group.rb +0 -479
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/extensions/instance_eval_with_args.rb +0 -44
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/extensions/kernel.rb +0 -9
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/extensions/module_eval_with_args.rb +0 -38
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/extensions/ordered.rb +0 -27
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/filter_manager.rb +0 -203
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/formatters.rb +0 -55
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/formatters/base_formatter.rb +0 -246
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/formatters/base_text_formatter.rb +0 -329
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/formatters/deprecation_formatter.rb +0 -39
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/formatters/documentation_formatter.rb +0 -67
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/formatters/helpers.rb +0 -110
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/formatters/html_formatter.rb +0 -155
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/formatters/html_printer.rb +0 -408
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/formatters/json_formatter.rb +0 -70
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/formatters/progress_formatter.rb +0 -32
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/formatters/snippet_extractor.rb +0 -92
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/formatters/text_mate_formatter.rb +0 -46
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/hooks.rb +0 -519
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/memoized_helpers.rb +0 -514
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/metadata.rb +0 -299
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/metadata_hash_builder.rb +0 -97
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/mocking/with_absolutely_nothing.rb +0 -11
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/mocking/with_flexmock.rb +0 -27
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/mocking/with_mocha.rb +0 -52
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/mocking/with_rr.rb +0 -27
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/mocking/with_rspec.rb +0 -27
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/option_parser.rb +0 -219
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/pending.rb +0 -113
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/project_initializer.rb +0 -86
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/rake_task.rb +0 -206
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/reporter.rb +0 -132
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/ruby_project.rb +0 -44
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/runner.rb +0 -87
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/shared_context.rb +0 -55
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/shared_example_group.rb +0 -185
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/shared_example_group/collection.rb +0 -43
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/version.rb +0 -8
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/lib/rspec/core/world.rb +0 -127
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/autotest/discover_spec.rb +0 -19
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/autotest/failed_results_re_spec.rb +0 -45
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/autotest/rspec_spec.rb +0 -133
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/command_line/order_spec.rb +0 -204
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/backtrace_cleaner_spec.rb +0 -68
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/command_line_spec.rb +0 -108
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/command_line_spec_output.txt +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/configuration_options_spec.rb +0 -417
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/configuration_spec.rb +0 -1561
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/deprecation_spec.rb +0 -46
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/deprecations_spec.rb +0 -73
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/drb_command_line_spec.rb +0 -102
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/drb_options_spec.rb +0 -193
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/dsl_spec.rb +0 -25
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/example_group_spec.rb +0 -1187
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/example_spec.rb +0 -465
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/filter_manager_spec.rb +0 -246
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/base_formatter_spec.rb +0 -108
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/base_text_formatter_spec.rb +0 -494
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/deprecation_formatter_spec.rb +0 -96
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/documentation_formatter_spec.rb +0 -88
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/helpers_spec.rb +0 -104
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html +0 -404
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/html_formatted-1.8.7-rbx.html +0 -477
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/html_formatted-1.8.7.html +0 -414
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/html_formatted-1.9.2.html +0 -425
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/html_formatted-1.9.3-jruby.html +0 -404
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/html_formatted-1.9.3-rbx.html +0 -477
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/html_formatted-1.9.3.html +0 -425
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/html_formatted-2.0.0.html +0 -425
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/html_formatter_spec.rb +0 -110
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/json_formatter_spec.rb +0 -115
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/progress_formatter_spec.rb +0 -30
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/snippet_extractor_spec.rb +0 -26
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html +0 -395
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/text_mate_formatted-1.8.7-rbx.html +0 -477
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/text_mate_formatted-1.8.7.html +0 -414
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/text_mate_formatted-1.9.2.html +0 -425
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/text_mate_formatted-1.9.3-jruby.html +0 -404
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/text_mate_formatted-1.9.3-rbx.html +0 -477
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/text_mate_formatted-1.9.3.html +0 -425
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/text_mate_formatted-2.0.0.html +0 -425
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/text_mate_formatted-2.1.0.html +0 -425
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/formatters/text_mate_formatter_spec.rb +0 -97
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/hooks_filtering_spec.rb +0 -227
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/hooks_spec.rb +0 -267
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/kernel_extensions_spec.rb +0 -9
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/memoized_helpers_spec.rb +0 -688
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/metadata_spec.rb +0 -491
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/option_parser_spec.rb +0 -242
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/pending_example_spec.rb +0 -220
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/project_initializer_spec.rb +0 -130
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/rake_task_spec.rb +0 -181
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/reporter_spec.rb +0 -141
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/resources/a_bar.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/resources/a_foo.rb +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/resources/a_spec.rb +0 -1
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/resources/custom_example_group_runner.rb +0 -14
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/resources/formatter_specs.rb +0 -60
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/resources/utf8_encoded.rb +0 -8
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/rspec_matchers_spec.rb +0 -45
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/ruby_project_spec.rb +0 -26
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/runner_spec.rb +0 -82
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/shared_context_spec.rb +0 -114
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/shared_example_group/collection_spec.rb +0 -70
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/shared_example_group_spec.rb +0 -120
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core/world_spec.rb +0 -142
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/rspec/core_spec.rb +0 -74
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/spec_helper.rb +0 -132
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/support/config_options_helper.rb +0 -15
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/support/helper_methods.rb +0 -36
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/support/in_sub_process.rb +0 -37
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/support/isolate_load_path_mutation.rb +0 -6
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/support/isolated_directory.rb +0 -10
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/support/isolated_home_directory.rb +0 -16
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/support/matchers.rb +0 -65
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/support/mathn_integration_support.rb +0 -12
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/support/sandboxed_mock_space.rb +0 -100
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/support/shared_example_groups.rb +0 -41
- data/vendor/bundle/ruby/2.4.0/gems/rspec-core-2.14.8/spec/support/spec_files.rb +0 -44
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/.document +0 -5
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/.yardopts +0 -6
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/Changelog.md +0 -426
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/License.txt +0 -23
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/README.md +0 -184
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/README.md +0 -48
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/Upgrade.md +0 -53
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/README.md +0 -90
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/be.feature +0 -175
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/be_within.feature +0 -48
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/cover.feature +0 -47
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/end_with.feature +0 -48
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/equality.feature +0 -139
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/exist.feature +0 -45
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/expect_change.feature +0 -59
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/expect_error.feature +0 -144
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/have.feature +0 -109
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/include.feature +0 -174
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/match.feature +0 -52
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/operators.feature +0 -227
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/predicates.feature +0 -137
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/respond_to.feature +0 -84
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/satisfy.feature +0 -33
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/start_with.feature +0 -48
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/throw_symbol.feature +0 -91
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/types.feature +0 -116
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/built_in_matchers/yield.feature +0 -161
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/custom_matchers/access_running_example.feature +0 -53
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/custom_matchers/define_diffable_matcher.feature +0 -27
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/custom_matchers/define_matcher.feature +0 -368
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/custom_matchers/define_matcher_outside_rspec.feature +0 -38
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/custom_matchers/define_matcher_with_fluent_interface.feature +0 -24
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/customized_message.feature +0 -22
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/diffing.feature +0 -85
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/implicit_docstrings.feature +0 -52
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/step_definitions/additional_cli_steps.rb +0 -22
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/support/env.rb +0 -14
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/support/rubinius.rb +0 -6
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/syntax_configuration.feature +0 -71
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/features/test_frameworks/test_unit.feature +0 -44
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec-expectations.rb +0 -1
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/expectations.rb +0 -73
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/expectations/deprecation.rb +0 -31
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/expectations/differ.rb +0 -154
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/expectations/errors.rb +0 -9
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/expectations/expectation_target.rb +0 -87
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/expectations/extensions.rb +0 -2
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/expectations/extensions/array.rb +0 -9
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/expectations/extensions/object.rb +0 -29
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/expectations/fail_with.rb +0 -79
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/expectations/handler.rb +0 -68
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/expectations/syntax.rb +0 -164
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/expectations/version.rb +0 -9
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers.rb +0 -694
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/be_close.rb +0 -9
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in.rb +0 -39
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/base_matcher.rb +0 -70
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/be.rb +0 -197
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/be_instance_of.rb +0 -15
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/be_kind_of.rb +0 -11
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/be_within.rb +0 -55
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/change.rb +0 -141
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/cover.rb +0 -21
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/eq.rb +0 -22
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/eql.rb +0 -23
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/equal.rb +0 -48
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/exist.rb +0 -26
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/has.rb +0 -48
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/have.rb +0 -124
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/include.rb +0 -61
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/match.rb +0 -17
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/match_array.rb +0 -51
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/raise_error.rb +0 -127
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/respond_to.rb +0 -74
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/satisfy.rb +0 -30
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/start_and_end_with.rb +0 -48
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/throw_symbol.rb +0 -94
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/yield.rb +0 -296
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/compatibility.rb +0 -14
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/configuration.rb +0 -108
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/dsl.rb +0 -24
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/extensions/instance_eval_with_args.rb +0 -39
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/generated_descriptions.rb +0 -35
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/matcher.rb +0 -300
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/method_missing.rb +0 -12
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/operator_matcher.rb +0 -113
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/pretty.rb +0 -70
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/test_unit_integration.rb +0 -11
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/expectations/differ_spec.rb +0 -229
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/expectations/expectation_target_spec.rb +0 -82
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/expectations/extensions/kernel_spec.rb +0 -67
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/expectations/fail_with_spec.rb +0 -114
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/expectations/handler_spec.rb +0 -227
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/expectations/syntax_spec.rb +0 -139
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/expectations_spec.rb +0 -50
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/base_matcher_spec.rb +0 -83
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/be_close_spec.rb +0 -22
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/be_instance_of_spec.rb +0 -63
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/be_kind_of_spec.rb +0 -41
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/be_spec.rb +0 -522
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/be_within_spec.rb +0 -137
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/change_spec.rb +0 -567
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/configuration_spec.rb +0 -206
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/cover_spec.rb +0 -69
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/description_generation_spec.rb +0 -190
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/dsl_spec.rb +0 -57
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/eq_spec.rb +0 -60
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/eql_spec.rb +0 -41
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/equal_spec.rb +0 -104
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/exist_spec.rb +0 -124
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/has_spec.rb +0 -122
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/have_spec.rb +0 -455
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/include_matcher_integration_spec.rb +0 -30
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/include_spec.rb +0 -531
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/match_array_spec.rb +0 -194
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/match_spec.rb +0 -74
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/matcher_spec.rb +0 -471
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/matchers_spec.rb +0 -37
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/method_missing_spec.rb +0 -28
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/operator_matcher_spec.rb +0 -252
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/raise_error_spec.rb +0 -535
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/respond_to_spec.rb +0 -292
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/satisfy_spec.rb +0 -44
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/start_with_end_with_spec.rb +0 -186
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/throw_symbol_spec.rb +0 -116
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/rspec/matchers/yield_spec.rb +0 -514
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/spec_helper.rb +0 -54
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/support/classes.rb +0 -56
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/support/in_sub_process.rb +0 -38
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/support/matchers.rb +0 -22
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/support/ruby_version.rb +0 -10
- data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/spec/support/shared_examples.rb +0 -13
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/.document +0 -5
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/.yardopts +0 -6
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/Changelog.md +0 -438
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/License.txt +0 -23
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/README.md +0 -315
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/README.md +0 -67
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/Scope.md +0 -17
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/Upgrade.md +0 -22
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/argument_matchers/README.md +0 -27
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/argument_matchers/explicit.feature +0 -59
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/argument_matchers/general_matchers.feature +0 -85
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/argument_matchers/type_matchers.feature +0 -26
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/message_expectations/README.md +0 -73
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/message_expectations/allow_any_instance_of.feature +0 -26
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/message_expectations/any_instance.feature +0 -21
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/message_expectations/block_local_expectations.feature.pending +0 -55
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/message_expectations/call_original.feature +0 -24
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/message_expectations/expect_any_instance_of.feature +0 -27
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/message_expectations/expect_message_using_expect.feature +0 -107
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/message_expectations/expect_message_using_should_receive.feature +0 -118
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/message_expectations/receive_counts.feature +0 -209
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/message_expectations/warn_when_expectation_is_set_on_nil.feature +0 -50
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/method_stubs/README.md +0 -73
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/method_stubs/any_instance.feature +0 -136
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/method_stubs/as_null_object.feature +0 -40
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/method_stubs/simple_return_value_with_allow.feature +0 -44
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/method_stubs/simple_return_value_with_stub.feature +0 -64
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/method_stubs/stub_chain.feature +0 -51
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/method_stubs/stub_implementation.feature +0 -48
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/method_stubs/to_ary.feature +0 -51
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/mutating_constants/README.md +0 -82
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/mutating_constants/hiding_defined_constant.feature +0 -64
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/mutating_constants/stub_defined_constant.feature +0 -79
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/mutating_constants/stub_undefined_constant.feature +0 -50
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/outside_rspec/configuration.feature +0 -62
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/outside_rspec/standalone.feature +0 -33
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/spies/spy_partial_mock_method.feature +0 -34
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/spies/spy_pure_mock_method.feature +0 -76
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/spies/spy_unstubbed_method.feature +0 -18
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/step_definitions/additional_cli_steps.rb +0 -11
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/support/env.rb +0 -13
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/support/rubinius.rb +0 -6
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/features/test_frameworks/test_unit.feature +0 -43
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks.rb +0 -96
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/any_instance/chain.rb +0 -94
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/any_instance/expectation_chain.rb +0 -42
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/any_instance/message_chains.rb +0 -60
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/any_instance/recorder.rb +0 -208
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/any_instance/stub_chain.rb +0 -40
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/any_instance/stub_chain_chain.rb +0 -23
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/argument_list_matcher.rb +0 -97
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/argument_matchers.rb +0 -238
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/configuration.rb +0 -55
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/deprecation.rb +0 -18
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/error_generator.rb +0 -179
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/errors.rb +0 -12
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/example_methods.rb +0 -156
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/extensions/instance_exec.rb +0 -34
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/extensions/marshal.rb +0 -17
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/framework.rb +0 -34
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/instance_method_stasher.rb +0 -94
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/matchers/have_received.rb +0 -93
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/matchers/receive.rb +0 -97
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/message_expectation.rb +0 -600
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/method_double.rb +0 -271
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/mock.rb +0 -7
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/mutate_const.rb +0 -403
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/order_group.rb +0 -40
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/proxy.rb +0 -223
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/proxy_for_nil.rb +0 -37
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/space.rb +0 -92
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/standalone.rb +0 -3
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/stub_chain.rb +0 -51
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/syntax.rb +0 -349
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/targets.rb +0 -69
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/test_double.rb +0 -135
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/rspec/mocks/version.rb +0 -7
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/lib/spec/mocks.rb +0 -4
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/and_call_original_spec.rb +0 -243
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/and_yield_spec.rb +0 -127
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/any_instance/message_chains_spec.rb +0 -41
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/any_instance_spec.rb +0 -1036
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/any_number_of_times_spec.rb +0 -36
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/argument_expectation_spec.rb +0 -32
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/at_least_spec.rb +0 -151
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/at_most_spec.rb +0 -90
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/block_return_value_spec.rb +0 -99
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/bug_report_10260_spec.rb +0 -8
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/bug_report_10263_spec.rb +0 -27
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/bug_report_11545_spec.rb +0 -32
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/bug_report_496_spec.rb +0 -17
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/bug_report_600_spec.rb +0 -22
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/bug_report_7611_spec.rb +0 -16
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/bug_report_8165_spec.rb +0 -31
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/bug_report_830_spec.rb +0 -21
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/bug_report_957_spec.rb +0 -22
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/combining_implementation_instructions_spec.rb +0 -205
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/configuration_spec.rb +0 -150
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/double_spec.rb +0 -24
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/extensions/marshal_spec.rb +0 -54
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/failing_argument_matchers_spec.rb +0 -110
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/hash_excluding_matcher_spec.rb +0 -67
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/hash_including_matcher_spec.rb +0 -90
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/instance_method_stasher_spec.rb +0 -58
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/matchers/have_received_spec.rb +0 -266
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/matchers/receive_spec.rb +0 -342
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/methods_spec.rb +0 -27
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/mock_ordering_spec.rb +0 -103
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/mock_space_spec.rb +0 -103
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/mock_spec.rb +0 -798
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/multiple_return_value_spec.rb +0 -132
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/mutate_const_spec.rb +0 -501
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/nil_expectation_warning_spec.rb +0 -68
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/null_object_mock_spec.rb +0 -123
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/once_counts_spec.rb +0 -52
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/options_hash_spec.rb +0 -35
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/partial_mock_spec.rb +0 -205
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/partial_mock_using_mocks_directly_spec.rb +0 -95
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/passing_argument_matchers_spec.rb +0 -142
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/precise_counts_spec.rb +0 -68
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/record_messages_spec.rb +0 -26
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/serialization_spec.rb +0 -89
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/space_spec.rb +0 -32
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/stash_spec.rb +0 -46
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/stub_chain_spec.rb +0 -166
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/stub_implementation_spec.rb +0 -81
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/stub_spec.rb +0 -353
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/stubbed_message_expectations_spec.rb +0 -58
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/syntax_agnostic_message_matchers_spec.rb +0 -81
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/test_double_spec.rb +0 -67
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/to_ary_spec.rb +0 -54
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks/twice_counts_spec.rb +0 -66
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/rspec/mocks_spec.rb +0 -65
- data/vendor/bundle/ruby/2.4.0/gems/rspec-mocks-2.14.6/spec/spec_helper.rb +0 -60
- data/vendor/bundle/ruby/2.4.0/specifications/fake_ftp-0.1.1.gemspec +0 -20
- data/vendor/bundle/ruby/2.4.0/specifications/hashdiff-0.3.4.gemspec +0 -39
- data/vendor/bundle/ruby/2.4.0/specifications/rb-fsevent-0.9.8.gemspec +0 -38
- data/vendor/bundle/ruby/2.4.0/specifications/rb-inotify-0.9.8.gemspec +0 -36
- data/vendor/bundle/ruby/2.4.0/specifications/rspec-2.14.1.gemspec +0 -42
- data/vendor/bundle/ruby/2.4.0/specifications/rspec-core-2.14.8.gemspec +0 -61
- data/vendor/bundle/ruby/2.4.0/specifications/rspec-expectations-2.14.5.gemspec +0 -43
- data/vendor/bundle/ruby/2.4.0/specifications/rspec-mocks-2.14.6.gemspec +0 -40
data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/english_phrasing.rb
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
module RSpec
|
2
|
+
module Matchers
|
3
|
+
# Facilitates converting ruby objects to English phrases.
|
4
|
+
module EnglishPhrasing
|
5
|
+
# Converts a symbol into an English expression.
|
6
|
+
#
|
7
|
+
# split_words(:banana_creme_pie) #=> "banana creme pie"
|
8
|
+
#
|
9
|
+
def self.split_words(sym)
|
10
|
+
sym.to_s.gsub(/_/, ' ')
|
11
|
+
end
|
12
|
+
|
13
|
+
# @note The returned string has a leading space except
|
14
|
+
# when given an empty list.
|
15
|
+
#
|
16
|
+
# Converts an object (often a collection of objects)
|
17
|
+
# into an English list.
|
18
|
+
#
|
19
|
+
# list(['banana', 'kiwi', 'mango'])
|
20
|
+
# #=> " \"banana\", \"kiwi\", and \"mango\""
|
21
|
+
#
|
22
|
+
# Given an empty collection, returns the empty string.
|
23
|
+
#
|
24
|
+
# list([]) #=> ""
|
25
|
+
#
|
26
|
+
def self.list(obj)
|
27
|
+
return " #{RSpec::Support::ObjectFormatter.format(obj)}" if !obj || Struct === obj
|
28
|
+
items = Array(obj).map { |w| RSpec::Support::ObjectFormatter.format(w) }
|
29
|
+
case items.length
|
30
|
+
when 0
|
31
|
+
""
|
32
|
+
when 1
|
33
|
+
" #{items[0]}"
|
34
|
+
when 2
|
35
|
+
" #{items[0]} and #{items[1]}"
|
36
|
+
else
|
37
|
+
" #{items[0...-1].join(', ')}, and #{items[-1]}"
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
if RUBY_VERSION == '1.8.7'
|
42
|
+
# Not sure why, but on travis on 1.8.7 we have gotten these warnings:
|
43
|
+
# lib/rspec/matchers/english_phrasing.rb:28: warning: default `to_a' will be obsolete
|
44
|
+
# So it appears that `Array` can trigger that (e.g. by calling `to_a` on the passed object?)
|
45
|
+
# So here we replace `Kernel#Array` with our own warning-free implementation for 1.8.7.
|
46
|
+
# @private
|
47
|
+
# rubocop:disable Style/MethodName
|
48
|
+
def self.Array(obj)
|
49
|
+
case obj
|
50
|
+
when Array then obj
|
51
|
+
else [obj]
|
52
|
+
end
|
53
|
+
end
|
54
|
+
# rubocop:enable Style/MethodName
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
@@ -0,0 +1,73 @@
|
|
1
|
+
module RSpec
|
2
|
+
module Matchers
|
3
|
+
# @api private
|
4
|
+
# Handles list of expected values when there is a need to render
|
5
|
+
# multiple diffs. Also can handle one value.
|
6
|
+
class ExpectedsForMultipleDiffs
|
7
|
+
# @private
|
8
|
+
# Default diff label when there is only one matcher in diff
|
9
|
+
# output
|
10
|
+
DEFAULT_DIFF_LABEL = "Diff:".freeze
|
11
|
+
|
12
|
+
# @private
|
13
|
+
# Maximum readable matcher description length
|
14
|
+
DESCRIPTION_MAX_LENGTH = 65
|
15
|
+
|
16
|
+
def initialize(expected_list)
|
17
|
+
@expected_list = expected_list
|
18
|
+
end
|
19
|
+
|
20
|
+
# @api private
|
21
|
+
# Wraps provided expected value in instance of
|
22
|
+
# ExpectedForMultipleDiffs. If provided value is already an
|
23
|
+
# ExpectedForMultipleDiffs then it just returns it.
|
24
|
+
# @param [Any] expected value to be wrapped
|
25
|
+
# @return [RSpec::Matchers::ExpectedsForMultipleDiffs]
|
26
|
+
def self.from(expected)
|
27
|
+
return expected if self === expected
|
28
|
+
new([[expected, DEFAULT_DIFF_LABEL]])
|
29
|
+
end
|
30
|
+
|
31
|
+
# @api private
|
32
|
+
# Wraps provided matcher list in instance of
|
33
|
+
# ExpectedForMultipleDiffs.
|
34
|
+
# @param [Array<Any>] matchers list of matchers to wrap
|
35
|
+
# @return [RSpec::Matchers::ExpectedsForMultipleDiffs]
|
36
|
+
def self.for_many_matchers(matchers)
|
37
|
+
new(matchers.map { |m| [m.expected, diff_label_for(m)] })
|
38
|
+
end
|
39
|
+
|
40
|
+
# @api private
|
41
|
+
# Returns message with diff(s) appended for provided differ
|
42
|
+
# factory and actual value if there are any
|
43
|
+
# @param [String] message original failure message
|
44
|
+
# @param [Proc] differ
|
45
|
+
# @param [Any] actual value
|
46
|
+
# @return [String]
|
47
|
+
def message_with_diff(message, differ, actual)
|
48
|
+
diff = diffs(differ, actual)
|
49
|
+
message = "#{message}\n#{diff}" unless diff.empty?
|
50
|
+
message
|
51
|
+
end
|
52
|
+
|
53
|
+
private
|
54
|
+
|
55
|
+
def self.diff_label_for(matcher)
|
56
|
+
"Diff for (#{truncated(RSpec::Support::ObjectFormatter.format(matcher))}):"
|
57
|
+
end
|
58
|
+
|
59
|
+
def self.truncated(description)
|
60
|
+
return description if description.length <= DESCRIPTION_MAX_LENGTH
|
61
|
+
description[0...DESCRIPTION_MAX_LENGTH - 3] << "..."
|
62
|
+
end
|
63
|
+
|
64
|
+
def diffs(differ, actual)
|
65
|
+
@expected_list.map do |(expected, diff_label)|
|
66
|
+
diff = differ.diff(actual, expected)
|
67
|
+
next if diff.strip.empty?
|
68
|
+
"#{diff_label}#{diff}"
|
69
|
+
end.compact.join("\n")
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/fail_matchers.rb
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
require 'rspec/expectations'
|
2
|
+
|
3
|
+
module RSpec
|
4
|
+
module Matchers
|
5
|
+
# Matchers for testing RSpec matchers. Include them with:
|
6
|
+
#
|
7
|
+
# require 'rspec/matchers/fail_matchers'
|
8
|
+
# RSpec.configure do |config|
|
9
|
+
# config.include RSpec::Matchers::FailMatchers
|
10
|
+
# end
|
11
|
+
#
|
12
|
+
module FailMatchers
|
13
|
+
# Matches if an expectation fails
|
14
|
+
#
|
15
|
+
# @example
|
16
|
+
# expect { some_expectation }.to fail
|
17
|
+
def fail(&block)
|
18
|
+
raise_error(RSpec::Expectations::ExpectationNotMetError, &block)
|
19
|
+
end
|
20
|
+
|
21
|
+
# Matches if an expectation fails with the provided message
|
22
|
+
#
|
23
|
+
# @example
|
24
|
+
# expect { some_expectation }.to fail_with("some failure message")
|
25
|
+
# expect { some_expectation }.to fail_with(/some failure message/)
|
26
|
+
def fail_with(message)
|
27
|
+
raise_error(RSpec::Expectations::ExpectationNotMetError, message)
|
28
|
+
end
|
29
|
+
|
30
|
+
# Matches if an expectation fails including the provided message
|
31
|
+
#
|
32
|
+
# @example
|
33
|
+
# expect { some_expectation }.to fail_including("portion of some failure message")
|
34
|
+
def fail_including(*snippets)
|
35
|
+
raise_error(
|
36
|
+
RSpec::Expectations::ExpectationNotMetError,
|
37
|
+
a_string_including(*snippets)
|
38
|
+
)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
module RSpec
|
2
|
+
module Matchers
|
3
|
+
class << self
|
4
|
+
# @private
|
5
|
+
attr_accessor :last_matcher, :last_expectation_handler
|
6
|
+
end
|
7
|
+
|
8
|
+
# @api private
|
9
|
+
# Used by rspec-core to clear the state used to generate
|
10
|
+
# descriptions after an example.
|
11
|
+
def self.clear_generated_description
|
12
|
+
self.last_matcher = nil
|
13
|
+
self.last_expectation_handler = nil
|
14
|
+
end
|
15
|
+
|
16
|
+
# @api private
|
17
|
+
# Generates an an example description based on the last expectation.
|
18
|
+
# Used by rspec-core's one-liner syntax.
|
19
|
+
def self.generated_description
|
20
|
+
return nil if last_expectation_handler.nil?
|
21
|
+
"#{last_expectation_handler.verb} #{last_description}"
|
22
|
+
end
|
23
|
+
|
24
|
+
private
|
25
|
+
|
26
|
+
def self.last_description
|
27
|
+
last_matcher.respond_to?(:description) ? last_matcher.description : <<-MESSAGE
|
28
|
+
When you call a matcher in an example without a String, like this:
|
29
|
+
|
30
|
+
specify { expect(object).to matcher }
|
31
|
+
|
32
|
+
or this:
|
33
|
+
|
34
|
+
it { is_expected.to matcher }
|
35
|
+
|
36
|
+
RSpec expects the matcher to have a #description method. You should either
|
37
|
+
add a String to the example this matcher is being used in, or give it a
|
38
|
+
description method. Then you won't have to suffer this lengthy warning again.
|
39
|
+
MESSAGE
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/matcher_delegator.rb
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
module RSpec
|
2
|
+
module Matchers
|
3
|
+
# Provides the necessary plumbing to wrap a matcher with a decorator.
|
4
|
+
# @private
|
5
|
+
class MatcherDelegator
|
6
|
+
include Composable
|
7
|
+
attr_reader :base_matcher
|
8
|
+
|
9
|
+
def initialize(base_matcher)
|
10
|
+
@base_matcher = base_matcher
|
11
|
+
end
|
12
|
+
|
13
|
+
def method_missing(*args, &block)
|
14
|
+
base_matcher.__send__(*args, &block)
|
15
|
+
end
|
16
|
+
|
17
|
+
if ::RUBY_VERSION.to_f > 1.8
|
18
|
+
def respond_to_missing?(name, include_all=false)
|
19
|
+
super || base_matcher.respond_to?(name, include_all)
|
20
|
+
end
|
21
|
+
else
|
22
|
+
# :nocov:
|
23
|
+
def respond_to?(name, include_all=false)
|
24
|
+
super || base_matcher.respond_to?(name, include_all)
|
25
|
+
end
|
26
|
+
# :nocov:
|
27
|
+
end
|
28
|
+
|
29
|
+
def initialize_copy(other)
|
30
|
+
@base_matcher = @base_matcher.clone
|
31
|
+
super
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
data/vendor/bundle/ruby/2.4.0/gems/rspec-expectations-3.5.0/lib/rspec/matchers/matcher_protocol.rb
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
module RSpec
|
2
|
+
module Matchers
|
3
|
+
# rspec-expectations can work with any matcher object that implements this protocol.
|
4
|
+
#
|
5
|
+
# @note This class is not loaded at runtime by rspec-expectations. It exists
|
6
|
+
# purely to provide documentation for the matcher protocol.
|
7
|
+
class MatcherProtocol
|
8
|
+
# @!group Required Methods
|
9
|
+
|
10
|
+
# @!method matches?(actual)
|
11
|
+
# @param actual [Object] The object being matched against.
|
12
|
+
# @yield For an expression like `expect(x).to matcher do...end`, the `do/end`
|
13
|
+
# block binds to `to`. It passes that block, if there is one, on to this method.
|
14
|
+
# @return [Boolean] true if this matcher matches the provided object.
|
15
|
+
|
16
|
+
# @!method failure_message
|
17
|
+
# This will only be called if {#matches?} returns false.
|
18
|
+
# @return [String] Explanation for the failure.
|
19
|
+
|
20
|
+
# @!endgroup
|
21
|
+
|
22
|
+
# @!group Optional Methods
|
23
|
+
|
24
|
+
# @!method does_not_match?(actual)
|
25
|
+
# In a negative expectation such as `expect(x).not_to foo`, RSpec will
|
26
|
+
# call `foo.does_not_match?(x)` if this method is defined. If it's not
|
27
|
+
# defined it will fall back to using `!foo.matches?(x)`. This allows you
|
28
|
+
# to provide custom logic for the negative case.
|
29
|
+
#
|
30
|
+
# @param actual [Object] The object being matched against.
|
31
|
+
# @yield For an expression like `expect(x).not_to matcher do...end`, the `do/end`
|
32
|
+
# block binds to `not_to`. It passes that block, if there is one, on to this method.
|
33
|
+
# @return [Boolean] true if this matcher does not match the provided object.
|
34
|
+
|
35
|
+
# @!method failure_message_when_negated
|
36
|
+
# This will only be called when a negative match fails.
|
37
|
+
# @return [String] Explanation for the failure.
|
38
|
+
# @note This method is listed as optional because matchers do not have to
|
39
|
+
# support negation. But if your matcher does support negation, this is a
|
40
|
+
# required method -- otherwise, you'll get a `NoMethodError`.
|
41
|
+
|
42
|
+
# @!method description
|
43
|
+
# The description is used for two things:
|
44
|
+
#
|
45
|
+
# * When using RSpec's one-liner syntax
|
46
|
+
# (e.g. `it { is_expected.to matcher }`), the description
|
47
|
+
# is used to generate the example's doc string since you
|
48
|
+
# have not provided one.
|
49
|
+
# * In a composed matcher expression, the description is used
|
50
|
+
# as part of the failure message (and description) of the outer
|
51
|
+
# matcher.
|
52
|
+
#
|
53
|
+
# @return [String] Description of the matcher.
|
54
|
+
|
55
|
+
# @!method supports_block_expectations?
|
56
|
+
# Indicates that this matcher can be used in a block expectation expression,
|
57
|
+
# such as `expect { foo }.to raise_error`. Generally speaking, this is
|
58
|
+
# only needed for matchers which operate on a side effect of a block, rather
|
59
|
+
# than on a particular object.
|
60
|
+
# @return [Boolean] true if this matcher can be used in block expressions.
|
61
|
+
# @note If not defined, RSpec assumes a value of `false` for this method.
|
62
|
+
|
63
|
+
# @!method expects_call_stack_jump?
|
64
|
+
# Indicates that when this matcher is used in a block expectation
|
65
|
+
# expression, it expects the block to use a ruby construct that causes
|
66
|
+
# a call stack jump (such as raising an error or throwing a symbol).
|
67
|
+
#
|
68
|
+
# This is used internally for compound block expressions, as matchers
|
69
|
+
# which expect call stack jumps must be treated with care to work properly.
|
70
|
+
#
|
71
|
+
# @return [Boolean] true if the matcher expects a call stack jump
|
72
|
+
#
|
73
|
+
# @note This method is very rarely used or needed.
|
74
|
+
# @note If not defined, RSpec assumes a value of `false` for this method.
|
75
|
+
|
76
|
+
# @!method diffable?
|
77
|
+
# @return [Boolean] true if `actual` and `expected` can be diffed.
|
78
|
+
# Indicates that this matcher provides `actual` and `expected` attributes,
|
79
|
+
# and that the values returned by these can be usefully diffed, which can
|
80
|
+
# be included in the output.
|
81
|
+
|
82
|
+
# @!method actual
|
83
|
+
# @return [String, Object] If an object (rather than a string) is provided,
|
84
|
+
# RSpec will use the `pp` library to convert it to multi-line output in
|
85
|
+
# order to diff.
|
86
|
+
# The actual value for the purposes of a diff.
|
87
|
+
# @note This method is required if `diffable?` returns true.
|
88
|
+
|
89
|
+
# @!method expected
|
90
|
+
# @return [String, Object] If an object (rather than a string) is provided,
|
91
|
+
# RSpec will use the `pp` library to convert it to multi-line output in
|
92
|
+
# order to diff.
|
93
|
+
# The expected value for the purposes of a diff.
|
94
|
+
# @note This method is required if `diffable?` returns true.
|
95
|
+
|
96
|
+
# @!endgroup
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
@@ -0,0 +1,1043 @@
|
|
1
|
+
### 3.5.0 / 2016-07-01
|
2
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.5.0.beta4...v3.5.0)
|
3
|
+
|
4
|
+
Enhancements:
|
5
|
+
|
6
|
+
* Provides a nice string representation of
|
7
|
+
`RSpec::Mocks::MessageExpectation` (Myron Marston, #1095)
|
8
|
+
|
9
|
+
### 3.5.0.beta4 / 2016-06-05
|
10
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.5.0.beta3...v3.5.0.beta4)
|
11
|
+
|
12
|
+
Enhancements:
|
13
|
+
|
14
|
+
* Add `and_throw` to any instance handling. (Tobias Bühlmann, #1068)
|
15
|
+
|
16
|
+
### 3.5.0.beta3 / 2016-04-02
|
17
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.5.0.beta2...v3.5.0.beta3)
|
18
|
+
|
19
|
+
Enhancements:
|
20
|
+
|
21
|
+
* Issue warning when attempting to use unsupported
|
22
|
+
`allow(...).to receive(...).ordered`. (Jon Rowe, #1000)
|
23
|
+
* Add `rspec/mocks/minitest_integration`, to properly integrate rspec-mocks
|
24
|
+
with minitest. (Myron Marston, #1065)
|
25
|
+
|
26
|
+
### 3.5.0.beta2 / 2016-03-10
|
27
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.5.0.beta1...v3.5.0.beta2)
|
28
|
+
|
29
|
+
Enhancements:
|
30
|
+
|
31
|
+
* Improve error message displayed when using `and_wrap_original` on pure test
|
32
|
+
doubles. (betesh, #1063)
|
33
|
+
|
34
|
+
Bug Fixes:
|
35
|
+
|
36
|
+
* Fix issue that prevented `receive_message_chain(...).with(...)` working
|
37
|
+
correctly on "any instance" mocks. (Jon Rowe, #1061)
|
38
|
+
|
39
|
+
### 3.5.0.beta1 / 2016-02-06
|
40
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.4.1...v3.5.0.beta1)
|
41
|
+
|
42
|
+
Bug Fixes:
|
43
|
+
|
44
|
+
* Allow `any_instance_of(...).to receive(...)` to use `and_yield` multiple
|
45
|
+
times. (Kilian Cirera Sant, #1054)
|
46
|
+
* Allow matchers which inherit from `rspec-mocks` matchers to be used for
|
47
|
+
`allow`. (Andrew Kozin, #1056)
|
48
|
+
* Prevent stubbing `respond_to?` on partial doubles from causing infinite
|
49
|
+
recursion. (Jon Rowe, #1013)
|
50
|
+
* Prevent aliased methods from disapearing after being mocked with
|
51
|
+
`any_instance` (regression from #1043). (Joe Rafaniello, #1060)
|
52
|
+
|
53
|
+
### 3.4.1 / 2016-01-10
|
54
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.4.0...v3.4.1)
|
55
|
+
|
56
|
+
Bug Fixes:
|
57
|
+
|
58
|
+
* Fix `any_instance` to work properly on Ruby 2.3. (Joe Rafaniello, #1043)
|
59
|
+
|
60
|
+
### 3.4.0 / 2015-11-11
|
61
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.3.2...v3.4.0)
|
62
|
+
|
63
|
+
Enhancements:
|
64
|
+
|
65
|
+
* Make `expect(...).to have_received` work without relying upon
|
66
|
+
rspec-expectations. (Myron Marston, #978)
|
67
|
+
* Add option for failing tests when expectations are set on `nil`.
|
68
|
+
(Liz Rush, #983)
|
69
|
+
|
70
|
+
Bug Fixes:
|
71
|
+
|
72
|
+
* Fix `have_received { ... }` so that any block passed when the message
|
73
|
+
was received is forwarded to the `have_received` block. (Myron Marston, #1006)
|
74
|
+
* Fix infinite loop in error generator when stubbing `respond_to?`.
|
75
|
+
(Alex Dowad, #1022)
|
76
|
+
* Fix issue with using `receive` on subclasses (at a class level) with 1.8.7.
|
77
|
+
(Alex Dowad, #1026)
|
78
|
+
|
79
|
+
### 3.3.2 / 2015-07-15
|
80
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.3.1...v3.3.2)
|
81
|
+
|
82
|
+
Bug Fixes:
|
83
|
+
|
84
|
+
* Prevent thread deadlock errors during proxy creation (e.g. when using
|
85
|
+
`before_verifying_doubles` callbacks). (Jon Rowe, #980, #979)
|
86
|
+
|
87
|
+
### 3.3.1 / 2015-06-19
|
88
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.3.0...v3.3.1)
|
89
|
+
|
90
|
+
Bug Fixes:
|
91
|
+
|
92
|
+
* Fix bug in `before_verifying_double` callback logic that caused it to be called
|
93
|
+
once for each class in the ancestor list when mocking or stubbing a class. Now
|
94
|
+
it is only called for the mocked or stubbed class, as you would expect. (Sam
|
95
|
+
Phippen, #974)
|
96
|
+
|
97
|
+
### 3.3.0 / 2015-06-12
|
98
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.2.1...v3.3.0)
|
99
|
+
|
100
|
+
Enhancements:
|
101
|
+
|
102
|
+
* When stubbing `new` on `MyClass` or `class_double(MyClass)`, use the
|
103
|
+
method signature from `MyClass#initialize` to verify arguments.
|
104
|
+
(Myron Marston, #886)
|
105
|
+
* Use matcher descriptions when generating description of received arguments
|
106
|
+
for mock expectation failures. (Tim Wade, #891)
|
107
|
+
* Avoid loading `stringio` unnecessarily. (Myron Marston, #894)
|
108
|
+
* Verifying doubles failure messages now distinguish between class and instance
|
109
|
+
level methods. (Tim Wade, #896, #908)
|
110
|
+
* Improve mock expectation failure messages so that it combines both
|
111
|
+
number of times and the received arguments in the output. (John Ceh, #918)
|
112
|
+
* Improve how test doubles are represented in failure messages.
|
113
|
+
(Siva Gollapalli, Myron Marston, #932)
|
114
|
+
* Rename `RSpec::Mocks::Configuration#when_declaring_verifying_double` to
|
115
|
+
`RSpec::Mocks::Configuration#before_verifying_doubles` and utilise when
|
116
|
+
verifying partial doubles. (Jon Rowe, #940)
|
117
|
+
* Use rspec-support's `ObjectFormatter` for improved formatting of
|
118
|
+
arguments in failure messages so that, for example, full time
|
119
|
+
precisions is displayed for time objects. (Gavin Miller, Myron Marston, #955)
|
120
|
+
|
121
|
+
Bug Fixes:
|
122
|
+
|
123
|
+
* Ensure expectations that raise eagerly also raise during RSpec verification.
|
124
|
+
This means that if exceptions are caught inside test execution the test will
|
125
|
+
still fail. (Sam Phippen, #884)
|
126
|
+
* Fix `have_received(msg).with(args).exactly(n).times` and
|
127
|
+
`receive(msg).with(args).exactly(n).times` failure messages
|
128
|
+
for when the message was received the wrong number of times with
|
129
|
+
the specified args, and also received additional times with other
|
130
|
+
arguments. Previously it confusingly listed the arguments as being
|
131
|
+
mis-matched (even when the double was allowed to receive with any
|
132
|
+
args) rather than listing the count. (John Ceh, #918)
|
133
|
+
* Fix `any_args`/`anything` support so that we avoid calling `obj == anything`
|
134
|
+
on user objects that may have improperly implemented `==` in a way that
|
135
|
+
raises errors. (Myron Marston, #924)
|
136
|
+
* Fix edge case involving stubbing the same method on a class and a subclass
|
137
|
+
which previously hit a `NoMethodError` internally in RSpec. (Myron Marston #954)
|
138
|
+
* Fix edge case where the message received count would be incremented multiple
|
139
|
+
times for one failure. (Myron Marston, #957)
|
140
|
+
* Fix failure messages for when spies received the expected message with
|
141
|
+
different arguments and also received another message. (Maurício Linhares, #960)
|
142
|
+
* Silence whitespace-only diffs. (Myron Marston, #969)
|
143
|
+
|
144
|
+
### 3.2.1 / 2015-02-23
|
145
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.2.0...v3.2.1)
|
146
|
+
|
147
|
+
Bug Fixes:
|
148
|
+
|
149
|
+
* Add missing `rspec/support/differ` require so that rspec-mocks can be
|
150
|
+
used w/o rspec-expectations (which also loads the differ and hided the
|
151
|
+
fact we forgot to require it). (Myron Marston, #893)
|
152
|
+
* Revert tracking of received arg mutation (added in 3.2.0 to provide an
|
153
|
+
error in a situation we can't support) as our implementation has side
|
154
|
+
effects on non-standard objects and there's no solution we could come
|
155
|
+
up with that always works. (Myron Marston, #900)
|
156
|
+
|
157
|
+
### 3.2.0 / 2015-02-03
|
158
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.1.3...v3.2.0)
|
159
|
+
|
160
|
+
Enhancements:
|
161
|
+
|
162
|
+
* Treat `any_args` as an arg splat, allowing it to match an arbitrary
|
163
|
+
number of args at any point in an arg list. (Myron Marston, #786)
|
164
|
+
* Print diffs when arguments in mock expectations are mismatched.
|
165
|
+
(Sam Phippen, #751)
|
166
|
+
* Support names for verified doubles (`instance_double`, `instance_spy`,
|
167
|
+
`class_double`, `class_spy`, `object_double`, `object_spy`). (Cezary
|
168
|
+
Baginski, #826)
|
169
|
+
* Make `array_including` and `hash_including` argument matchers composable.
|
170
|
+
(Sam Phippen, #819)
|
171
|
+
* Make `allow_any_instance_of(...).to receive(...).and_wrap_original`
|
172
|
+
work. (Ryan Fitzgerald, #869)
|
173
|
+
|
174
|
+
Bug Fixes:
|
175
|
+
|
176
|
+
* Provide a clear error when users wrongly combine `no_args` with
|
177
|
+
additional arguments (e.g. `expect().to receive().with(no_args, 1)`).
|
178
|
+
(Myron Marston, #786)
|
179
|
+
* Provide a clear error when users wrongly use `any_args` multiple times in the
|
180
|
+
same argument list (e.g. `expect().to receive().with(any_args, 1, any_args)`.
|
181
|
+
(Myron Marston, #786)
|
182
|
+
* Prevent the error generator from using user object #description methods.
|
183
|
+
See [#685](https://github.com/rspec/rspec-mocks/issues/685).
|
184
|
+
(Sam Phippen, #751)
|
185
|
+
* Make verified doubles declared as `(instance|class)_double(SomeConst)`
|
186
|
+
work properly when `SomeConst` has previously been stubbed.
|
187
|
+
`(instance|class)_double("SomeClass")` already worked properly.
|
188
|
+
(Myron Marston, #824)
|
189
|
+
* Add a matcher description for `receive`, `receive_messages` and
|
190
|
+
`receive_message_chain`. (Myron Marston, #828)
|
191
|
+
* Validate invocation args for null object verified doubles.
|
192
|
+
(Myron Marston, #829)
|
193
|
+
* Fix `RSpec::Mocks::Constant.original` when called with an invalid
|
194
|
+
constant to return an object indicating the constant name is invalid,
|
195
|
+
rather than blowing up. (Myron Marston, #833)
|
196
|
+
* Make `extend RSpec::Mocks::ExampleMethods` on any object work properly
|
197
|
+
to add the rspec-mocks API to that object. Previously, `expect` would
|
198
|
+
be undefined. (Myron Marston, #846)
|
199
|
+
* Fix `require 'rspec/mocks/standalone'` so that it only affects `main`
|
200
|
+
and not every object. It's really only intended to be used in a REPL
|
201
|
+
like IRB, but some gems have loaded it, thinking it needs to be loaded
|
202
|
+
when using rspec-mocks outside the context of rspec-core.
|
203
|
+
(Myron Marston, #846)
|
204
|
+
* Prevent message expectations from being modified by customization methods
|
205
|
+
(e.g. `with`) after they have been invoked. (Sam Phippen and Melanie Gilman, #837)
|
206
|
+
* Handle cases where a method stub cannot be removed due to something
|
207
|
+
external to RSpec monkeying with the method definition. This can
|
208
|
+
happen, for example, when you `file.reopen(io)` after previously
|
209
|
+
stubbing a method on the `file` object. (Myron Marston, #853)
|
210
|
+
* Provide a clear error when received message args are mutated before
|
211
|
+
a `have_received(...).with(...)` expectation. (Myron Marston, #868)
|
212
|
+
|
213
|
+
### 3.1.3 / 2014-10-08
|
214
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.1.2...v3.1.3)
|
215
|
+
|
216
|
+
Bug Fixes:
|
217
|
+
|
218
|
+
* Correct received messages count when used with `have_received` matcher.
|
219
|
+
(Jon Rowe, #793)
|
220
|
+
* Provide a clear error message when you use `allow_any_instance_of(...)` or
|
221
|
+
`expect_any_instance_of(...)` with the `have_received` matcher (they are
|
222
|
+
not intended to be used together and previously caused an odd internal
|
223
|
+
failure in rspec-mocks). (Jon Rowe, #799).
|
224
|
+
* Fix verified double `with` verification so that it applies to method
|
225
|
+
stubs. (Myron Marston, #790)
|
226
|
+
|
227
|
+
### 3.1.2 / 2014-09-26
|
228
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.1.1...v3.1.2)
|
229
|
+
|
230
|
+
Bug Fixes:
|
231
|
+
|
232
|
+
* Provide a clear error message when you use `allow(...)` with the
|
233
|
+
`have_received` matcher (they are not intended to be used together
|
234
|
+
and previously caused an odd internal failure in rspec-mocks). (Jon Rowe, #788).
|
235
|
+
|
236
|
+
### 3.1.1 / 2014-09-18
|
237
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.1.0...v3.1.1)
|
238
|
+
|
239
|
+
Bug Fixes:
|
240
|
+
|
241
|
+
* Prevent included modules being detected as prepended modules on Ruby 2.0
|
242
|
+
when using `any_instance_of(...)`. (Tony Novak, #781)
|
243
|
+
|
244
|
+
### 3.1.0 / 2014-09-04
|
245
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.0.4...v3.1.0)
|
246
|
+
|
247
|
+
Enhancements:
|
248
|
+
|
249
|
+
* Add spying methods (`spy`, `ìnstance_spy`, `class_spy` and `object_spy`)
|
250
|
+
which create doubles as null objects for use with spying in testing. (Sam
|
251
|
+
Phippen, #671)
|
252
|
+
* `have_received` matcher will raise "does not implement" errors correctly when
|
253
|
+
used with verifying doubles and partial doubles. (Xavier Shay, #722)
|
254
|
+
* Allow matchers to be used in place of keyword arguments in `with`
|
255
|
+
expectations. (Xavier Shay, #726)
|
256
|
+
* Add `thrice` modifier to message expectation interface as a synonym
|
257
|
+
for `exactly(3).times`. (Dennis Taylor, #753)
|
258
|
+
* Add more `thrice` synonyms e.g. `.at_least(:thrice)`, `.at_most(:thrice)`,
|
259
|
+
`receive(...).thrice` and `have_received(...).thrice`. (Jon Rowe, #754)
|
260
|
+
* Add `and_wrap_original` modifier for partial doubles to mutate the
|
261
|
+
response from a method. (Jon Rowe, #762)
|
262
|
+
|
263
|
+
Bug Fixes:
|
264
|
+
|
265
|
+
* Remove `any_number_of_times` from `any_instance` recorders that were
|
266
|
+
erroneously causing mention of the method in documentation. (Jon Rowe, #760)
|
267
|
+
* Prevent included modules being detected as prepended modules on Ruby 2.0.
|
268
|
+
(Eugene Kenny, #771)
|
269
|
+
|
270
|
+
### 3.0.4 / 2014-08-14
|
271
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.0.3...v3.0.4)
|
272
|
+
|
273
|
+
Bug Fixes:
|
274
|
+
|
275
|
+
* Restore `kind_of(x)` to match using `arg.kind_of?(x)` (like RSpec 2)
|
276
|
+
rather than `x === arg`. (Jon Rowe, #750)
|
277
|
+
|
278
|
+
### 3.0.3 / 2014-07-21
|
279
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.0.2...v3.0.3)
|
280
|
+
|
281
|
+
Bug Fixes:
|
282
|
+
|
283
|
+
* `have_received` matcher will raise "does not implement" errors correctly when
|
284
|
+
used with verifying doubles and partial doubles. (Xavier Shay, #722)
|
285
|
+
* Make `double.as_null_object.dup` and `double.as_null_object.clone`
|
286
|
+
make the copies be null objects. (Myron Marston, #732)
|
287
|
+
* Don't inadvertently define `BasicObject` in 1.8.7. (Chris Griego, #739)
|
288
|
+
|
289
|
+
### 3.0.2 / 2014-06-19
|
290
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.0.1...v3.0.2)
|
291
|
+
|
292
|
+
Bug Fixes:
|
293
|
+
|
294
|
+
* Fix edge case that triggered "can't add a new key into hash during
|
295
|
+
iteration" during mock verification. (Sam Phippen, Myron Marston, #711)
|
296
|
+
* Fix verifying doubles so that when they accidentally leak into another
|
297
|
+
example, they provide the same clear error message that normal doubles
|
298
|
+
do. (Myron Marston, #718)
|
299
|
+
* Make `ordered` work with exact receive counts. (Sam Phippen, #713)
|
300
|
+
|
301
|
+
### 3.0.1 / 2014-06-07
|
302
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.0.0...v3.0.1)
|
303
|
+
|
304
|
+
Bug Fixes:
|
305
|
+
|
306
|
+
* Fix `receive_message_chain(...)` so that it supports `with` just like
|
307
|
+
`stub_chain` did. (Jon Rowe, #697)
|
308
|
+
* Fix regression in `expect_any_instance_of` so that it expects the
|
309
|
+
message on _any_ instance rather than on _every_ instance.
|
310
|
+
(Myron Marston, #699)
|
311
|
+
|
312
|
+
### 3.0.0 / 2014-06-01
|
313
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.0.0.rc1...v3.0.0)
|
314
|
+
|
315
|
+
Bug Fixes:
|
316
|
+
|
317
|
+
* Fix module prepend detection to work properly on ruby 2.0 for a case
|
318
|
+
where a module is extended onto itself. (Myron Marston)
|
319
|
+
* Fix `transfer_nested_constants` option so that transferred constants
|
320
|
+
get properly reset at the end of the example. (Myron Marston)
|
321
|
+
* Fix `config.transfer_nested_constants = true` so that you don't
|
322
|
+
erroneously get errors when stubbing a constant that is not a module
|
323
|
+
or a class. (Myron Marston)
|
324
|
+
* Fix regression that caused `double(:class => SomeClass)` to later
|
325
|
+
trigger infinite recursion. (Myron Marston)
|
326
|
+
* Fix bug in `have_received(...).with(...).ordered` where it was not
|
327
|
+
taking the args into account when checking the order. (Myron Marston)
|
328
|
+
* Fix bug in `have_received(...).ordered` where it was wrongly
|
329
|
+
considering stubs when checking the order. (Myron Marston)
|
330
|
+
* Message expectation matchers now show descriptions from argument
|
331
|
+
matchers when their expectations aren't met. (Jon Rowe)
|
332
|
+
* Display warning when encountering `TypeError` during instance method
|
333
|
+
staging on 2.0.0-p195, suffers from https://bugs.ruby-lang.org/issues/8686
|
334
|
+
too. (Cezar Halmagean).
|
335
|
+
|
336
|
+
### 3.0.0.rc1 / 2014-05-18
|
337
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.0.0.beta2...v3.0.0.rc1)
|
338
|
+
|
339
|
+
Breaking Changes for 3.0.0:
|
340
|
+
|
341
|
+
* Remove `RSpec::Mocks::TestDouble.extend_onto`. (Myron Marston)
|
342
|
+
* Remove `RSpec::Mocks::ConstantStubber`. (Jon Rowe)
|
343
|
+
* Make monkey-patch of Marshal to support dumping of stubbed objects opt-in.
|
344
|
+
(Xavier Shay)
|
345
|
+
|
346
|
+
Enhancements:
|
347
|
+
|
348
|
+
* Instead of crashing when cleaning up stub methods on a frozen object, it now
|
349
|
+
issues a warning explaining that it's impossible to clean up the stubs.
|
350
|
+
(Justin Coyne and Sam Phippen)
|
351
|
+
* Add meaningful descriptions to `anything`, `duck_type` and `instance_of` argument
|
352
|
+
matchers. (Jon Rowe)
|
353
|
+
|
354
|
+
Bug Fixes:
|
355
|
+
|
356
|
+
* Fix regression introduced in 3.0.0.beta2 that caused
|
357
|
+
`double.as_null_object.to_str` to return the double rather
|
358
|
+
than a string. (Myron Marston)
|
359
|
+
* Fix bug in `expect(dbl).to receive_message_chain(:foo, :bar)` where it was
|
360
|
+
not setting an expectation for the last message in the chain.
|
361
|
+
(Jonathan del Strother)
|
362
|
+
* Allow verifying partial doubles to have private methods stubbed. (Xavier Shay)
|
363
|
+
* Fix bug with allowing/expecting messages on Class objects which have had
|
364
|
+
their singleton class prepended to. (Jon Rowe)
|
365
|
+
* Fix an issue with 1.8.7 not running implementation blocks on partial doubles.
|
366
|
+
(Maurício Linhares)
|
367
|
+
* Prevent `StackLevelTooDeep` errors when stubbing an `any_instance` method that's
|
368
|
+
accessed in `inspect` by providing our own inspect output. (Jon Rowe)
|
369
|
+
* Fix bug in `any_instance` logic that did not allow you to mock or stub
|
370
|
+
private methods if `verify_partial_doubles` was configured. (Oren Dobzinski)
|
371
|
+
* Include useful error message when trying to observe an unimplemented method
|
372
|
+
on an any instance. (Xavier Shay)
|
373
|
+
* Fix `and_call_original` to work properly when multiple classes in an
|
374
|
+
inheritance hierarchy have been stubbed with the same method. (Myron Marston)
|
375
|
+
* Fix `any_instance` so that it updates existing instances that have
|
376
|
+
already been stubbed. (Myron Marston)
|
377
|
+
* Fix verified doubles so that their class name is included in failure
|
378
|
+
messages. (Myron Marston)
|
379
|
+
* Fix `expect_any_instance_of` so that when the message is received
|
380
|
+
on an individual instance that has been directly stubbed, it still
|
381
|
+
satisfies the expectation. (Sam Phippen, Myron Marston)
|
382
|
+
* Explicitly disallow using `any_instance` to mock or stub a method
|
383
|
+
that is defined on a module prepended onto the class. This triggered
|
384
|
+
`SystemStackError` before and is very hard to support so we are not
|
385
|
+
supporting it at this time. (Myron Marston)
|
386
|
+
|
387
|
+
### 3.0.0.beta2 / 2014-02-17
|
388
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.0.0.beta1...v3.0.0.beta2)
|
389
|
+
|
390
|
+
Breaking Changes for 3.0.0:
|
391
|
+
|
392
|
+
* Rename `RSpec::Mocks::Mock` to `RSpec::Mocks::Double`. (Myron Marston)
|
393
|
+
* Change how to integrate rspec-mocks in other test frameworks. You now
|
394
|
+
need to include `RSpec::Mocks::ExampleMethods` in your test context.
|
395
|
+
(Myron Marston)
|
396
|
+
* Prevent RSpec mocks' doubles and partial doubles from being used outside of
|
397
|
+
the per-test lifecycle (e.g. from a `before(:all)` hook). (Sam Phippen)
|
398
|
+
* Remove the `host` argument of `RSpec::Mocks.setup`. Instead
|
399
|
+
`RSpec::Mocks::ExampleMethods` should be included directly in the scope where
|
400
|
+
RSpec's mocking capabilities are used. (Sam Phippen)
|
401
|
+
* Make test doubles raise errors if you attempt to use them after they
|
402
|
+
get reset, to help surface issues when you accidentally retain
|
403
|
+
references to test doubles and attempt to reuse them in another
|
404
|
+
example. (Myron Marston)
|
405
|
+
* Remove support for `and_return { value }` and `and_return` without arguments. (Yuji Nakayama)
|
406
|
+
|
407
|
+
Enhancements:
|
408
|
+
|
409
|
+
* Add `receive_message_chain` which provides the functionality of the old
|
410
|
+
`stub_chain` for the new allow/expect syntax. Use it like so: `allow(...).to
|
411
|
+
receive_message_chain(:foo, :bar, :bazz)`. (Sam Phippen).
|
412
|
+
* Change argument matchers to use `===` as their primary matching
|
413
|
+
protocol, since their semantics mirror that of a case or rescue statement
|
414
|
+
(which uses `===` for matching). (Myron Marston)
|
415
|
+
* Add `RSpec::Mocks.with_temporary_scope`, which allows you to create
|
416
|
+
temporary rspec-mocks scopes in arbitrary places (such as a
|
417
|
+
`before(:all)` hook). (Myron Marston)
|
418
|
+
* Support keyword arguments when checking arity with verifying doubles.
|
419
|
+
(Xavier Shay)
|
420
|
+
|
421
|
+
Bug Fixes:
|
422
|
+
|
423
|
+
* Fix regression in 3.0.0.beta1 that caused `double("string_name" => :value)`
|
424
|
+
to stop working. (Xavier Shay)
|
425
|
+
* Fix the way rspec-mocks and rspec-core interact so that if users
|
426
|
+
define a `let` with the same name as one of the methods
|
427
|
+
from `RSpec::Mocks::ArgumentMatchers`, the user's `let` takes
|
428
|
+
precedence. (Michi Huber, Myron Marston)
|
429
|
+
* Fix verified doubles so that their methods match the visibility
|
430
|
+
(public, protected or private) of the interface they verify
|
431
|
+
against. (Myron Marston)
|
432
|
+
* Fix verified null object doubles so that they do not wrongly
|
433
|
+
report that they respond to anything. They only respond to methods
|
434
|
+
available on the interface they verify against. (Myron Marston)
|
435
|
+
* Fix deprecation warning for use of old `:should` syntax w/o explicit
|
436
|
+
config so that it no longer is silenced by an extension gem such
|
437
|
+
as rspec-rails when it calls `config.add_stub_and_should_receive_to`.
|
438
|
+
(Sam Phippen)
|
439
|
+
* Fix `expect` syntax so that it does not wrongly emit a "You're
|
440
|
+
overriding a previous implementation for this stub" warning when
|
441
|
+
you are not actually doing that. (Myron Marston)
|
442
|
+
* Fix `any_instance.unstub` when used on sub classes for whom the super
|
443
|
+
class has had `any_instance.stub` invoked on. (Jon Rowe)
|
444
|
+
* Fix regression in `stub_chain`/`receive_message_chain` that caused
|
445
|
+
it to raise an `ArgumentError` when passing args to the stubbed
|
446
|
+
methods. (Sam Phippen)
|
447
|
+
* Correct stub of undefined parent modules all the way down when stubbing a
|
448
|
+
nested constant. (Xavier Shay)
|
449
|
+
* Raise `VerifyingDoubleNotDefinedError` when a constant is not defined for
|
450
|
+
a verifying class double. (Maurício Linhares)
|
451
|
+
* Remove `Double#to_str`, which caused confusing `raise some_double`
|
452
|
+
behavior. (Maurício Linhares)
|
453
|
+
|
454
|
+
### 3.0.0.beta1 / 2013-11-07
|
455
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.99.4...v3.0.0.beta1)
|
456
|
+
|
457
|
+
Breaking Changes for 3.0.0:
|
458
|
+
|
459
|
+
* Raise an explicit error if `should_not_receive(...).and_return` is used. (Sam
|
460
|
+
Phippen)
|
461
|
+
* Remove 1.8.6 workarounds. (Jon Rowe)
|
462
|
+
* Remove `stub!` and `unstub!`. (Sam Phippen)
|
463
|
+
* Remove `mock(name, methods)` and `stub(name, methods)`, leaving
|
464
|
+
`double(name, methods)` for creating test doubles. (Sam Phippen, Michi Huber)
|
465
|
+
* Remove `any_number_of_times` since `should_receive(:msg).any_number_of_times`
|
466
|
+
is really a stub in a mock's clothing. (Sam Phippen)
|
467
|
+
* Remove support for re-using the same null-object test double in multiple
|
468
|
+
examples. Test doubles are designed to only live for one example.
|
469
|
+
(Myron Marston)
|
470
|
+
* Make `at_least(0)` raise an error. (Sam Phippen)
|
471
|
+
* Remove support for `require 'spec/mocks'` which had been kept
|
472
|
+
in place for backwards compatibility with RSpec 1. (Myron Marston)
|
473
|
+
* Blocks provided to `with` are always used as implementation. (Xavier Shay)
|
474
|
+
* The config option (added in 2.99) to yield the receiver to
|
475
|
+
`any_instance` implementation blocks now defaults to "on". (Sam Phippen)
|
476
|
+
|
477
|
+
Enhancements:
|
478
|
+
|
479
|
+
* Allow the `have_received` matcher to use a block to set further expectations
|
480
|
+
on arguments. (Tim Cowlishaw)
|
481
|
+
* Provide `instance_double` and `class_double` to create verifying doubles,
|
482
|
+
ported from `rspec-fire`. (Xavier Shay)
|
483
|
+
* `as_null_object` on a verifying double only responds to defined methods.
|
484
|
+
(Xavier Shay)
|
485
|
+
* Provide `object_double` to create verified doubles of specific object
|
486
|
+
instances. (Xavier Shay)
|
487
|
+
* Provide `verify_partial_doubles` configuration that provides `object_double`
|
488
|
+
like verification behaviour on partial doubles. (Xavier Shay)
|
489
|
+
* Improved performance of double creation, particularly those with many
|
490
|
+
attributes. (Xavier Shay)
|
491
|
+
* Default value of `transfer_nested_constants` option for constant stubbing can
|
492
|
+
be configured. (Xavier Shay)
|
493
|
+
* Messages can be allowed or expected on in bulk via
|
494
|
+
`receive_messages(:message => :value)`. (Jon Rowe)
|
495
|
+
* `allow(Klass.any_instance)` and `expect(Klass.any_instance)` now print a
|
496
|
+
warning. This is usually a mistake, and users usually want
|
497
|
+
`allow_any_instance_of` or `expect_any_instance_of` instead. (Sam Phippen)
|
498
|
+
* `instance_double` and `class_double` raise `ArgumentError` if the underlying
|
499
|
+
module is loaded and the arity of the method being invoked does not match the
|
500
|
+
arity of the method as it is actually implemented. (Andy Lindeman)
|
501
|
+
* Spies can now check their invocation ordering is correct. (Jon Rowe)
|
502
|
+
|
503
|
+
Deprecations:
|
504
|
+
|
505
|
+
* Using the old `:should` syntax without explicitly configuring it
|
506
|
+
is deprecated. It will continue to work but will emit a deprecation
|
507
|
+
warning in RSpec 3 if you do not explicitly enable it. (Sam Phippen)
|
508
|
+
|
509
|
+
Bug Fixes:
|
510
|
+
|
511
|
+
* Fix `and_call_original` to handle a complex edge case involving
|
512
|
+
singleton class ancestors. (Marc-André Lafortune, Myron Marston)
|
513
|
+
* When generating an error message for unexpected arguments,
|
514
|
+
use `#inspect` rather than `#description` if `#description`
|
515
|
+
returns `nil` or `''` so that you still get a useful message.
|
516
|
+
(Nick DeLuca)
|
517
|
+
|
518
|
+
### 2.99.4 / 2015-06-19
|
519
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.99.3...v2.99.4)
|
520
|
+
|
521
|
+
Bug Fixes:
|
522
|
+
|
523
|
+
* Add missing deprecation for using `with` with no arguments e.g. `with()`. (Yousuke, #970)
|
524
|
+
|
525
|
+
### 2.99.3 / 2015-01-09
|
526
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.99.2...v2.99.3)
|
527
|
+
|
528
|
+
Bug Fixes:
|
529
|
+
|
530
|
+
* Fix regression that caused an error when a test double was deserialized from YAML. (Yuji Nakayama, #777)
|
531
|
+
|
532
|
+
### 2.99.2 / 2014-07-21
|
533
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.99.1...v2.99.2)
|
534
|
+
|
535
|
+
Enhancements:
|
536
|
+
|
537
|
+
* Warn about upcoming change to `#===` matching and `DateTime#===` behaviour.
|
538
|
+
(Jon Rowe, #735)
|
539
|
+
|
540
|
+
### 2.99.1 / 2014-06-12
|
541
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.99.0...v2.99.1)
|
542
|
+
|
543
|
+
Bug Fixes:
|
544
|
+
|
545
|
+
* Fix bug that caused errors at the end of each example
|
546
|
+
when a `double.as_null_object` had been frozen. (Yuji Nakayama, #698)
|
547
|
+
|
548
|
+
Deprecations:
|
549
|
+
|
550
|
+
* Deprecate freezing a test double. (Yuji Nakayama, #698)
|
551
|
+
|
552
|
+
### 2.99.0 / 2014-06-01
|
553
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.99.0.rc1...v2.99.0)
|
554
|
+
|
555
|
+
No changes. Just taking it out of pre-release.
|
556
|
+
|
557
|
+
### 2.99.0.rc1 / 2014-05-18
|
558
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.99.0.beta2...v2.99.0.rc1)
|
559
|
+
|
560
|
+
Deprecations:
|
561
|
+
|
562
|
+
* Deprecate `RSpec::Mocks::TestDouble.extend_onto`. (Myron Marston)
|
563
|
+
* Deprecate `RSpec::Mocks::ConstantStubber`. (Jon Rowe)
|
564
|
+
* Deprecate `Marshal.dump` monkey-patch without opt-in. (Xavier Shay)
|
565
|
+
|
566
|
+
### 2.99.0.beta2 / 2014-02-17
|
567
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.99.0.beta1...v2.99.0.beta2)
|
568
|
+
|
569
|
+
Deprecations:
|
570
|
+
|
571
|
+
* Deprecate `RSpec::Mocks::Mock` in favor of `RSpec::Mocks::Double`.
|
572
|
+
(Myron Marston)
|
573
|
+
* Deprecate the `host` argument of `RSpec::Mocks.setup`. Instead
|
574
|
+
`RSpec::Mocks::ExampleMethods` should be included directly in the scope where
|
575
|
+
RSpec's mocking capabilities are used. (Sam Phippen)
|
576
|
+
* Deprecate using any of rspec-mocks' features outside the per-test
|
577
|
+
lifecycle (e.g. from a `before(:all)` hook). (Myron Marston)
|
578
|
+
* Deprecate re-using a test double in another example. (Myron Marston)
|
579
|
+
* Deprecate `and_return { value }` and `and_return` without arguments. (Yuji Nakayama)
|
580
|
+
|
581
|
+
### 2.99.0.beta1 / 2013-11-07
|
582
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.14.4...v2.99.0.beta1)
|
583
|
+
|
584
|
+
Deprecations
|
585
|
+
|
586
|
+
* Expecting to use lambdas or other strong arity implementations for stub
|
587
|
+
methods with mis-matched arity is deprecated and support for them will be
|
588
|
+
removed in 3.0. Either provide the right amount of arguments or use a weak
|
589
|
+
arity implementation (methods with splats or procs). (Jon Rowe)
|
590
|
+
* Using the same test double instance in multiple examples is deprecated. Test
|
591
|
+
doubles are only meant to live for one example. The mocks and stubs have
|
592
|
+
always been reset between examples; however, in 2.x the `as_null_object`
|
593
|
+
state was not reset and some users relied on this to have a null object
|
594
|
+
double that is used for many examples. This behavior will be removed in 3.0.
|
595
|
+
(Myron Marston)
|
596
|
+
* Print a detailed warning when an `any_instance` implementation block is used
|
597
|
+
when the new `yield_receiver_to_any_instance_implementation_blocks` config
|
598
|
+
option is not explicitly set, as RSpec 3.0 will default to enabling this new
|
599
|
+
feature. (Sam Phippen)
|
600
|
+
|
601
|
+
Enhancements:
|
602
|
+
|
603
|
+
* Add a config option to yield the receiver to `any_instance` implementation
|
604
|
+
blocks. (Sam Phippen)
|
605
|
+
|
606
|
+
### 2.14.6 / 2014-02-20
|
607
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.14.5...v2.14.6)
|
608
|
+
|
609
|
+
Bug Fixes:
|
610
|
+
|
611
|
+
* Ensure `any_instance` method stubs and expectations are torn down regardless of
|
612
|
+
expectation failures. (Sam Phippen)
|
613
|
+
|
614
|
+
### 2.14.5 / 2014-02-01
|
615
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.14.4...v2.14.5)
|
616
|
+
|
617
|
+
Bug Fixes:
|
618
|
+
|
619
|
+
* Fix regression that caused block implementations to not receive all
|
620
|
+
args on 1.8.7 if the block also receives a block, due to Proc#arity
|
621
|
+
reporting `1` no matter how many args the block receives if it
|
622
|
+
receives a block, too. (Myron Marston)
|
623
|
+
|
624
|
+
### 2.14.4 / 2013-10-15
|
625
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.14.3...v2.14.4)
|
626
|
+
|
627
|
+
Bug Fixes:
|
628
|
+
|
629
|
+
* Fix issue where unstubing methods on "any instances" would not
|
630
|
+
remove stubs on existing instances (Jon Rowe)
|
631
|
+
* Fix issue with receive(:message) do ... end precedence preventing
|
632
|
+
the usage of modifications (`and_return` etc) (Jon Rowe)
|
633
|
+
|
634
|
+
### 2.14.3 / 2013-08-08
|
635
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.14.2...v2.14.3)
|
636
|
+
|
637
|
+
Bug Fixes:
|
638
|
+
|
639
|
+
* Fix stubbing some instance methods for classes whose hierarchy includes
|
640
|
+
a prepended Module (Bradley Schaefer)
|
641
|
+
|
642
|
+
### 2.14.2 / 2013-07-30
|
643
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.14.1...v2.14.2)
|
644
|
+
|
645
|
+
Bug Fixes:
|
646
|
+
|
647
|
+
* Fix `as_null_object` doubles so that they return `nil` from `to_ary`
|
648
|
+
(Jon Rowe).
|
649
|
+
* Fix regression in 2.14 that made `stub!` (with an implicit receiver)
|
650
|
+
return a test double rather than stub a method (Myron Marston).
|
651
|
+
|
652
|
+
### 2.14.1 / 2013-07-07
|
653
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.14.0...v2.14.1)
|
654
|
+
|
655
|
+
Bug Fixes:
|
656
|
+
|
657
|
+
* Restore `double.as_null_object` behavior from 2.13 and earlier: a
|
658
|
+
double's nullness persisted between examples in earlier examples.
|
659
|
+
While this is not an intended use case (test doubles are meant to live
|
660
|
+
for only one example), we don't want to break behavior users rely
|
661
|
+
on in a minor relase. This will be deprecated in 2.99 and removed
|
662
|
+
in 3.0. (Myron Marston)
|
663
|
+
|
664
|
+
### 2.14.0 / 2013-07-06
|
665
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.14.0.rc1...v2.14.0)
|
666
|
+
|
667
|
+
Enhancements:
|
668
|
+
|
669
|
+
* Document test spies in the readme. (Adarsh Pandit)
|
670
|
+
* Add an `array_including` matcher. (Sam Phippen)
|
671
|
+
* Add a syntax-agnostic API for mocking or stubbing a method. This is
|
672
|
+
intended for use by libraries such as rspec-rails that need to mock
|
673
|
+
or stub a method, and work regardless of the syntax the user has
|
674
|
+
configured (Paul Annesley, Myron Marston and Sam Phippen).
|
675
|
+
|
676
|
+
Bug Fixes:
|
677
|
+
|
678
|
+
* Fix `double` so that it sets up passed stubs correctly regardless of
|
679
|
+
the configured syntax (Paul Annesley).
|
680
|
+
* Allow a block implementation to be used in combination with
|
681
|
+
`and_yield`, `and_raise`, `and_return` or `and_throw`. This got fixed
|
682
|
+
in 2.13.1 but failed to get merged into master for the 2.14.0.rc1
|
683
|
+
release (Myron Marston).
|
684
|
+
* `Marshal.dump` does not unnecessarily duplicate objects when rspec-mocks has
|
685
|
+
not been fully initialized. This could cause errors when using `spork` or
|
686
|
+
similar preloading gems (Andy Lindeman).
|
687
|
+
|
688
|
+
### 2.14.0.rc1 / 2013-05-27
|
689
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.13.0...v2.14.0.rc1)
|
690
|
+
|
691
|
+
Enhancements:
|
692
|
+
|
693
|
+
* Refactor internals so that the mock proxy methods and state are held
|
694
|
+
outside of the mocked object rather than inside it. This paves the way
|
695
|
+
for future syntax enhancements and removes the need for some hacky
|
696
|
+
work arounds for `any_instance` dup'ing and `YAML` serialization,
|
697
|
+
among other things. Note that the code now relies upon `__id__`
|
698
|
+
returning a unique, consistent value for any object you want to
|
699
|
+
mock or stub (Myron Marston).
|
700
|
+
* Add support for test spies. This allows you to verify a message
|
701
|
+
was received afterwards using the `have_received` matcher.
|
702
|
+
Note that you must first stub the method or use a null double.
|
703
|
+
(Joe Ferris and Joël Quenneville)
|
704
|
+
* Make `at_least` and `at_most` style receive expectations print that they were
|
705
|
+
expecting at least or at most some number of calls, rather than just the
|
706
|
+
number of calls given in the expectation (Sam Phippen)
|
707
|
+
* Make `with` style receive expectations print the args they were expecting, and
|
708
|
+
the args that they got (Sam Phippen)
|
709
|
+
* Fix some warnings seen under ruby 2.0.0p0 (Sam Phippen).
|
710
|
+
* Add a new `:expect` syntax for message expectations
|
711
|
+
(Myron Marston and Sam Phippen).
|
712
|
+
|
713
|
+
Bug fixes
|
714
|
+
|
715
|
+
* Fix `any_instance` so that a frozen object can be `dup`'d when methods
|
716
|
+
have been stubbed on that type using `any_instance` (Jon Rowe).
|
717
|
+
* Fix `and_call_original` so that it properly raises an `ArgumentError`
|
718
|
+
when the wrong number of args are passed (Jon Rowe).
|
719
|
+
* Fix `double` on 1.9.2 so you can wrap them in an Array
|
720
|
+
using `Array(my_double)` (Jon Rowe).
|
721
|
+
* Fix `stub_const` and `hide_const` to handle constants that redefine `send`
|
722
|
+
(Sam Phippen).
|
723
|
+
* Fix `Marshal.dump` extension so that it correctly handles nil.
|
724
|
+
(Luke Imhoff, Jon Rowe)
|
725
|
+
* Fix isolation of `allow_message_expectations_on_nil` (Jon Rowe)
|
726
|
+
* Use inspect to format actual arguments on expectations in failure messages (#280, Ben Langfeld)
|
727
|
+
* Protect against improperly initialised test doubles (#293) (Joseph Shraibman and Jon Rowe)
|
728
|
+
|
729
|
+
Deprecations
|
730
|
+
|
731
|
+
* Deprecate `stub` and `mock` as aliases for `double`. `double` is the
|
732
|
+
best term for creating a test double, and it reduces confusion to
|
733
|
+
have only one term (Michi Huber).
|
734
|
+
* Deprecate `stub!` and `unstub!` in favor of `stub` and `unstub`
|
735
|
+
(Jon Rowe).
|
736
|
+
* Deprecate `at_least(0).times` and `any_number_of_times` (Michi Huber).
|
737
|
+
|
738
|
+
### 2.13.1 / 2013-04-06
|
739
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.13.0...v2.13.1)
|
740
|
+
|
741
|
+
Bug fixes
|
742
|
+
|
743
|
+
* Allow a block implementation to be used in combination with
|
744
|
+
`and_yield`, `and_raise`, `and_return` or `and_throw` (Myron Marston).
|
745
|
+
|
746
|
+
### 2.13.0 / 2013-02-23
|
747
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.12.2...v2.13.0)
|
748
|
+
|
749
|
+
Bug fixes
|
750
|
+
|
751
|
+
* Fix bug that caused weird behavior when a method that had
|
752
|
+
previously been stubbed with multiple return values (e.g.
|
753
|
+
`obj.stub(:foo).and_return(1, 2)`) was later mocked with a
|
754
|
+
single return value (e.g. `obj.should_receive(:foo).once.and_return(1)`).
|
755
|
+
(Myron Marston)
|
756
|
+
* Fix bug related to a mock expectation for a method that already had
|
757
|
+
multiple stubs with different `with` constraints. Previously, the
|
758
|
+
first stub was used, even though it may not have matched the passed
|
759
|
+
args. The fix defers this decision until the message is received so
|
760
|
+
that the proper stub response can be chosen based on the passed
|
761
|
+
arguments (Myron Marston).
|
762
|
+
* Do not call `nil?` extra times on a mocked object, in case `nil?`
|
763
|
+
itself is expected a set number of times (Myron Marston).
|
764
|
+
* Fix `missing_default_stub_error` message so array args are handled
|
765
|
+
properly (Myron Marston).
|
766
|
+
* Explicitly disallow `any_instance.unstub!` (Ryan Jones).
|
767
|
+
* Fix `any_instance` stubbing so that it works with `Delegator`
|
768
|
+
subclasses (Myron Marston).
|
769
|
+
* Fix `and_call_original` so that it works with `Delegator` subclasses
|
770
|
+
(Myron Marston).
|
771
|
+
* Fix `any_instance.should_not_receive` when `any_instance.should_receive`
|
772
|
+
is used on the same class in the same example. Previously it would
|
773
|
+
wrongly report a failure even when the message was not received
|
774
|
+
(Myron Marston).
|
775
|
+
|
776
|
+
### 2.12.2 / 2013-01-27
|
777
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.12.1...v.2.12.2)
|
778
|
+
|
779
|
+
Bug fixes
|
780
|
+
|
781
|
+
* Fix `and_call_original` to work properly for methods defined
|
782
|
+
on a module extended onto an object instance (Myron Marston).
|
783
|
+
* Fix `stub_const` with an undefined constnat name to work properly
|
784
|
+
with constant strings that are prefixed with `::` -- and edge case
|
785
|
+
I missed in the bug fix in the 2.12.1 release (Myron Marston).
|
786
|
+
* Ensure method visibility on a partial mock is restored after reseting
|
787
|
+
method stubs, even on a singleton module (created via `extend self`)
|
788
|
+
when the method visibility differs between the instance and singleton
|
789
|
+
versions (Andy Lindeman).
|
790
|
+
|
791
|
+
### 2.12.1 / 2012-12-21
|
792
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.12.0...v2.12.1)
|
793
|
+
|
794
|
+
Bug fixes
|
795
|
+
|
796
|
+
* Fix `any_instance` to support `and_call_original`.
|
797
|
+
(Myron Marston)
|
798
|
+
* Properly restore stubbed aliased methods on rubies
|
799
|
+
that report the incorrect owner (Myron Marston and Andy Lindeman).
|
800
|
+
* Fix `hide_const` and `stub_const` with a defined constnat name to
|
801
|
+
work properly with constant strings that are prefixed with `::` (Myron Marston).
|
802
|
+
|
803
|
+
### 2.12.0 / 2012-11-12
|
804
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.11.3...v2.12.0)
|
805
|
+
|
806
|
+
Enhancements
|
807
|
+
|
808
|
+
* `and_raise` can accept an exception class and message, more closely
|
809
|
+
matching `Kernel#raise` (e.g., `foo.stub(:bar).and_raise(RuntimeError, "message")`)
|
810
|
+
(Bas Vodde)
|
811
|
+
* Add `and_call_original`, which will delegate the message to the
|
812
|
+
original method (Myron Marston).
|
813
|
+
|
814
|
+
Deprecations:
|
815
|
+
|
816
|
+
* Add deprecation warning when using `and_return` with `should_not_receive`
|
817
|
+
(Neha Kumari)
|
818
|
+
|
819
|
+
### 2.11.3 / 2012-09-19
|
820
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.11.2...v2.11.3)
|
821
|
+
|
822
|
+
Bug fixes
|
823
|
+
|
824
|
+
* Fix `:transfer_nested_constants` option of `stub_const` so that it
|
825
|
+
doesn't blow up when there are inherited constants. (Myron Marston)
|
826
|
+
* `any_instance` stubs can be used on classes that override `Object#method`.
|
827
|
+
(Andy Lindeman)
|
828
|
+
* Methods stubbed with `any_instance` are unstubbed after the test finishes.
|
829
|
+
(Andy Lindeman)
|
830
|
+
* Fix confusing error message when calling a mocked class method an
|
831
|
+
extra time with the wrong arguments (Myron Marston).
|
832
|
+
|
833
|
+
### 2.11.2 / 2012-08-11
|
834
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.11.1...v2.11.2)
|
835
|
+
|
836
|
+
Bug fixes
|
837
|
+
|
838
|
+
* Don't modify `dup` on classes that don't support `dup` (David Chelimsky)
|
839
|
+
* Fix `any_instance` so that it works properly with methods defined on
|
840
|
+
a superclass. (Daniel Eguzkiza)
|
841
|
+
* Fix `stub_const` so that it works properly for nested constants that
|
842
|
+
share a name with a top-level constant (e.g. "MyGem::Hash"). (Myron
|
843
|
+
Marston)
|
844
|
+
|
845
|
+
### 2.11.1 / 2012-07-09
|
846
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.11.0...v2.11.1)
|
847
|
+
|
848
|
+
Bug fixes
|
849
|
+
|
850
|
+
* Fix `should_receive` so that when it is called on an `as_null_object`
|
851
|
+
double with no implementation, and there is a previous explicit stub
|
852
|
+
for the same method, the explicit stub remains (rather than being
|
853
|
+
overriden with the null object implementation--`return self`). (Myron Marston)
|
854
|
+
|
855
|
+
### 2.11.0 / 2012-07-07
|
856
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.10.1...v2.11.0)
|
857
|
+
|
858
|
+
Enhancements
|
859
|
+
|
860
|
+
* Expose ArgumentListMatcher as a formal API
|
861
|
+
* supports use by 3rd party mock frameworks like Surrogate
|
862
|
+
* Add `stub_const` API to stub constants for the duration of an
|
863
|
+
example (Myron Marston).
|
864
|
+
|
865
|
+
Bug fixes
|
866
|
+
|
867
|
+
* Fix regression of edge case behavior. `double.should_receive(:foo) { a }`
|
868
|
+
was causing a NoMethodError when `double.stub(:foo).and_return(a, b)`
|
869
|
+
had been setup before (Myron Marston).
|
870
|
+
* Infinite loop generated by using `any_instance` and `dup`. (Sidu Ponnappa @kaiwren)
|
871
|
+
* `double.should_receive(:foo).at_least(:once).and_return(a)` always returns a
|
872
|
+
even if `:foo` is already stubbed.
|
873
|
+
* Prevent infinite loop when interpolating a null double into a string
|
874
|
+
as an integer (`"%i" % double.as_null_object`). (Myron Marston)
|
875
|
+
* Fix `should_receive` so that null object behavior (e.g. returning
|
876
|
+
self) is preserved if no implementation is given (Myron Marston).
|
877
|
+
* Fix `and_raise` so that it raises `RuntimeError` rather than
|
878
|
+
`Exception` by default, just like ruby does. (Andrew Marshall)
|
879
|
+
|
880
|
+
### 2.10.1 / 2012-05-05
|
881
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.10.0...v2.10.1)
|
882
|
+
|
883
|
+
Bug fixes
|
884
|
+
|
885
|
+
* fix regression of edge case behavior
|
886
|
+
(https://github.com/rspec/rspec-mocks/issues/132)
|
887
|
+
* fixed failure of `object.should_receive(:message).at_least(0).times.and_return value`
|
888
|
+
* fixed failure of `object.should_not_receive(:message).and_return value`
|
889
|
+
|
890
|
+
### 2.10.0 / 2012-05-03
|
891
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.9.0...v2.10.0)
|
892
|
+
|
893
|
+
Bug fixes
|
894
|
+
|
895
|
+
* fail fast when an `exactly` or `at_most` expectation is exceeded
|
896
|
+
|
897
|
+
### 2.9.0 / 2012-03-17
|
898
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.8.0...v2.9.0)
|
899
|
+
|
900
|
+
Enhancements
|
901
|
+
|
902
|
+
* Support order constraints across objects (preethiramdev)
|
903
|
+
|
904
|
+
Bug fixes
|
905
|
+
|
906
|
+
* Allow a `as_null_object` to be passed to `with`
|
907
|
+
* Pass proc to block passed to stub (Aubrey Rhodes)
|
908
|
+
* Initialize child message expectation args to match any args (#109 -
|
909
|
+
preethiramdev)
|
910
|
+
|
911
|
+
### 2.8.0 / 2012-01-04
|
912
|
+
|
913
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.8.0.rc2...v2.8.0)
|
914
|
+
|
915
|
+
No changes for this release. Just releasing with the other rspec gems.
|
916
|
+
|
917
|
+
### 2.8.0.rc2 / 2011-12-19
|
918
|
+
|
919
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.8.0.rc1...v2.8.0.rc2)
|
920
|
+
|
921
|
+
No changes for this release. Just releasing with the other rspec gems.
|
922
|
+
|
923
|
+
### 2.8.0.rc1 / 2011-11-06
|
924
|
+
|
925
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.7.0...v2.8.0.rc1)
|
926
|
+
|
927
|
+
Enhancements
|
928
|
+
|
929
|
+
* Eliminate Ruby warnings (Matijs van Zuijlen)
|
930
|
+
|
931
|
+
### 2.7.0 / 2011-10-16
|
932
|
+
|
933
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.6.0...v2.7.0)
|
934
|
+
|
935
|
+
Enhancements
|
936
|
+
|
937
|
+
* Use `__send__` rather than `send` (alextk)
|
938
|
+
* Add support for `any_instance.stub_chain` (Sidu Ponnappa)
|
939
|
+
* Add support for `any_instance` argument matching based on `with` (Sidu
|
940
|
+
Ponnappa and Andy Lindeman)
|
941
|
+
|
942
|
+
Changes
|
943
|
+
|
944
|
+
* Check for `failure_message_for_should` or `failure_message` instead of
|
945
|
+
`description` to detect a matcher (Tibor Claassen)
|
946
|
+
|
947
|
+
Bug fixes
|
948
|
+
|
949
|
+
* pass a hash to `any_instance.stub`. (Justin Ko)
|
950
|
+
* allow `to_ary` to be called without raising `NoMethodError` (Mikhail
|
951
|
+
Dieterle)
|
952
|
+
* `any_instance` properly restores private methods (Sidu Ponnappa)
|
953
|
+
|
954
|
+
### 2.6.0 / 2011-05-12
|
955
|
+
|
956
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.5.0...v2.6.0)
|
957
|
+
|
958
|
+
Enhancements
|
959
|
+
|
960
|
+
* Add support for `any_instance.stub` and `any_instance.should_receive` (Sidu
|
961
|
+
Ponnappa and Andy Lindeman)
|
962
|
+
|
963
|
+
Bug fixes
|
964
|
+
|
965
|
+
* fix bug in which multiple chains with shared messages ending in hashes failed
|
966
|
+
to return the correct value
|
967
|
+
|
968
|
+
### 2.5.0 / 2011-02-05
|
969
|
+
|
970
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.4.0...v2.5.0)
|
971
|
+
|
972
|
+
Bug fixes
|
973
|
+
|
974
|
+
* message expectation counts now work in combination with a stub (Damian
|
975
|
+
Nurzynski)
|
976
|
+
* fix failure message when message received with incorrect args (Josep M.
|
977
|
+
Bach)
|
978
|
+
|
979
|
+
### 2.4.0 / 2011-01-02
|
980
|
+
|
981
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.3.0...v2.4.0)
|
982
|
+
|
983
|
+
No functional changes in this release, which was made to align with the
|
984
|
+
rspec-core-2.4.0 release.
|
985
|
+
|
986
|
+
### 2.3.0 / 2010-12-12
|
987
|
+
|
988
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.2.0...v2.3.0)
|
989
|
+
|
990
|
+
Bug fixes
|
991
|
+
|
992
|
+
* Fix our Marshal extension so that it does not interfere with objects that
|
993
|
+
have their own `@mock_proxy` instance variable. (Myron Marston)
|
994
|
+
|
995
|
+
### 2.2.0 / 2010-11-28
|
996
|
+
|
997
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.1.0...v2.2.0)
|
998
|
+
|
999
|
+
Enhancements
|
1000
|
+
|
1001
|
+
* Added "rspec/mocks/standalone" for exploring the rspec-mocks in irb.
|
1002
|
+
|
1003
|
+
Bug fix
|
1004
|
+
|
1005
|
+
* Eliminate warning on splat args without parens (Gioele Barabucci)
|
1006
|
+
* Fix bug where `obj.should_receive(:foo).with(stub.as_null_object)` would pass
|
1007
|
+
with a false positive.
|
1008
|
+
|
1009
|
+
### 2.1.0 / 2010-11-07
|
1010
|
+
|
1011
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.0.1...v2.1.0)
|
1012
|
+
|
1013
|
+
Bug fixes
|
1014
|
+
|
1015
|
+
* Fix serialization of stubbed object (Josep M Bach)
|
1016
|
+
|
1017
|
+
### 2.0.0 / 2010-10-10
|
1018
|
+
|
1019
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.0.0.beta.22...v2.0.0)
|
1020
|
+
|
1021
|
+
### 2.0.0.rc / 2010-10-05
|
1022
|
+
|
1023
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.0.0.beta.22...v2.0.0.rc)
|
1024
|
+
|
1025
|
+
Enhancements
|
1026
|
+
|
1027
|
+
* support passing a block to an expectation block (Nicolas Braem)
|
1028
|
+
* `obj.should_receive(:msg) {|&block| ... }`
|
1029
|
+
|
1030
|
+
Bug fixes
|
1031
|
+
|
1032
|
+
* Fix YAML serialization of stub (Myron Marston)
|
1033
|
+
* Fix rdoc rake task (Hans de Graaff)
|
1034
|
+
|
1035
|
+
### 2.0.0.beta.22 / 2010-09-12
|
1036
|
+
|
1037
|
+
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v2.0.0.beta.20...v2.0.0.beta.22)
|
1038
|
+
|
1039
|
+
Bug fixes
|
1040
|
+
|
1041
|
+
* fixed regression that broke `obj.stub_chain(:a, :b => :c)`
|
1042
|
+
* fixed regression that broke `obj.stub_chain(:a, :b) { :c }`
|
1043
|
+
* `respond_to?` always returns true when using `as_null_object`
|