rspec-temp_dir 1.1.1 → 1.1.3
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 +4 -4
- data/.github/dependabot.yml +20 -0
- data/.github/release.yml +31 -0
- data/.github/workflows/dependabot-manager.yml +28 -0
- data/.github/workflows/pages.yml +18 -0
- data/.github/workflows/release_gem.yml +14 -0
- data/.github/workflows/test.yml +70 -64
- data/.yardopts +2 -0
- data/CHANGELOG.md +13 -1
- data/Gemfile +8 -0
- data/README.md +2 -2
- data/lib/rspec/temp_dir/version.rb +1 -1
- data/rspec-temp_dir.gemspec +5 -1
- metadata +53 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9ba07930bc4ca52be5ce3a0e91c43a2d95a45e48f3878d90951b6ffed364438d
|
|
4
|
+
data.tar.gz: 39793ef2bf29cbd27fafa7f8eb47d237452907b03909d9d4777add3556e04436
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c23c811df78f13765dee4a5c55f7faeb9093280d6f338f1072d41e12cd4f223f3fec6bd0ca47a1138bdacafa171f93439c48e73057811b8fc5e672d495436ced
|
|
7
|
+
data.tar.gz: 7fdaec625d57065418d8341c236fb06481ba102b1e1e34dd743807cbed78a16ceaff4e80d40cc581dbf54ddf46326cea071d56ff7c07dad47080fe058eeebe1c
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# c.f. https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
|
2
|
+
version: 2
|
|
3
|
+
|
|
4
|
+
updates:
|
|
5
|
+
###########################################################
|
|
6
|
+
# NOTE: following sections are auto generated. DO NOT EDIT!
|
|
7
|
+
###########################################################
|
|
8
|
+
- package-ecosystem: github-actions
|
|
9
|
+
directory: /
|
|
10
|
+
schedule:
|
|
11
|
+
interval: monthly
|
|
12
|
+
time: "05:00"
|
|
13
|
+
timezone: Asia/Tokyo
|
|
14
|
+
assignees:
|
|
15
|
+
- sue445
|
|
16
|
+
cooldown:
|
|
17
|
+
default-days: 7
|
|
18
|
+
exclude:
|
|
19
|
+
- ruby/setup-ruby
|
|
20
|
+
###########################################################
|
data/.github/release.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# ref. https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuring-automatically-generated-release-notes
|
|
2
|
+
|
|
3
|
+
changelog:
|
|
4
|
+
exclude:
|
|
5
|
+
labels:
|
|
6
|
+
- chore
|
|
7
|
+
|
|
8
|
+
categories:
|
|
9
|
+
- title: ":bomb: Breaking Changes"
|
|
10
|
+
labels:
|
|
11
|
+
- breaking change
|
|
12
|
+
|
|
13
|
+
- title: ":lock: Security Fix"
|
|
14
|
+
labels:
|
|
15
|
+
- security
|
|
16
|
+
|
|
17
|
+
- title: ":rocket: Features"
|
|
18
|
+
labels:
|
|
19
|
+
- enhancement
|
|
20
|
+
|
|
21
|
+
- title: ":bug: Bug Fixes"
|
|
22
|
+
labels:
|
|
23
|
+
- bug
|
|
24
|
+
|
|
25
|
+
- title: ":dependabot: Dependency updates"
|
|
26
|
+
labels:
|
|
27
|
+
- dependencies
|
|
28
|
+
|
|
29
|
+
- title: ":pencil: Other Changes"
|
|
30
|
+
labels:
|
|
31
|
+
- "*"
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
name: dependabot-manager
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
types:
|
|
6
|
+
- opened
|
|
7
|
+
- synchronize # PR branch is rebased
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
dependabot-auto-merge:
|
|
11
|
+
uses: sue445/workflows/.github/workflows/dependabot-auto-merge.yml@main
|
|
12
|
+
with:
|
|
13
|
+
repo-name: sue445/rspec-temp_dir
|
|
14
|
+
secrets:
|
|
15
|
+
# TODO: Set secrets to Dependabot secrets
|
|
16
|
+
app-id: ${{ secrets.GH_APP_ID }}
|
|
17
|
+
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
|
18
|
+
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
|
19
|
+
|
|
20
|
+
dependabot-security-alert:
|
|
21
|
+
uses: sue445/workflows/.github/workflows/dependabot-security-alert.yml@main
|
|
22
|
+
with:
|
|
23
|
+
repo-name: sue445/rspec-temp_dir
|
|
24
|
+
secrets:
|
|
25
|
+
# TODO: Set secrets to Dependabot secrets
|
|
26
|
+
app-id: ${{ secrets.GH_APP_ID }}
|
|
27
|
+
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
|
28
|
+
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
name: Deploy yard to Pages
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- master
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
permissions:
|
|
10
|
+
contents: read
|
|
11
|
+
pages: write
|
|
12
|
+
id-token: write
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
deploy:
|
|
16
|
+
uses: sue445/workflows/.github/workflows/pages-yard.yml@main
|
|
17
|
+
secrets:
|
|
18
|
+
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
name: Publish gem to rubygems.org
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
release:
|
|
8
|
+
uses: sue445/workflows/.github/workflows/release_gem.yml@main
|
|
9
|
+
with:
|
|
10
|
+
repo-name: sue445/rspec-temp_dir
|
|
11
|
+
gem-name: rspec-temp_dir
|
|
12
|
+
permissions:
|
|
13
|
+
contents: write
|
|
14
|
+
id-token: write
|
data/.github/workflows/test.yml
CHANGED
|
@@ -12,102 +12,108 @@ on:
|
|
|
12
12
|
schedule:
|
|
13
13
|
- cron: "0 10 * * 5" # JST 19:00 (Fri)
|
|
14
14
|
|
|
15
|
-
env:
|
|
16
|
-
CI: "true"
|
|
17
|
-
|
|
18
15
|
jobs:
|
|
19
16
|
test:
|
|
20
17
|
runs-on: ubuntu-latest
|
|
21
18
|
|
|
22
|
-
container: ${{ matrix.ruby }}
|
|
23
|
-
|
|
24
19
|
strategy:
|
|
25
20
|
fail-fast: false
|
|
26
21
|
|
|
27
22
|
matrix:
|
|
28
23
|
ruby:
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
-
|
|
24
|
+
- "2.0"
|
|
25
|
+
- "2.1"
|
|
26
|
+
- "2.2"
|
|
27
|
+
- "2.3"
|
|
28
|
+
- "2.4"
|
|
29
|
+
- "2.5"
|
|
30
|
+
- "2.6"
|
|
31
|
+
- "2.7"
|
|
32
|
+
- "3.0"
|
|
33
|
+
- "3.1"
|
|
34
|
+
- "3.2"
|
|
35
|
+
- "3.3"
|
|
36
|
+
- "3.4"
|
|
37
|
+
- "4.0"
|
|
38
|
+
|
|
39
39
|
include:
|
|
40
|
-
|
|
41
|
-
|
|
40
|
+
# FIXME: Workaround for "ArgumentError: wrong number of arguments (given 4, expected 1)"
|
|
41
|
+
# c.f. https://github.com/ruby/setup-ruby#rubygems
|
|
42
|
+
- ruby: "2.5"
|
|
43
|
+
rubygems: "3.0.0"
|
|
42
44
|
|
|
43
45
|
steps:
|
|
44
|
-
- uses: actions/checkout@
|
|
46
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
45
47
|
|
|
48
|
+
# FIXME: Workaround for error in `bundle clean`
|
|
49
|
+
# /opt/hostedtoolcache/Ruby/2.5.9/x64/bin/bundle clean
|
|
50
|
+
# Cleaning all the gems on your system is dangerous! If you're sure you want to
|
|
51
|
+
# remove every system gem not in this bundle, run `bundle clean --force`.
|
|
52
|
+
- name: export BUNDLE_PATH
|
|
53
|
+
run: echo "BUNDLE_PATH=vendor/bundle" >> $GITHUB_ENV
|
|
54
|
+
if: matrix.ruby == '2.5'
|
|
46
55
|
|
|
47
|
-
-
|
|
48
|
-
uses: actions/cache@v1
|
|
49
|
-
id: cache_gem
|
|
56
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
50
57
|
with:
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
58
|
+
ruby-version: ${{ matrix.ruby }}
|
|
59
|
+
bundler-cache: true
|
|
60
|
+
rubygems: ${{ matrix.rubygems || 'default' }}
|
|
61
|
+
|
|
62
|
+
- run: bundle update --all --jobs $(nproc) --retry 3
|
|
63
|
+
|
|
64
|
+
- run: bundle exec rspec
|
|
65
|
+
|
|
66
|
+
- name: Slack Notification (not success)
|
|
67
|
+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
|
|
68
|
+
if: "! success()"
|
|
69
|
+
continue-on-error: true
|
|
70
|
+
with:
|
|
71
|
+
status: ${{ job.status }}
|
|
72
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
73
|
+
matrix: ${{ toJson(matrix) }}
|
|
74
|
+
|
|
75
|
+
yard:
|
|
76
|
+
runs-on: ubuntu-latest
|
|
77
|
+
|
|
78
|
+
steps:
|
|
79
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
80
|
+
|
|
81
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
82
|
+
with:
|
|
83
|
+
ruby-version: ruby
|
|
84
|
+
bundler-cache: true
|
|
56
85
|
|
|
57
86
|
- name: bundle update
|
|
58
87
|
run: |
|
|
59
88
|
set -xe
|
|
60
89
|
bundle config path vendor/bundle
|
|
61
|
-
bundle update --jobs $(nproc) --retry 3
|
|
62
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
63
|
-
|
|
64
|
-
- name: Setup Code Climate Test Reporter
|
|
65
|
-
uses: aktions/codeclimate-test-reporter@v1
|
|
66
|
-
with:
|
|
67
|
-
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
68
|
-
command: before-build
|
|
69
|
-
if: matrix.ruby >= 'ruby:2.4'
|
|
70
|
-
continue-on-error: true
|
|
90
|
+
bundle update --all --jobs $(nproc) --retry 3
|
|
71
91
|
|
|
72
|
-
- name:
|
|
92
|
+
- name: yard generating test
|
|
73
93
|
run: |
|
|
74
94
|
set -xe
|
|
75
|
-
bundle exec
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
- name: Teardown Code Climate Test Reporter
|
|
79
|
-
uses: aktions/codeclimate-test-reporter@v1
|
|
80
|
-
with:
|
|
81
|
-
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
82
|
-
command: after-build
|
|
83
|
-
if: matrix.ruby >= 'ruby:2.4' && always()
|
|
84
|
-
continue-on-error: true
|
|
95
|
+
bundle exec yard
|
|
96
|
+
ls -ld doc/
|
|
85
97
|
|
|
86
98
|
- name: Slack Notification (not success)
|
|
87
|
-
uses:
|
|
99
|
+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
|
|
88
100
|
if: "! success()"
|
|
89
101
|
continue-on-error: true
|
|
90
102
|
with:
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
103
|
+
status: ${{ job.status }}
|
|
104
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
105
|
+
|
|
106
|
+
all-pass:
|
|
107
|
+
if: always()
|
|
96
108
|
|
|
97
|
-
notify:
|
|
98
109
|
needs:
|
|
99
110
|
- test
|
|
111
|
+
- yard
|
|
100
112
|
|
|
101
|
-
runs-on: ubuntu-
|
|
113
|
+
runs-on: ubuntu-slim
|
|
102
114
|
|
|
103
115
|
steps:
|
|
104
|
-
- name:
|
|
105
|
-
uses:
|
|
106
|
-
if: always()
|
|
107
|
-
continue-on-error: true
|
|
116
|
+
- name: check dependent jobs
|
|
117
|
+
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
|
|
108
118
|
with:
|
|
109
|
-
|
|
110
|
-
type: ${{ job.status }}
|
|
111
|
-
icon_emoji: ":octocat:"
|
|
112
|
-
url: ${{ secrets.SLACK_WEBHOOK }}
|
|
113
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
|
119
|
+
jobs: ${{ toJSON(needs) }}
|
data/.yardopts
ADDED
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
## master
|
|
3
|
-
[full changelog](http://github.com/sue445/rspec-temp_dir/compare/v1.1.
|
|
3
|
+
[full changelog](http://github.com/sue445/rspec-temp_dir/compare/v1.1.3...master)
|
|
4
|
+
|
|
5
|
+
## [v1.1.3](https://github.com/sue445/rspec-temp_dir/releases/tag/v1.1.3)
|
|
6
|
+
[full changelog](http://github.com/sue445/rspec-temp_dir/compare/v1.1.2...v1.1.3)
|
|
7
|
+
|
|
8
|
+
* Migrate release_gem workflow to sue445/workflows (Also testing the gem release)
|
|
9
|
+
* https://github.com/sue445/rspec-temp_dir/pull/103
|
|
10
|
+
|
|
11
|
+
## [v1.1.2](https://github.com/sue445/rspec-temp_dir/releases/tag/v1.1.2)
|
|
12
|
+
[full changelog](http://github.com/sue445/rspec-temp_dir/compare/v1.1.1...v1.1.2)
|
|
13
|
+
|
|
14
|
+
* Release gem from GitHub Actions
|
|
15
|
+
* https://github.com/sue445/rspec-temp_dir/pull/63
|
|
4
16
|
|
|
5
17
|
## v1.1.1
|
|
6
18
|
[full changelog](http://github.com/sue445/rspec-temp_dir/compare/v1.1.0...v1.1.1)
|
data/Gemfile
CHANGED
|
@@ -11,6 +11,9 @@ end
|
|
|
11
11
|
if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.3.0")
|
|
12
12
|
# NOTE: json 2.6.0+ requires Ruby 2.3.0+
|
|
13
13
|
gem "json", "< 2.6.0"
|
|
14
|
+
|
|
15
|
+
# NOTE: webrick 1.4.0+ requires Ruby 2.3.0+
|
|
16
|
+
gem "webrick", "< 1.4.0"
|
|
14
17
|
end
|
|
15
18
|
|
|
16
19
|
if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.4.0")
|
|
@@ -22,3 +25,8 @@ if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.5.0")
|
|
|
22
25
|
# NOTE: docile v1.4.0+ requires Ruby 2.5.0+
|
|
23
26
|
gem "docile", "< 1.4.0"
|
|
24
27
|
end
|
|
28
|
+
|
|
29
|
+
if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.7.0")
|
|
30
|
+
# term-ansicolor 1.9.0+ doesn't work on Ruby < 2.7
|
|
31
|
+
gem "term-ansicolor", "< 1.9.0"
|
|
32
|
+
end
|
data/README.md
CHANGED
|
@@ -5,8 +5,8 @@ create automatically temporary directory at each examples
|
|
|
5
5
|
This is inspired by Junit [TemporaryFolder](http://junit.org/junit4/javadoc/4.12/org/junit/rules/TemporaryFolder.html)
|
|
6
6
|
|
|
7
7
|
[](http://badge.fury.io/rb/rspec-temp_dir)
|
|
8
|
-
[](https://github.com/sue445/rspec-temp_dir/actions/workflows/test.yml)
|
|
9
|
+
[](https://qlty.sh/gh/sue445/projects/rspec-temp_dir)
|
|
10
10
|
[](https://coveralls.io/r/sue445/rspec-temp_dir)
|
|
11
11
|
|
|
12
12
|
## Requirements
|
data/rspec-temp_dir.gemspec
CHANGED
|
@@ -16,6 +16,7 @@ Gem::Specification.new do |spec|
|
|
|
16
16
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
17
17
|
spec.metadata["source_code_uri"] = spec.homepage
|
|
18
18
|
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
|
|
19
|
+
spec.metadata["documentation_uri"] = "https://sue445.github.io/rspec-temp_dir/"
|
|
19
20
|
spec.metadata["rubygems_mfa_required"] = "true"
|
|
20
21
|
|
|
21
22
|
spec.files = `git ls-files -z`.split("\x0")
|
|
@@ -28,7 +29,10 @@ Gem::Specification.new do |spec|
|
|
|
28
29
|
spec.add_dependency "rspec", ">= 3.0"
|
|
29
30
|
|
|
30
31
|
spec.add_development_dependency "bundler"
|
|
31
|
-
spec.add_development_dependency "
|
|
32
|
+
spec.add_development_dependency "coveralls_reborn"
|
|
32
33
|
spec.add_development_dependency "rake"
|
|
34
|
+
spec.add_development_dependency "rdoc"
|
|
33
35
|
spec.add_development_dependency "simplecov"
|
|
36
|
+
spec.add_development_dependency "term-ansicolor", "!= 1.11.1" # ref. https://github.com/flori/term-ansicolor/issues/41
|
|
37
|
+
spec.add_development_dependency "yard"
|
|
34
38
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspec-temp_dir
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: rspec
|
|
@@ -39,7 +38,7 @@ dependencies:
|
|
|
39
38
|
- !ruby/object:Gem::Version
|
|
40
39
|
version: '0'
|
|
41
40
|
- !ruby/object:Gem::Dependency
|
|
42
|
-
name:
|
|
41
|
+
name: coveralls_reborn
|
|
43
42
|
requirement: !ruby/object:Gem::Requirement
|
|
44
43
|
requirements:
|
|
45
44
|
- - ">="
|
|
@@ -66,6 +65,20 @@ dependencies:
|
|
|
66
65
|
- - ">="
|
|
67
66
|
- !ruby/object:Gem::Version
|
|
68
67
|
version: '0'
|
|
68
|
+
- !ruby/object:Gem::Dependency
|
|
69
|
+
name: rdoc
|
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '0'
|
|
75
|
+
type: :development
|
|
76
|
+
prerelease: false
|
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '0'
|
|
69
82
|
- !ruby/object:Gem::Dependency
|
|
70
83
|
name: simplecov
|
|
71
84
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -80,6 +93,34 @@ dependencies:
|
|
|
80
93
|
- - ">="
|
|
81
94
|
- !ruby/object:Gem::Version
|
|
82
95
|
version: '0'
|
|
96
|
+
- !ruby/object:Gem::Dependency
|
|
97
|
+
name: term-ansicolor
|
|
98
|
+
requirement: !ruby/object:Gem::Requirement
|
|
99
|
+
requirements:
|
|
100
|
+
- - "!="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: 1.11.1
|
|
103
|
+
type: :development
|
|
104
|
+
prerelease: false
|
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - "!="
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: 1.11.1
|
|
110
|
+
- !ruby/object:Gem::Dependency
|
|
111
|
+
name: yard
|
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
|
113
|
+
requirements:
|
|
114
|
+
- - ">="
|
|
115
|
+
- !ruby/object:Gem::Version
|
|
116
|
+
version: '0'
|
|
117
|
+
type: :development
|
|
118
|
+
prerelease: false
|
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
120
|
+
requirements:
|
|
121
|
+
- - ">="
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: '0'
|
|
83
124
|
description: create automatically temporary directory at each examples
|
|
84
125
|
email:
|
|
85
126
|
- sue445@sue445.net
|
|
@@ -88,9 +129,15 @@ extensions: []
|
|
|
88
129
|
extra_rdoc_files: []
|
|
89
130
|
files:
|
|
90
131
|
- ".coveralls.yml"
|
|
132
|
+
- ".github/dependabot.yml"
|
|
133
|
+
- ".github/release.yml"
|
|
134
|
+
- ".github/workflows/dependabot-manager.yml"
|
|
135
|
+
- ".github/workflows/pages.yml"
|
|
136
|
+
- ".github/workflows/release_gem.yml"
|
|
91
137
|
- ".github/workflows/test.yml"
|
|
92
138
|
- ".gitignore"
|
|
93
139
|
- ".rspec"
|
|
140
|
+
- ".yardopts"
|
|
94
141
|
- CHANGELOG.md
|
|
95
142
|
- Gemfile
|
|
96
143
|
- LICENSE.txt
|
|
@@ -111,8 +158,8 @@ metadata:
|
|
|
111
158
|
homepage_uri: https://github.com/sue445/rspec-temp_dir
|
|
112
159
|
source_code_uri: https://github.com/sue445/rspec-temp_dir
|
|
113
160
|
changelog_uri: https://github.com/sue445/rspec-temp_dir/blob/master/CHANGELOG.md
|
|
161
|
+
documentation_uri: https://sue445.github.io/rspec-temp_dir/
|
|
114
162
|
rubygems_mfa_required: 'true'
|
|
115
|
-
post_install_message:
|
|
116
163
|
rdoc_options: []
|
|
117
164
|
require_paths:
|
|
118
165
|
- lib
|
|
@@ -127,8 +174,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
127
174
|
- !ruby/object:Gem::Version
|
|
128
175
|
version: '0'
|
|
129
176
|
requirements: []
|
|
130
|
-
rubygems_version:
|
|
131
|
-
signing_key:
|
|
177
|
+
rubygems_version: 4.0.16
|
|
132
178
|
specification_version: 4
|
|
133
179
|
summary: create automatically temporary directory at each examples
|
|
134
180
|
test_files:
|