capybara 3.5.0 → 3.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ccbb47ddccdce3cfd6a790bd2af929bf21f0dff5a9c284c1798fced5de3deef0
4
- data.tar.gz: abcbaadffc9b324fcb05601b14a923a051471de760c6a290acd4c020f7f53428
3
+ metadata.gz: 3c416e36d54b64d622c2a65481f5f60b3ca81618e8b8288accebe3d1aca55083
4
+ data.tar.gz: dc271c3d46f477b3b9930647a55ec826bd477bc5c3b371fa39b3e02bbc916284
5
5
  SHA512:
6
- metadata.gz: dee7228b9108ed669bf8796cfe024a49594b8820f5b0899118d49a90ecd8616453ec42b5467b0a833156ae0f10ff57df3e627f2b2e164ad4edc68fcef7cc0e6e
7
- data.tar.gz: 7de8b0aa5ab6b9565b17732a61e6e693b431806c33cb2d64098f3f2d6d0440383af96f2930cff0197b11e92059e48878210a4254309320eeaf73f0cf470b256f
6
+ metadata.gz: c7e961f7131054a93ba9213e9a258f163e99f5a9484e6ba6ea1a2868ac0db435967e64bab16d382d5db04b6a485582c05da82bf4fb94b9f6403ca333b3c82a27
7
+ data.tar.gz: f8b5c7a34e33813e687ba31a9e4eee74ede985e725d1755093eab20a0d3a30e6ceb7cb05529403cb42ea3e0b77cea52db3b9b43ab61c697ba2e57a312dd5f49b
data/History.md CHANGED
@@ -1,3 +1,10 @@
1
+ # Version 3.5.1
2
+ Release date: 2018-08-03
3
+
4
+ ### Fixed
5
+
6
+ * Fixed misspelled method name `refute_matches_elector` => `refute_matches_selector`
7
+
1
8
  # Version 3.5.0
2
9
  Release date: 2018-08-01
3
10
 
data/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![SemVer](https://api.dependabot.com/badges/compatibility_score?dependency-name=capybara&package-manager=bundler&version-scheme=semver)](https://dependabot.com/compatibility-score.html?dependency-name=capybara&package-manager=bundler&version-scheme=semver)
8
8
 
9
9
  **Note** You are viewing the README for the development version of Capybara. If you are using the current release version
10
- you can find the README at https://github.com/teamcapybara/capybara/blob/3.4_stable/README.md
10
+ you can find the README at https://github.com/teamcapybara/capybara/blob/3.5_stable/README.md
11
11
 
12
12
 
13
13
  Capybara helps you test web applications by simulating how a real user would
@@ -540,7 +540,7 @@ module Capybara
540
540
 
541
541
  # Deprecated
542
542
  # TODO: remove
543
- def refute_matches_elector(*args, &optional_filter_block)
543
+ def refute_matches_selector(*args, &optional_filter_block)
544
544
  warn '`refute_matches_selector` was never meant to be in this scope unless ' \
545
545
  'using minitest. Either replace with `assert_not_matches_selector` ' \
546
546
  "or require 'capybara/minitest'."
@@ -632,7 +632,7 @@ module Capybara
632
632
  # @option options [Range] :between (nil) Range of times that is expected to contain number of times text occurs
633
633
  # @option options [Numeric] :wait (Capybara.default_max_wait_time) Maximum time that Capybara will wait for text to eq/match given string/regexp argument
634
634
  # @option options [Boolean] :exact (Capybara.exact_text) Whether text must be an exact match or just substring
635
- # @option options [Boolean] :nomalize_ws (false) When true replace all whitespace with standard spaces and collapse consecutive whitespace to a single space
635
+ # @option options [Boolean] :normalize_ws (false) When true replace all whitespace with standard spaces and collapse consecutive whitespace to a single space
636
636
  # @overload $0(text, **options)
637
637
  # @param [String, Regexp] text The string/regexp to check for. If it's a string, text is expected to include it. If it's a regexp, text is expected to match it.
638
638
  # @option options [Integer] :count (nil) Number of times the text is expected to occur
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Capybara
4
- VERSION = '3.5.0'
4
+ VERSION = '3.5.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capybara
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.0
4
+ version: 3.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Walpole
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain:
12
12
  - gem-public_cert.pem
13
- date: 2018-08-01 00:00:00.000000000 Z
13
+ date: 2018-08-03 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: addressable