danger-spm_version_updates 0.1.0 → 0.1.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 +4 -4
- data/.editorconfig +15 -0
- data/.github/workflows/docs.yml +43 -0
- data/.github/workflows/lint_and_test.yml +6 -1
- data/.github/workflows/push_gem.yml +26 -0
- data/.github/workflows/readme.yml +21 -0
- data/.gitignore +135 -3
- data/.idea/.gitignore +8 -0
- data/.idea/danger-plugin-spm-version-updates.iml +130 -0
- data/.idea/misc.xml +4 -0
- data/.idea/modules.xml +8 -0
- data/.idea/vcs.xml +6 -0
- data/.markdownlint.jsonc +6 -0
- data/.rubocop.yml +289 -4
- data/Gemfile +1 -1
- data/Gemfile.lock +109 -53
- data/README.md +35 -7
- data/Rakefile +2 -0
- data/danger-spm_version_updates.gemspec +11 -7
- data/lib/spm_version_updates/gem_version.rb +1 -1
- data/lib/spm_version_updates/plugin.rb +35 -19
- data/spec/spec_helper.rb +0 -6
- data/spec/spm_version_updates_spec.rb +36 -0
- data/spec/support/fixtures/Branch.xcodeproj/project.pbxproj +80 -0
- data/spec/support/fixtures/Branch.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +265 -0
- data/spec/support/fixtures/VersionRange.xcodeproj/project.pbxproj +81 -0
- data/spec/support/fixtures/VersionRange.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +265 -0
- data/spec/support/fixtures/github_pr.json +6 -16
- metadata +90 -26
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b4b25309d2ebf835c0a6f0a13d22605cc95ef04aab3b73b48d2f780c273bec47
|
4
|
+
data.tar.gz: 0421f910cdbbba4b4b39912510a5272b898e2ecf0b420e7bb50211d3fc2c3f97
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55238e841c8c1509667baf8dc4f44116eb4d3a792d24527bad0c00093daa69fc796155637489c986d4b5aecfa99a30122400cd98d3959b3678b747e3036b0270
|
7
|
+
data.tar.gz: 85af80394fffbb6ec7779b633022b8d6315defd422731e49827b135081620e5b004624ec5980fff6878ba11df0e2ee0e2378b02849f379c557fab519207e0cc5
|
data/.editorconfig
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
root = true
|
2
|
+
|
3
|
+
[*]
|
4
|
+
end_of_line = lf
|
5
|
+
insert_final_newline = true
|
6
|
+
charset = utf-8
|
7
|
+
trim_trailing_whitespace = true
|
8
|
+
|
9
|
+
[*.{rb,yml,gemspec}]
|
10
|
+
indent_style = space
|
11
|
+
indent_size = 2
|
12
|
+
|
13
|
+
[Dangerfile, Rakefile, Guardfile, Gemfile]
|
14
|
+
indent_style = space
|
15
|
+
indent_size = 2
|
@@ -0,0 +1,43 @@
|
|
1
|
+
name: Publish Yard HTML to GitHub Pages
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
tags:
|
6
|
+
- "*"
|
7
|
+
workflow_dispatch:
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
build:
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
steps:
|
13
|
+
- uses: actions/checkout@v3
|
14
|
+
- name: Set up Ruby
|
15
|
+
uses: ruby/setup-ruby@v1
|
16
|
+
with:
|
17
|
+
ruby-version: 3.2
|
18
|
+
bundler-cache: true
|
19
|
+
- name: Build HTML docs
|
20
|
+
run: bundle exec yard
|
21
|
+
- name: Upload artifact
|
22
|
+
uses: actions/upload-pages-artifact@v2
|
23
|
+
with:
|
24
|
+
path: ./doc
|
25
|
+
deploy:
|
26
|
+
needs: build
|
27
|
+
|
28
|
+
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
|
29
|
+
permissions:
|
30
|
+
pages: write # to deploy to Pages
|
31
|
+
id-token: write # to verify the deployment originates from an appropriate source
|
32
|
+
|
33
|
+
# Deploy to the github-pages environment
|
34
|
+
environment:
|
35
|
+
name: github-pages
|
36
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
37
|
+
|
38
|
+
# Specify runner + deployment step
|
39
|
+
runs-on: ubuntu-latest
|
40
|
+
steps:
|
41
|
+
- name: Deploy to GitHub Pages
|
42
|
+
id: deployment
|
43
|
+
uses: actions/deploy-pages@v2 # or the latest "vX.X.X" version tag for this action
|
@@ -11,7 +11,6 @@ jobs:
|
|
11
11
|
strategy:
|
12
12
|
matrix:
|
13
13
|
ruby-version:
|
14
|
-
- "2.7"
|
15
14
|
- "3.0"
|
16
15
|
- "3.1"
|
17
16
|
- "3.2"
|
@@ -25,3 +24,9 @@ jobs:
|
|
25
24
|
bundler-cache: true
|
26
25
|
- name: Running Tests
|
27
26
|
run: bundle exec rake spec
|
27
|
+
- name: Upload coverage reports to Codecov
|
28
|
+
uses: codecov/codecov-action@v4
|
29
|
+
with:
|
30
|
+
fail_ci_if_error: true
|
31
|
+
env:
|
32
|
+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
name: Push Gem
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
tags:
|
6
|
+
- v*
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
push:
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
|
12
|
+
permissions:
|
13
|
+
contents: write
|
14
|
+
id-token: write
|
15
|
+
|
16
|
+
steps:
|
17
|
+
# Set up
|
18
|
+
- uses: actions/checkout@v4
|
19
|
+
- name: Set up Ruby
|
20
|
+
uses: ruby/setup-ruby@v1
|
21
|
+
with:
|
22
|
+
bundler-cache: true
|
23
|
+
ruby-version: ruby
|
24
|
+
|
25
|
+
# Release
|
26
|
+
- uses: rubygems/release-gem@v1
|
@@ -0,0 +1,21 @@
|
|
1
|
+
name: Readme formatting and typo checking
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: ["main"]
|
6
|
+
pull_request:
|
7
|
+
branches: ["main"]
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
lint:
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
steps:
|
13
|
+
- name: Check out repository code
|
14
|
+
uses: actions/checkout@v4
|
15
|
+
- name: Markdown Lint
|
16
|
+
uses: avto-dev/markdown-lint@v1.5.0
|
17
|
+
with:
|
18
|
+
args: "./README.md"
|
19
|
+
config: "./.markdownlint.jsonc"
|
20
|
+
- name: Typos
|
21
|
+
uses: crate-ci/typos@v1.19.0
|
data/.gitignore
CHANGED
@@ -1,4 +1,136 @@
|
|
1
1
|
.DS_Store
|
2
|
-
|
3
|
-
|
4
|
-
|
2
|
+
|
3
|
+
*.gem
|
4
|
+
*.rbc
|
5
|
+
/.config
|
6
|
+
/coverage/
|
7
|
+
/InstalledFiles
|
8
|
+
/pkg/
|
9
|
+
/spec/reports/
|
10
|
+
/spec/examples.txt
|
11
|
+
/test/tmp/
|
12
|
+
/test/version_tmp/
|
13
|
+
/tmp/
|
14
|
+
|
15
|
+
# Used by dotenv library to load environment variables.
|
16
|
+
# .env
|
17
|
+
|
18
|
+
# Ignore Byebug command history file.
|
19
|
+
.byebug_history
|
20
|
+
|
21
|
+
## Specific to RubyMotion:
|
22
|
+
.dat*
|
23
|
+
.repl_history
|
24
|
+
build/
|
25
|
+
*.bridgesupport
|
26
|
+
build-iPhoneOS/
|
27
|
+
build-iPhoneSimulator/
|
28
|
+
|
29
|
+
## Specific to RubyMotion (use of CocoaPods):
|
30
|
+
#
|
31
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
32
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
33
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
34
|
+
#
|
35
|
+
# vendor/Pods/
|
36
|
+
|
37
|
+
## Documentation cache and generated files:
|
38
|
+
/.yardoc/
|
39
|
+
/_yardoc/
|
40
|
+
/doc/
|
41
|
+
/rdoc/
|
42
|
+
|
43
|
+
## Environment normalization:
|
44
|
+
/.bundle/
|
45
|
+
/vendor/bundle
|
46
|
+
/lib/bundler/man/
|
47
|
+
|
48
|
+
# for a library or gem, you might want to ignore these files since the code is
|
49
|
+
# intended to run in multiple environments; otherwise, check them in:
|
50
|
+
# Gemfile.lock
|
51
|
+
# .ruby-version
|
52
|
+
# .ruby-gemset
|
53
|
+
|
54
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
55
|
+
.rvmrc
|
56
|
+
|
57
|
+
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
|
58
|
+
.rubocop-https?--*
|
59
|
+
|
60
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
61
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
62
|
+
|
63
|
+
# User-specific stuff
|
64
|
+
.idea/**/workspace.xml
|
65
|
+
.idea/**/tasks.xml
|
66
|
+
.idea/**/usage.statistics.xml
|
67
|
+
.idea/**/dictionaries
|
68
|
+
.idea/**/shelf
|
69
|
+
|
70
|
+
# AWS User-specific
|
71
|
+
.idea/**/aws.xml
|
72
|
+
|
73
|
+
# Generated files
|
74
|
+
.idea/**/contentModel.xml
|
75
|
+
|
76
|
+
# Sensitive or high-churn files
|
77
|
+
.idea/**/dataSources/
|
78
|
+
.idea/**/dataSources.ids
|
79
|
+
.idea/**/dataSources.local.xml
|
80
|
+
.idea/**/sqlDataSources.xml
|
81
|
+
.idea/**/dynamic.xml
|
82
|
+
.idea/**/uiDesigner.xml
|
83
|
+
.idea/**/dbnavigator.xml
|
84
|
+
|
85
|
+
# Gradle
|
86
|
+
.idea/**/gradle.xml
|
87
|
+
.idea/**/libraries
|
88
|
+
|
89
|
+
# Gradle and Maven with auto-import
|
90
|
+
# When using Gradle or Maven with auto-import, you should exclude module files,
|
91
|
+
# since they will be recreated, and may cause churn. Uncomment if using
|
92
|
+
# auto-import.
|
93
|
+
# .idea/artifacts
|
94
|
+
# .idea/compiler.xml
|
95
|
+
# .idea/jarRepositories.xml
|
96
|
+
# .idea/modules.xml
|
97
|
+
# .idea/*.iml
|
98
|
+
# .idea/modules
|
99
|
+
# *.iml
|
100
|
+
# *.ipr
|
101
|
+
|
102
|
+
# CMake
|
103
|
+
cmake-build-*/
|
104
|
+
|
105
|
+
# Mongo Explorer plugin
|
106
|
+
.idea/**/mongoSettings.xml
|
107
|
+
|
108
|
+
# File-based project format
|
109
|
+
*.iws
|
110
|
+
|
111
|
+
# IntelliJ
|
112
|
+
out/
|
113
|
+
|
114
|
+
# mpeltonen/sbt-idea plugin
|
115
|
+
.idea_modules/
|
116
|
+
|
117
|
+
# JIRA plugin
|
118
|
+
atlassian-ide-plugin.xml
|
119
|
+
|
120
|
+
# Cursive Clojure plugin
|
121
|
+
.idea/replstate.xml
|
122
|
+
|
123
|
+
# SonarLint plugin
|
124
|
+
.idea/sonarlint/
|
125
|
+
|
126
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
127
|
+
com_crashlytics_export_strings.xml
|
128
|
+
crashlytics.properties
|
129
|
+
crashlytics-build.properties
|
130
|
+
fabric.properties
|
131
|
+
|
132
|
+
# Editor-based Rest Client
|
133
|
+
.idea/httpRequests
|
134
|
+
|
135
|
+
# Android studio 3.1+ serialized cache file
|
136
|
+
.idea/caches/build_file_checksums.ser
|
data/.idea/.gitignore
ADDED
@@ -0,0 +1,130 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="ModuleRunConfigurationManager">
|
4
|
+
<shared />
|
5
|
+
</component>
|
6
|
+
<component name="NewModuleRootManager">
|
7
|
+
<content url="file://$MODULE_DIR$">
|
8
|
+
<sourceFolder url="file://$MODULE_DIR$/features" isTestSource="true" />
|
9
|
+
<sourceFolder url="file://$MODULE_DIR$/spec" isTestSource="true" />
|
10
|
+
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
|
11
|
+
</content>
|
12
|
+
<orderEntry type="inheritedJdk" />
|
13
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
14
|
+
<orderEntry type="library" scope="PROVIDED" name="CFPropertyList (v3.0.6, ruby-3.2.2-p53) [gem]" level="application" />
|
15
|
+
<orderEntry type="library" scope="PROVIDED" name="addressable (v2.8.5, ruby-3.2.2-p53) [gem]" level="application" />
|
16
|
+
<orderEntry type="library" scope="PROVIDED" name="ast (v2.4.2, ruby-3.2.2-p53) [gem]" level="application" />
|
17
|
+
<orderEntry type="library" scope="PROVIDED" name="atomos (v0.1.3, ruby-3.2.2-p53) [gem]" level="application" />
|
18
|
+
<orderEntry type="library" scope="PROVIDED" name="base64 (v0.2.0, ruby-3.2.2-p53) [gem]" level="application" />
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v2.4.10, ruby-3.2.2-p53) [gem]" level="application" />
|
20
|
+
<orderEntry type="library" scope="PROVIDED" name="claide (v1.1.0, ruby-3.2.2-p53) [gem]" level="application" />
|
21
|
+
<orderEntry type="library" scope="PROVIDED" name="claide-plugins (v0.9.2, ruby-3.2.2-p53) [gem]" level="application" />
|
22
|
+
<orderEntry type="library" scope="PROVIDED" name="coderay (v1.1.3, ruby-3.2.2-p53) [gem]" level="application" />
|
23
|
+
<orderEntry type="library" scope="PROVIDED" name="colored2 (v3.1.2, ruby-3.2.2-p53) [gem]" level="application" />
|
24
|
+
<orderEntry type="library" scope="PROVIDED" name="cork (v0.3.0, ruby-3.2.2-p53) [gem]" level="application" />
|
25
|
+
<orderEntry type="library" scope="PROVIDED" name="danger (v9.4.0, ruby-3.2.2-p53) [gem]" level="application" />
|
26
|
+
<orderEntry type="library" scope="PROVIDED" name="danger-plugin-api (v1.0.0, ruby-3.2.2-p53) [gem]" level="application" />
|
27
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.5.0, ruby-3.2.2-p53) [gem]" level="application" />
|
28
|
+
<orderEntry type="library" scope="PROVIDED" name="faraday (v2.7.11, ruby-3.2.2-p53) [gem]" level="application" />
|
29
|
+
<orderEntry type="library" scope="PROVIDED" name="faraday-http-cache (v2.5.0, ruby-3.2.2-p53) [gem]" level="application" />
|
30
|
+
<orderEntry type="library" scope="PROVIDED" name="faraday-net_http (v3.0.2, ruby-3.2.2-p53) [gem]" level="application" />
|
31
|
+
<orderEntry type="library" scope="PROVIDED" name="ffi (v1.16.3, ruby-3.2.2-p53) [gem]" level="application" />
|
32
|
+
<orderEntry type="library" scope="PROVIDED" name="formatador (v1.1.0, ruby-3.2.2-p53) [gem]" level="application" />
|
33
|
+
<orderEntry type="library" scope="PROVIDED" name="git (v1.18.0, ruby-3.2.2-p53) [gem]" level="application" />
|
34
|
+
<orderEntry type="library" scope="PROVIDED" name="guard (v2.18.1, ruby-3.2.2-p53) [gem]" level="application" />
|
35
|
+
<orderEntry type="library" scope="PROVIDED" name="guard-compat (v1.2.1, ruby-3.2.2-p53) [gem]" level="application" />
|
36
|
+
<orderEntry type="library" scope="PROVIDED" name="guard-rspec (v4.7.3, ruby-3.2.2-p53) [gem]" level="application" />
|
37
|
+
<orderEntry type="library" scope="PROVIDED" name="json (v2.6.3, ruby-3.2.2-p53) [gem]" level="application" />
|
38
|
+
<orderEntry type="library" scope="PROVIDED" name="kramdown (v2.4.0, ruby-3.2.2-p53) [gem]" level="application" />
|
39
|
+
<orderEntry type="library" scope="PROVIDED" name="kramdown-parser-gfm (v1.1.0, ruby-3.2.2-p53) [gem]" level="application" />
|
40
|
+
<orderEntry type="library" scope="PROVIDED" name="kwalify (v0.7.2, ruby-3.2.2-p53) [gem]" level="application" />
|
41
|
+
<orderEntry type="library" scope="PROVIDED" name="language_server-protocol (v3.17.0.3, ruby-3.2.2-p53) [gem]" level="application" />
|
42
|
+
<orderEntry type="library" scope="PROVIDED" name="listen (v3.0.7, ruby-3.2.2-p53) [gem]" level="application" />
|
43
|
+
<orderEntry type="library" scope="PROVIDED" name="lumberjack (v1.2.10, ruby-3.2.2-p53) [gem]" level="application" />
|
44
|
+
<orderEntry type="library" scope="PROVIDED" name="method_source (v1.0.0, ruby-3.2.2-p53) [gem]" level="application" />
|
45
|
+
<orderEntry type="library" scope="PROVIDED" name="nanaimo (v0.3.0, ruby-3.2.2-p53) [gem]" level="application" />
|
46
|
+
<orderEntry type="library" scope="PROVIDED" name="nap (v1.1.0, ruby-3.2.2-p53) [gem]" level="application" />
|
47
|
+
<orderEntry type="library" scope="PROVIDED" name="nenv (v0.3.0, ruby-3.2.2-p53) [gem]" level="application" />
|
48
|
+
<orderEntry type="library" scope="PROVIDED" name="no_proxy_fix (v0.1.2, ruby-3.2.2-p53) [gem]" level="application" />
|
49
|
+
<orderEntry type="library" scope="PROVIDED" name="notiffany (v0.1.3, ruby-3.2.2-p53) [gem]" level="application" />
|
50
|
+
<orderEntry type="library" scope="PROVIDED" name="octokit (v7.2.0, ruby-3.2.2-p53) [gem]" level="application" />
|
51
|
+
<orderEntry type="library" scope="PROVIDED" name="open4 (v1.3.4, ruby-3.2.2-p53) [gem]" level="application" />
|
52
|
+
<orderEntry type="library" scope="PROVIDED" name="parallel (v1.23.0, ruby-3.2.2-p53) [gem]" level="application" />
|
53
|
+
<orderEntry type="library" scope="PROVIDED" name="parser (v3.2.2.4, ruby-3.2.2-p53) [gem]" level="application" />
|
54
|
+
<orderEntry type="library" scope="PROVIDED" name="pry (v0.14.2, ruby-3.2.2-p53) [gem]" level="application" />
|
55
|
+
<orderEntry type="library" scope="PROVIDED" name="public_suffix (v5.0.3, ruby-3.2.2-p53) [gem]" level="application" />
|
56
|
+
<orderEntry type="library" scope="PROVIDED" name="racc (v1.7.3, ruby-3.2.2-p53) [gem]" level="application" />
|
57
|
+
<orderEntry type="library" scope="PROVIDED" name="rainbow (v3.1.1, ruby-3.2.2-p53) [gem]" level="application" />
|
58
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v13.1.0, ruby-3.2.2-p53) [gem]" level="application" />
|
59
|
+
<orderEntry type="library" scope="PROVIDED" name="rb-fsevent (v0.11.2, ruby-3.2.2-p53) [gem]" level="application" />
|
60
|
+
<orderEntry type="library" scope="PROVIDED" name="rb-inotify (v0.10.1, ruby-3.2.2-p53) [gem]" level="application" />
|
61
|
+
<orderEntry type="library" scope="PROVIDED" name="rchardet (v1.8.0, ruby-3.2.2-p53) [gem]" level="application" />
|
62
|
+
<orderEntry type="library" scope="PROVIDED" name="reek (v6.1.4, ruby-3.2.2-p53) [gem]" level="application" />
|
63
|
+
<orderEntry type="library" scope="PROVIDED" name="regexp_parser (v2.8.2, ruby-3.2.2-p53) [gem]" level="application" />
|
64
|
+
<orderEntry type="library" scope="PROVIDED" name="rexml (v3.2.6, ruby-3.2.2-p53) [gem]" level="application" />
|
65
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.12.0, ruby-3.2.2-p53) [gem]" level="application" />
|
66
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.12.2, ruby-3.2.2-p53) [gem]" level="application" />
|
67
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.12.3, ruby-3.2.2-p53) [gem]" level="application" />
|
68
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.12.6, ruby-3.2.2-p53) [gem]" level="application" />
|
69
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.12.1, ruby-3.2.2-p53) [gem]" level="application" />
|
70
|
+
<orderEntry type="library" scope="PROVIDED" name="rubocop (v1.57.2, ruby-3.2.2-p53) [gem]" level="application" />
|
71
|
+
<orderEntry type="library" scope="PROVIDED" name="rubocop-ast (v1.30.0, ruby-3.2.2-p53) [gem]" level="application" />
|
72
|
+
<orderEntry type="library" scope="PROVIDED" name="rubocop-capybara (v2.19.0, ruby-3.2.2-p53) [gem]" level="application" />
|
73
|
+
<orderEntry type="library" scope="PROVIDED" name="rubocop-factory_bot (v2.24.0, ruby-3.2.2-p53) [gem]" level="application" />
|
74
|
+
<orderEntry type="library" scope="PROVIDED" name="rubocop-rake (v0.6.0, ruby-3.2.2-p53) [gem]" level="application" />
|
75
|
+
<orderEntry type="library" scope="PROVIDED" name="rubocop-rspec (v2.25.0, ruby-3.2.2-p53) [gem]" level="application" />
|
76
|
+
<orderEntry type="library" scope="PROVIDED" name="ruby-progressbar (v1.13.0, ruby-3.2.2-p53) [gem]" level="application" />
|
77
|
+
<orderEntry type="library" scope="PROVIDED" name="sawyer (v0.9.2, ruby-3.2.2-p53) [gem]" level="application" />
|
78
|
+
<orderEntry type="library" scope="PROVIDED" name="semantic (v1.6.1, ruby-3.2.2-p53) [gem]" level="application" />
|
79
|
+
<orderEntry type="library" scope="PROVIDED" name="shellany (v0.0.1, ruby-3.2.2-p53) [gem]" level="application" />
|
80
|
+
<orderEntry type="library" scope="PROVIDED" name="terminal-table (v3.0.2, ruby-3.2.2-p53) [gem]" level="application" />
|
81
|
+
<orderEntry type="library" scope="PROVIDED" name="thor (v1.3.0, ruby-3.2.2-p53) [gem]" level="application" />
|
82
|
+
<orderEntry type="library" scope="PROVIDED" name="unicode-display_width (v2.5.0, ruby-3.2.2-p53) [gem]" level="application" />
|
83
|
+
<orderEntry type="library" scope="PROVIDED" name="xcodeproj (v1.23.0, ruby-3.2.2-p53) [gem]" level="application" />
|
84
|
+
<orderEntry type="library" scope="PROVIDED" name="yard (v0.9.34, ruby-3.2.2-p53) [gem]" level="application" />
|
85
|
+
</component>
|
86
|
+
<component name="RakeTasksCache">
|
87
|
+
<option name="myRootTask">
|
88
|
+
<RakeTaskImpl id="rake">
|
89
|
+
<subtasks>
|
90
|
+
<RakeTaskImpl description="Build danger-spm_version_updates-0.0.4.gem into the pkg directory" fullCommand="build" id="build" />
|
91
|
+
<RakeTaskImpl id="build">
|
92
|
+
<subtasks>
|
93
|
+
<RakeTaskImpl description="Generate SHA512 checksum if danger-spm_version_updates-0.0.4.gem into the checksums directory" fullCommand="build:checksum" id="checksum" />
|
94
|
+
</subtasks>
|
95
|
+
</RakeTaskImpl>
|
96
|
+
<RakeTaskImpl description="Remove any temporary products" fullCommand="clean" id="clean" />
|
97
|
+
<RakeTaskImpl description="Remove any generated files" fullCommand="clobber" id="clobber" />
|
98
|
+
<RakeTaskImpl description="Build and install danger-spm_version_updates-0.0.4.gem into system gems" fullCommand="install" id="install" />
|
99
|
+
<RakeTaskImpl id="install">
|
100
|
+
<subtasks>
|
101
|
+
<RakeTaskImpl description="Build and install danger-spm_version_updates-0.0.4.gem into system gems without network access" fullCommand="install:local" id="local" />
|
102
|
+
</subtasks>
|
103
|
+
</RakeTaskImpl>
|
104
|
+
<RakeTaskImpl description="Check for code smells" fullCommand="reek" id="reek" />
|
105
|
+
<RakeTaskImpl description="Create tag v0.0.4 and build and push danger-spm_version_updates-0.0.4.gem to rubygems.org" fullCommand="release[remote]" id="release[remote]" />
|
106
|
+
<RakeTaskImpl description="Run RuboCop on the lib/specs directory" fullCommand="rubocop" id="rubocop" />
|
107
|
+
<RakeTaskImpl id="rubocop">
|
108
|
+
<subtasks>
|
109
|
+
<RakeTaskImpl description="Autocorrect RuboCop offenses (only when it's safe)" fullCommand="rubocop:autocorrect" id="autocorrect" />
|
110
|
+
<RakeTaskImpl description="Autocorrect RuboCop offenses (safe and unsafe)" fullCommand="rubocop:autocorrect_all" id="autocorrect_all" />
|
111
|
+
<RakeTaskImpl description="" fullCommand="rubocop:auto_correct" id="auto_correct" />
|
112
|
+
</subtasks>
|
113
|
+
</RakeTaskImpl>
|
114
|
+
<RakeTaskImpl description="Ensure that the plugin passes `danger plugins lint`" fullCommand="spec_docs" id="spec_docs" />
|
115
|
+
<RakeTaskImpl description="Run RSpec code examples" fullCommand="specs" id="specs" />
|
116
|
+
<RakeTaskImpl description="" fullCommand="default" id="default" />
|
117
|
+
<RakeTaskImpl description="" fullCommand="release" id="release" />
|
118
|
+
<RakeTaskImpl id="release">
|
119
|
+
<subtasks>
|
120
|
+
<RakeTaskImpl description="" fullCommand="release:guard_clean" id="guard_clean" />
|
121
|
+
<RakeTaskImpl description="" fullCommand="release:rubygem_push" id="rubygem_push" />
|
122
|
+
<RakeTaskImpl description="" fullCommand="release:source_control_push" id="source_control_push" />
|
123
|
+
</subtasks>
|
124
|
+
</RakeTaskImpl>
|
125
|
+
<RakeTaskImpl description="" fullCommand="spec" id="spec" />
|
126
|
+
</subtasks>
|
127
|
+
</RakeTaskImpl>
|
128
|
+
</option>
|
129
|
+
</component>
|
130
|
+
</module>
|
data/.idea/misc.xml
ADDED
data/.idea/modules.xml
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ProjectModuleManager">
|
4
|
+
<modules>
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/danger-plugin-spm-version-updates.iml" filepath="$PROJECT_DIR$/.idea/danger-plugin-spm-version-updates.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
data/.idea/vcs.xml
ADDED