rspec-retry_ex 0.1.0.patch

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: dbbd5da505af6e01c6bb342c435b36fa813a328d89300cd12ddb4f28533ab725
4
+ data.tar.gz: 6bd820cb2f02673eeee83cfd6f3fa5f17966a4b8e01f6ebd5da3486e18c9efbf
5
+ SHA512:
6
+ metadata.gz: 47c20ed516a6f6b265399313f21d032b1b5ed662c1f9e5249796c051d659350d8f133a2463813f6496216a658c24498062ad6eada2b86b63e21372a338b1fb75
7
+ data.tar.gz: 0ed51e735eb46776420899cffe0cff41ae43d2ab606049098a0144d087030901a7ce6a2a354fa9e0fd1f0039702f788db4cd3e74f0e625e21f8fba8b59c4191c
data/.codeclimate.yml ADDED
@@ -0,0 +1,15 @@
1
+ engines:
2
+ duplication:
3
+ enabled: true
4
+ config:
5
+ languages:
6
+ - ruby
7
+ fixme:
8
+ enabled: true
9
+ rubocop:
10
+ enabled: false
11
+ ratings:
12
+ paths:
13
+ - "**.rb"
14
+ exclude_paths:
15
+ - spec/
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ Gemfile.lock
10
+ gemfiles/*.lock
11
+ gemfiles/.bundle
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,28 @@
1
+ AllCops:
2
+ Exclude:
3
+ - rspec-retry_ex.gemspec
4
+ - tmp/**/*
5
+ - Rakefile
6
+ - Gemfile
7
+ - spec/spec_helper.rb
8
+
9
+ Metrics/LineLength:
10
+ Max: 100
11
+
12
+ Style/Documentation:
13
+ Enabled: false
14
+
15
+ Style/StringLiterals:
16
+ EnforcedStyle: double_quotes
17
+
18
+ Layout/IndentationConsistency:
19
+ EnforcedStyle: normal
20
+
21
+ Metrics/CyclomaticComplexity:
22
+ Max: 10
23
+
24
+ Style/TrailingCommaInArrayLiteral:
25
+ EnforcedStyleForMultiline: comma
26
+
27
+ Style/TrailingCommaInHashLiteral:
28
+ EnforcedStyleForMultiline: comma
data/.travis.yml ADDED
@@ -0,0 +1,33 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.2.10
5
+ - 2.3.8
6
+ - 2.4.5
7
+ - 2.5.3
8
+ gemfile:
9
+ - gemfiles/rspec_33x.gemfile
10
+ - gemfiles/rspec_34x.gemfile
11
+ - gemfiles/rspec_35x.gemfile
12
+ - gemfiles/rspec_36x.gemfile
13
+ - gemfiles/rspec_37x.gemfile
14
+ - gemfiles/rspec_38x.gemfile
15
+ branches:
16
+ only:
17
+ - master
18
+ before_install:
19
+ - gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
20
+ - gem install bundler -v '< 2'
21
+ before_script:
22
+ - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
23
+ - chmod +x ./cc-test-reporter
24
+ - ./cc-test-reporter before-build
25
+ script:
26
+ - bundle exec rspec spec
27
+ - rubocop
28
+ after_script:
29
+ - |
30
+ if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
31
+ ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT;
32
+ fi
33
+
data/Appraisals ADDED
@@ -0,0 +1,23 @@
1
+ appraise "rspec-33x" do
2
+ gem "rspec", "~> 3.3.0"
3
+ end
4
+
5
+ appraise "rspec-34x" do
6
+ gem "rspec", "~> 3.4.0"
7
+ end
8
+
9
+ appraise "rspec-35x" do
10
+ gem "rspec", "~> 3.5.0"
11
+ end
12
+
13
+ appraise "rspec-36x" do
14
+ gem "rspec", "~> 3.6.0"
15
+ end
16
+
17
+ appraise "rspec-37x" do
18
+ gem "rspec", "~> 3.7.0"
19
+ end
20
+
21
+ appraise "rspec-38x" do
22
+ gem "rspec", "~> 3.8.0"
23
+ end
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at yuya.taki@enechange.co.jp. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in rspec-retry_ex.gemspec
6
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 yuyasat
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,80 @@
1
+ # RSpec::RetryEx
2
+ [![Build Status](https://travis-ci.org/yuyasat/rspec-retry_ex.svg?branch=master)](https://travis-ci.org/yuyasat/rspec-retry_ex)
3
+ [![Maintainability](https://api.codeclimate.com/v1/badges/e5524b7a5cd965dd362e/maintainability)](https://codeclimate.com/github/yuyasat/rspec-retry_ex/maintainability)
4
+ [![Test Coverage](https://api.codeclimate.com/v1/badges/e5524b7a5cd965dd362e/test_coverage)](https://codeclimate.com/github/yuyasat/rspec-retry_ex/test_coverage)
5
+
6
+ RSpec::RetryEx retrys failing rspec "expect" instead of "example", "it" or "scenario".
7
+
8
+ ## Motivation
9
+ Feature test or System test sometimes fails randomely. There are so many reasons for failing. One of them is that the browser does not response smoothly to JavaScript animation. However it responses somoothly in a few tries. As a result, a few retries should be executed in feature test of system test.
10
+
11
+ Thanks to [spec-retry](https://github.com/NoRedInk/rspec-retry) gem, a few retries can be executed by "scenario" unit. However we sometimes want to try to retry by "expect" unit because the scenario is so long and most "expect"s usually pass and specific "expect" often fails.
12
+
13
+ ## Installation
14
+
15
+ Add this line to your application's Gemfile:
16
+
17
+ ```ruby
18
+ gem 'rspec-retry_ex'
19
+ ```
20
+
21
+ And then execute:
22
+
23
+ $ bundle
24
+
25
+ Or install it yourself as:
26
+
27
+ $ gem install rspec-retry_ex
28
+
29
+ require in spec_helper.rb or rails_helper.rb
30
+
31
+ ```ruby
32
+ include RSpec::RetryEx
33
+ ```
34
+
35
+ ## Usage
36
+
37
+ Surround target "expect" with `retry_ex` method.
38
+
39
+ ```ruby
40
+ scenario "Some scenario" do
41
+ visit "/some_page"
42
+
43
+ fill_in "postcode", with: "1300012"
44
+ retry_ex(count: 3) do
45
+ expect(page).to have_select("ward", selected: "Sumida")
46
+ end
47
+ end
48
+ ```
49
+
50
+ Some codes can be added when the test fails with "before_retry" or "after_retry" option.
51
+
52
+ ```ruby
53
+ scenario "Some scenario" do
54
+ visit "/some_page"
55
+
56
+ fill_in "postcode", with: "1300012"
57
+
58
+ # These codes are executed after the retry fails
59
+ after_retry = -> {
60
+ fill_in "postcode", with: "1000004"
61
+ fill_in "postcode", with: "1300012"
62
+ }
63
+ retry_ex(count: 3, after_retry: after_retry) do
64
+ expect(page).to have_select("ward", selected: "Sumida")
65
+ end
66
+ end
67
+ ```
68
+
69
+ ## Contributing
70
+ You should follow the steps below:
71
+
72
+ 1. Fork the repository
73
+ 2. Create a feature branch: `git checkout -b add-new-feature`
74
+ 3. Commit your changes: `git commit -am 'Add new feature'`
75
+ 4. Push the branch: `git push origin add-new-feature`
76
+ 4. Send us a pull request
77
+
78
+ ## License
79
+
80
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "rspec/retry_ex"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rspec", "~> 3.3.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rspec", "~> 3.4.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rspec", "~> 3.5.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rspec", "~> 3.6.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rspec", "~> 3.7.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rspec", "~> 3.8.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,12 @@
1
+ require "rspec/retry_ex/retry_handler"
2
+
3
+ module RSpec
4
+ module RetryEx
5
+ def retry_ex(**options)
6
+ handler = RetryHandler.new(options)
7
+ handler.run do
8
+ yield
9
+ end
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,68 @@
1
+ module RSpec
2
+ module RetryEx
3
+ class RetryHandler
4
+ def initialize(**options)
5
+ @count = options[:count] || 1
6
+ @before_retry = options[:before_retry]
7
+ @after_retry = options[:after_retry]
8
+ @counter = 0
9
+ end
10
+
11
+ def run
12
+ call_around_retry(before_retry) if @counter > 0
13
+ @counter += 1
14
+ yield
15
+ success_message
16
+ rescue RSpec::Expectations::ExpectationNotMetError, Selenium::WebDriver::Error::WebDriverError => e
17
+ call_around_retry(after_retry)
18
+ failure_message(e, count)
19
+ retry if @counter < count
20
+ raise e
21
+ end
22
+
23
+ private
24
+
25
+ attr_reader :count, :before_retry, :after_retry
26
+
27
+ def call_around_retry(around_retry)
28
+ return if around_retry.nil?
29
+
30
+ around_retry.call
31
+ end
32
+
33
+ def success_message
34
+ return unless @counter > 1
35
+
36
+ message = "Congratulations! #{ordinalize(@counter)} try has succeeded!.\n"
37
+ RSpec.configuration.reporter.message(message)
38
+ end
39
+
40
+ def failure_message(error, count)
41
+ message = "#{ordinalize(@counter)} try has failed.\n"
42
+ message += "=> #{error}" if @counter == count
43
+ RSpec.configuration.reporter.message(message)
44
+ end
45
+
46
+ # borrowed from ActiveSupport::Inflector
47
+ # rubocop:disable Metrics/MethodLength
48
+ def ordinalize(number)
49
+ case number
50
+ when 1 then "1st"
51
+ when 2 then "2nd"
52
+ when 3 then "3rd"
53
+ when 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 then "#{number}th"
54
+ else
55
+ num_modulo = number.to_i.abs % 100
56
+ num_modulo %= 10 if num_modulo > 13
57
+ case num_modulo
58
+ when 1 then "#{number}st"
59
+ when 2 then "#{number}nd"
60
+ when 3 then "#{number}rd"
61
+ else "#{number}th"
62
+ end
63
+ end
64
+ end
65
+ # rubocop:enable Metrics/MethodLength
66
+ end
67
+ end
68
+ end
@@ -0,0 +1,5 @@
1
+ module RSpec
2
+ module RetryEx
3
+ VERSION = "0.1.0.patch".freeze
4
+ end
5
+ end
@@ -0,0 +1,32 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "rspec/retry_ex/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "rspec-retry_ex"
8
+ spec.version = RSpec::RetryEx::VERSION
9
+ spec.authors = ["yuyasat"]
10
+ spec.email = ["yuya.taki@users.noreply.github.com"]
11
+
12
+ spec.summary = "retry rspec one target `expect`"
13
+ spec.description = "retry rspec one target `expect` instead of one `secenario` or `it`"
14
+ spec.homepage = "https://github.com/yuyasat/rspec-retry_ex"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+ spec.bindir = "exe"
21
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
+ spec.require_paths = ["lib"]
23
+
24
+ spec.add_runtime_dependency(%{rspec-core}, '>3.3')
25
+ spec.add_development_dependency "bundler", "~> 1.16"
26
+ spec.add_development_dependency "rake", "~> 10.0"
27
+ spec.add_development_dependency "rspec"
28
+ spec.add_development_dependency "rubocop"
29
+ spec.add_development_dependency "pry"
30
+ spec.add_development_dependency "appraisal"
31
+ spec.add_development_dependency "simplecov"
32
+ end
metadata ADDED
@@ -0,0 +1,178 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rspec-retry_ex
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0.patch
5
+ platform: ruby
6
+ authors:
7
+ - yuyasat
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-06-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec-core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.3'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.16'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.16'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rubocop
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: pry
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: appraisal
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: simplecov
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ description: retry rspec one target `expect` instead of one `secenario` or `it`
126
+ email:
127
+ - yuya.taki@users.noreply.github.com
128
+ executables: []
129
+ extensions: []
130
+ extra_rdoc_files: []
131
+ files:
132
+ - ".codeclimate.yml"
133
+ - ".gitignore"
134
+ - ".rspec"
135
+ - ".rubocop.yml"
136
+ - ".travis.yml"
137
+ - Appraisals
138
+ - CODE_OF_CONDUCT.md
139
+ - Gemfile
140
+ - LICENSE.txt
141
+ - README.md
142
+ - Rakefile
143
+ - bin/console
144
+ - bin/setup
145
+ - gemfiles/rspec_33x.gemfile
146
+ - gemfiles/rspec_34x.gemfile
147
+ - gemfiles/rspec_35x.gemfile
148
+ - gemfiles/rspec_36x.gemfile
149
+ - gemfiles/rspec_37x.gemfile
150
+ - gemfiles/rspec_38x.gemfile
151
+ - lib/rspec/retry_ex.rb
152
+ - lib/rspec/retry_ex/retry_handler.rb
153
+ - lib/rspec/retry_ex/version.rb
154
+ - rspec-retry_ex.gemspec
155
+ homepage: https://github.com/yuyasat/rspec-retry_ex
156
+ licenses:
157
+ - MIT
158
+ metadata: {}
159
+ post_install_message:
160
+ rdoc_options: []
161
+ require_paths:
162
+ - lib
163
+ required_ruby_version: !ruby/object:Gem::Requirement
164
+ requirements:
165
+ - - ">="
166
+ - !ruby/object:Gem::Version
167
+ version: '0'
168
+ required_rubygems_version: !ruby/object:Gem::Requirement
169
+ requirements:
170
+ - - ">"
171
+ - !ruby/object:Gem::Version
172
+ version: 1.3.1
173
+ requirements: []
174
+ rubygems_version: 3.0.3
175
+ signing_key:
176
+ specification_version: 4
177
+ summary: retry rspec one target `expect`
178
+ test_files: []