capybara_minitest_spec 1.0.3 → 1.0.4

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
  SHA1:
3
- metadata.gz: 65c26b16230169c745419f1c9a725b8ad8e41256
4
- data.tar.gz: 38814db2a9bace6306c5c21d362c5c06b4b05c65
3
+ metadata.gz: 1f845bf6cfe7da9df03c2b5d0b46f5aa43f306b1
4
+ data.tar.gz: efcf30bd10718f5d74d4363e5f396ffbaf3f32c3
5
5
  SHA512:
6
- metadata.gz: a075db9aadd318f956e88b51bc074d15a71d3b653fa9f54bd7739646d2d2b15501df82b1f08b78f810ab7d3eede082180f9f023183f96580f3d790bb733adcd8
7
- data.tar.gz: fd2e5b7cf9642db96948eaf9e552f7f4584a2aecc015abf2a73d02242ba4c65f7f24008357fec3e15659eadb24943fa6893c8e8ea6b6bed11c16f347cdbe0f89
6
+ metadata.gz: 724d4b2b57f0b35929b540a1b824b51f88ba3566dffd18c1af5e38400393ee36dc7f54e2d0472bcb796158342cd207f3a905c50949c693adc9a54aafa76a2c31
7
+ data.tar.gz: 5b452065188b95c4c12073bc6d7380536bb107e9b39caa54391f633bc2603a322e33b674100c869e043ed7a6d2d1501a0b1d9ae1ce76230f0f350ccafb0668d1
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- capybara_minitest_spec (1.0.3)
4
+ capybara_minitest_spec (1.0.4)
5
5
  capybara (>= 2)
6
6
  minitest (>= 2)
7
7
 
@@ -9,7 +9,7 @@ GEM
9
9
  remote: http://rubygems.org/
10
10
  specs:
11
11
  awesome_print (1.2.0)
12
- capybara (2.4.1)
12
+ capybara (2.4.4)
13
13
  mime-types (>= 1.16)
14
14
  nokogiri (>= 1.3.3)
15
15
  rack (>= 1.0.0)
@@ -17,7 +17,7 @@ GEM
17
17
  xpath (~> 2.0)
18
18
  mime-types (2.3)
19
19
  mini_portile (0.6.0)
20
- minitest (5.4.0)
20
+ minitest (5.4.2)
21
21
  nokogiri (1.6.3.1)
22
22
  mini_portile (= 0.6.0)
23
23
  rack (1.5.2)
data/README.md CHANGED
@@ -37,7 +37,7 @@ assert_page_has_content?('<h1>Content</h1>', 'No such Text')
37
37
  # fails with 'expected there to be text "No such Text" in "Content"'
38
38
  ```
39
39
 
40
- You can see all the available matchers [here] (https://github.com/jnicklas/capybara/blob/master/lib/capybara/rspec/matchers.rb#L104).
40
+ You can see all the available matchers [here] (https://github.com/jnicklas/capybara/blob/master/lib/capybara/rspec/matchers.rb).
41
41
  CapybaraMiniTestSpec iterates through those "have_x" methods and creates corresponding MiniTest assertions/expectations.
42
42
 
43
43
  ## Install
@@ -1,6 +1,6 @@
1
1
  require "capybara_minitest_spec/version"
2
2
 
3
- require 'minitest/autorun'
3
+ require 'minitest'
4
4
  require 'minitest/spec'
5
5
  require 'capybara'
6
6
  require 'capybara/rspec/matchers'
@@ -1,3 +1,3 @@
1
1
  module CapybaraMiniTestSpec
2
- VERSION = '1.0.3'
2
+ VERSION = '1.0.4'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capybara_minitest_spec
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jared Ning
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-28 00:00:00.000000000 Z
11
+ date: 2014-10-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capybara
@@ -94,7 +94,6 @@ files:
94
94
  - ".travis.yml"
95
95
  - Gemfile
96
96
  - Gemfile.lock
97
- - HISTORY.md
98
97
  - LICENSE.txt
99
98
  - README.md
100
99
  - Rakefile
data/HISTORY.md DELETED
File without changes