danger-spm_version_updates 0.0.1

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: 1a80df2145b1f81714468e0b7300d119e355c2768bfb4f46b549099e595f72f4
4
+ data.tar.gz: e0ea174793a1ada26adc8f4a0af0d83af73556207da6fd3fd8d21142f9c2422d
5
+ SHA512:
6
+ metadata.gz: 9e2da3e2dff7ff1037af5fead494b744567b85b76d6e97e2cccbdb6e31b931a3dfe45923ad6055872f615ef7291eb8d9d9093b5673247f5ed4ebd9d87cf83a9f
7
+ data.tar.gz: c9893eeef31798f95fcc7db8150671ca3765569b5eaceede3b35fcc79da3b2be29877f7783885ccdd947cff06e77a480a110b8d140d2dee57f972e5104ab604e
@@ -0,0 +1,27 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
+ branches: [ main ]
8
+
9
+ jobs:
10
+ build:
11
+ strategy:
12
+ matrix:
13
+ ruby-version:
14
+ - "2.7"
15
+ - "3.0"
16
+ - "3.1"
17
+ - "3.2"
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+ - name: Set up Ruby
22
+ uses: ruby/setup-ruby@v1
23
+ with:
24
+ ruby-version: ${{ matrix.ruby-version }}
25
+ bundler-cache: true
26
+ - name: Running Tests
27
+ run: bundle exec rake spec
data/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ .DS_Store
2
+ pkg
3
+ .idea/
4
+ .yardoc
data/.reek.yml ADDED
@@ -0,0 +1,129 @@
1
+ ---
2
+ detectors:
3
+ Attribute:
4
+ enabled: false
5
+ exclude: []
6
+ BooleanParameter:
7
+ enabled: true
8
+ exclude: []
9
+ ClassVariable:
10
+ enabled: true
11
+ exclude: []
12
+ ControlParameter:
13
+ enabled: true
14
+ exclude: []
15
+ DataClump:
16
+ enabled: true
17
+ exclude: []
18
+ max_copies: 2
19
+ min_clump_size: 2
20
+ DuplicateMethodCall:
21
+ enabled: true
22
+ exclude: []
23
+ max_calls: 1
24
+ allow_calls: []
25
+ FeatureEnvy:
26
+ enabled: true
27
+ exclude: []
28
+ InstanceVariableAssumption:
29
+ enabled: true
30
+ exclude: []
31
+ IrresponsibleModule:
32
+ enabled: false
33
+ exclude: []
34
+ LongParameterList:
35
+ enabled: true
36
+ exclude: []
37
+ max_params: 3
38
+ overrides:
39
+ initialize:
40
+ max_params: 5
41
+ LongYieldList:
42
+ enabled: true
43
+ exclude: []
44
+ max_params: 3
45
+ ManualDispatch:
46
+ enabled: true
47
+ exclude: []
48
+ MissingSafeMethod:
49
+ enabled: true
50
+ exclude: []
51
+ ModuleInitialize:
52
+ enabled: true
53
+ exclude: []
54
+ NestedIterators:
55
+ enabled: true
56
+ exclude: []
57
+ max_allowed_nesting: 1
58
+ ignore_iterators:
59
+ - tap
60
+ NilCheck:
61
+ enabled: true
62
+ exclude: []
63
+ RepeatedConditional:
64
+ enabled: true
65
+ exclude: []
66
+ max_ifs: 2
67
+ SubclassedFromCoreClass:
68
+ enabled: true
69
+ exclude: []
70
+ TooManyConstants:
71
+ enabled: true
72
+ exclude: []
73
+ max_constants: 5
74
+ TooManyInstanceVariables:
75
+ enabled: true
76
+ exclude: []
77
+ max_instance_variables: 4
78
+ TooManyMethods:
79
+ enabled: true
80
+ exclude: []
81
+ max_methods: 15
82
+ TooManyStatements:
83
+ enabled: true
84
+ exclude:
85
+ - initialize
86
+ max_statements: 5
87
+ UncommunicativeMethodName:
88
+ enabled: true
89
+ exclude: []
90
+ reject:
91
+ - "/^[a-z]$/"
92
+ - "/[0-9]$/"
93
+ - "/[A-Z]/"
94
+ accept: []
95
+ UncommunicativeModuleName:
96
+ enabled: true
97
+ exclude: []
98
+ reject:
99
+ - "/^.$/"
100
+ - "/[0-9]$/"
101
+ accept: []
102
+ UncommunicativeParameterName:
103
+ enabled: true
104
+ exclude: []
105
+ reject:
106
+ - "/^.$/"
107
+ - "/[0-9]$/"
108
+ - "/[A-Z]/"
109
+ - "/^_/"
110
+ accept: []
111
+ UncommunicativeVariableName:
112
+ enabled: true
113
+ exclude: []
114
+ reject:
115
+ - "/^.$/"
116
+ - "/[0-9]$/"
117
+ - "/[A-Z]/"
118
+ accept:
119
+ - "/^_$/"
120
+ UnusedParameters:
121
+ enabled: true
122
+ exclude: []
123
+ UnusedPrivateMethod:
124
+ enabled: false
125
+ exclude: []
126
+ UtilityFunction:
127
+ enabled: true
128
+ exclude: []
129
+ public_methods_only: false
data/.rubocop.yml ADDED
@@ -0,0 +1,208 @@
1
+ # Defaults can be found here: https://github.com/bbatsov/rubocop/blob/master/config/default.yml
2
+
3
+ # If you don't like these settings, just delete this file :)
4
+
5
+ AllCops:
6
+ TargetRubyVersion: 2.7
7
+ NewCops: enable
8
+
9
+ Style/MultilineBlockChain:
10
+ Enabled: false
11
+
12
+ Style/MultilineIfModifier:
13
+ Enabled: false
14
+
15
+ Style/TrailingCommaInArrayLiteral:
16
+ EnforcedStyleForMultiline: consistent_comma
17
+
18
+ RSpec/ExampleLength:
19
+ Enabled: false
20
+
21
+ Style/BlockDelimiters:
22
+ Enabled: true
23
+ EnforcedStyle: always_braces
24
+ Exclude:
25
+ - spec/*.rb
26
+
27
+ Layout/ClassStructure:
28
+ Enabled: true
29
+
30
+ Layout/MultilineArrayLineBreaks:
31
+ Enabled: true
32
+
33
+ Layout/MultilineAssignmentLayout:
34
+ Enabled: true
35
+ EnforcedStyle: same_line
36
+
37
+ Layout/MultilineHashKeyLineBreaks:
38
+ Enabled: true
39
+
40
+ Layout/MultilineMethodArgumentLineBreaks:
41
+ Enabled: true
42
+
43
+ Layout/MultilineMethodParameterLineBreaks:
44
+ Enabled: true
45
+
46
+ Layout/SingleLineBlockChain:
47
+ Enabled: true
48
+
49
+ Style/AutoResourceCleanup:
50
+ Enabled: true
51
+
52
+ Style/CollectionMethods:
53
+ Enabled: true
54
+
55
+ Style/InvertibleUnlessCondition:
56
+ Enabled: true
57
+
58
+ Style/MethodCallWithArgsParentheses:
59
+ Enabled: true
60
+ Exclude:
61
+ - spec/*.rb
62
+
63
+ Style/MethodCalledOnDoEndBlock:
64
+ Enabled: true
65
+
66
+ Style/RequireOrder:
67
+ Enabled: true
68
+
69
+ Style/StringMethods:
70
+ Enabled: true
71
+
72
+ Style/TopLevelMethodDefinition:
73
+ Enabled: true
74
+ Exclude:
75
+ - spec/*.rb
76
+
77
+ Style/StringLiterals:
78
+ EnforcedStyle: double_quotes
79
+ Enabled: true
80
+
81
+ # kind_of? is a good way to check a type
82
+ Style/ClassCheck:
83
+ EnforcedStyle: kind_of?
84
+
85
+ # specs sometimes have useless assignments, which is fine
86
+ Lint/UselessAssignment:
87
+ Exclude:
88
+ - '**/spec/**/*'
89
+
90
+ Layout/FirstHashElementIndentation:
91
+ Enabled: true
92
+
93
+ Layout/HashAlignment:
94
+ Enabled: true
95
+
96
+ # HoundCI doesn't like this rule
97
+ Layout/DotPosition:
98
+ Enabled: false
99
+
100
+ # We allow !! as it's an easy way to convert to boolean
101
+ Style/DoubleNegation:
102
+ Enabled: false
103
+
104
+ # Cop supports --auto-correct.
105
+ Lint/UnusedBlockArgument:
106
+ Enabled: true
107
+
108
+ # We want to allow class Fastlane::Class
109
+ Style/ClassAndModuleChildren:
110
+ Enabled: false
111
+
112
+ Metrics/AbcSize:
113
+ Max: 60
114
+
115
+ # The %w might be confusing for new users
116
+ Style/WordArray:
117
+ MinSize: 19
118
+
119
+ # raise and fail are both okay
120
+ Style/SignalException:
121
+ Enabled: false
122
+
123
+ # Having if in the same line might not always be good
124
+ Style/IfUnlessModifier:
125
+ Enabled: false
126
+
127
+ Style/AndOr:
128
+ Enabled: true
129
+
130
+ # Configuration parameters: CountComments.
131
+ Metrics/ClassLength:
132
+ Max: 350
133
+
134
+ Metrics/CyclomaticComplexity:
135
+ Max: 17
136
+
137
+ # Configuration parameters: AllowURI, URISchemes.
138
+ Layout/LineLength:
139
+ Max: 370
140
+
141
+ # Configuration parameters: CountKeywordArgs.
142
+ Metrics/ParameterLists:
143
+ Max: 10
144
+
145
+ Metrics/PerceivedComplexity:
146
+ Max: 18
147
+
148
+ Style/GuardClause:
149
+ Enabled: true
150
+
151
+ Style/ConditionalAssignment:
152
+ Enabled: true
153
+
154
+ # Better to have too much self than missing a self
155
+ Style/RedundantSelf:
156
+ Enabled: false
157
+
158
+ Metrics/MethodLength:
159
+ Max: 60
160
+
161
+ # We're not there yet
162
+ Style/Documentation:
163
+ Enabled: false
164
+
165
+ # Adds complexity
166
+ Style/IfInsideElse:
167
+ Enabled: false
168
+
169
+ # danger specific
170
+
171
+ Style/BlockComments:
172
+ Enabled: false
173
+
174
+ Layout/MultilineMethodCallIndentation:
175
+ EnforcedStyle: indented
176
+
177
+ # FIXME: 25
178
+ Metrics/BlockLength:
179
+ Max: 345
180
+ Exclude:
181
+ - "**/*_spec.rb"
182
+
183
+ Style/MixinGrouping:
184
+ Enabled: true
185
+
186
+ Naming/FileName:
187
+ Enabled: false
188
+
189
+ Layout/HeredocIndentation:
190
+ Enabled: false
191
+
192
+ Style/SpecialGlobalVars:
193
+ Enabled: false
194
+
195
+ Style/PercentLiteralDelimiters:
196
+ PreferredDelimiters:
197
+ "%": ()
198
+ "%i": ()
199
+ "%q": ()
200
+ "%Q": ()
201
+ "%r": "{}"
202
+ "%s": ()
203
+ "%w": ()
204
+ "%W": ()
205
+ "%x": ()
206
+
207
+ Security/YAMLLoad:
208
+ Enabled: false
@@ -0,0 +1,131 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, caste, color, religion, or sexual
10
+ identity and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ * Demonstrating empathy and kindness toward other people
21
+ * Being respectful of differing opinions, viewpoints, and experiences
22
+ * Giving and gracefully accepting constructive feedback
23
+ * Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ * Focusing on what is best not just for us as individuals, but for the
26
+ overall community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ * The use of sexualized language or imagery, and sexual attention or
31
+ advances of any kind
32
+ * Trolling, insulting or derogatory comments, and personal or political attacks
33
+ * Public or private harassment
34
+ * Publishing others' private information, such as a physical or email
35
+ address, without their explicit permission
36
+ * Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official e-mail address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to the community leaders responsible for enforcement.
63
+ All complaints will be reviewed and investigated promptly and fairly.
64
+
65
+ All community leaders are obligated to respect the privacy and security of the
66
+ reporter of any incident.
67
+
68
+ ## Enforcement Guidelines
69
+
70
+ Community leaders will follow these Community Impact Guidelines in determining
71
+ the consequences for any action they deem in violation of this Code of Conduct:
72
+
73
+ ### 1. Correction
74
+
75
+ **Community Impact**: Use of inappropriate language or other behavior deemed
76
+ unprofessional or unwelcome in the community.
77
+
78
+ **Consequence**: A private, written warning from community leaders, providing
79
+ clarity around the nature of the violation and an explanation of why the
80
+ behavior was inappropriate. A public apology may be requested.
81
+
82
+ ### 2. Warning
83
+
84
+ **Community Impact**: A violation through a single incident or series
85
+ of actions.
86
+
87
+ **Consequence**: A warning with consequences for continued behavior. No
88
+ interaction with the people involved, including unsolicited interaction with
89
+ those enforcing the Code of Conduct, for a specified period of time. This
90
+ includes avoiding interactions in community spaces as well as external channels
91
+ like social media. Violating these terms may lead to a temporary or
92
+ permanent ban.
93
+
94
+ ### 3. Temporary Ban
95
+
96
+ **Community Impact**: A serious violation of community standards, including
97
+ sustained inappropriate behavior.
98
+
99
+ **Consequence**: A temporary ban from any sort of interaction or public
100
+ communication with the community for a specified period of time. No public or
101
+ private interaction with the people involved, including unsolicited interaction
102
+ with those enforcing the Code of Conduct, is allowed during this period.
103
+ Violating these terms may lead to a permanent ban.
104
+
105
+ ### 4. Permanent Ban
106
+
107
+ **Community Impact**: Demonstrating a pattern of violation of community
108
+ standards, including sustained inappropriate behavior, harassment of an
109
+ individual, or aggression toward or disparagement of classes of individuals.
110
+
111
+ **Consequence**: A permanent ban from any sort of public interaction within
112
+ the community.
113
+
114
+ ## Attribution
115
+
116
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
117
+ version 2.1, available at
118
+ [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
119
+
120
+ Community Impact Guidelines were inspired by
121
+ [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
122
+
123
+ For answers to common questions about this code of conduct, see the FAQ at
124
+ [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
125
+ [https://www.contributor-covenant.org/translations][translations].
126
+
127
+ [homepage]: https://www.contributor-covenant.org
128
+ [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
129
+ [Mozilla CoC]: https://github.com/mozilla/diversity
130
+ [FAQ]: https://www.contributor-covenant.org/faq
131
+ [translations]: https://www.contributor-covenant.org/translations
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in danger-spm_version_updates.gemspec
6
+ gemspec
7
+
8
+ gem "semantic", "~> 1.6"
9
+ gem "xcodeproj", "~> 1.23"
data/Gemfile.lock ADDED
@@ -0,0 +1,190 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ danger-spm_version_updates (0.0.1)
5
+ danger-plugin-api (~> 1.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ CFPropertyList (3.0.6)
11
+ rexml
12
+ addressable (2.8.5)
13
+ public_suffix (>= 2.0.2, < 6.0)
14
+ ast (2.4.2)
15
+ atomos (0.1.3)
16
+ base64 (0.1.1)
17
+ claide (1.1.0)
18
+ claide-plugins (0.9.2)
19
+ cork
20
+ nap
21
+ open4 (~> 1.3)
22
+ coderay (1.1.3)
23
+ colored2 (3.1.2)
24
+ cork (0.3.0)
25
+ colored2 (~> 3.1)
26
+ danger (9.3.2)
27
+ claide (~> 1.0)
28
+ claide-plugins (>= 0.9.2)
29
+ colored2 (~> 3.1)
30
+ cork (~> 0.1)
31
+ faraday (>= 0.9.0, < 3.0)
32
+ faraday-http-cache (~> 2.0)
33
+ git (~> 1.13)
34
+ kramdown (~> 2.3)
35
+ kramdown-parser-gfm (~> 1.0)
36
+ no_proxy_fix
37
+ octokit (~> 6.0)
38
+ terminal-table (>= 1, < 4)
39
+ danger-plugin-api (1.0.0)
40
+ danger (> 2.0)
41
+ diff-lcs (1.5.0)
42
+ faraday (2.7.11)
43
+ base64
44
+ faraday-net_http (>= 2.0, < 3.1)
45
+ ruby2_keywords (>= 0.0.4)
46
+ faraday-http-cache (2.5.0)
47
+ faraday (>= 0.8)
48
+ faraday-net_http (3.0.2)
49
+ ffi (1.16.3)
50
+ formatador (1.1.0)
51
+ git (1.18.0)
52
+ addressable (~> 2.8)
53
+ rchardet (~> 1.8)
54
+ guard (2.18.1)
55
+ formatador (>= 0.2.4)
56
+ listen (>= 2.7, < 4.0)
57
+ lumberjack (>= 1.0.12, < 2.0)
58
+ nenv (~> 0.1)
59
+ notiffany (~> 0.0)
60
+ pry (>= 0.13.0)
61
+ shellany (~> 0.0)
62
+ thor (>= 0.18.1)
63
+ guard-compat (1.2.1)
64
+ guard-rspec (4.7.3)
65
+ guard (~> 2.1)
66
+ guard-compat (~> 1.1)
67
+ rspec (>= 2.99.0, < 4.0)
68
+ json (2.6.3)
69
+ kramdown (2.4.0)
70
+ rexml
71
+ kramdown-parser-gfm (1.1.0)
72
+ kramdown (~> 2.0)
73
+ kwalify (0.7.2)
74
+ language_server-protocol (3.17.0.3)
75
+ listen (3.0.7)
76
+ rb-fsevent (>= 0.9.3)
77
+ rb-inotify (>= 0.9.7)
78
+ lumberjack (1.2.9)
79
+ method_source (1.0.0)
80
+ nanaimo (0.3.0)
81
+ nap (1.1.0)
82
+ nenv (0.3.0)
83
+ no_proxy_fix (0.1.2)
84
+ notiffany (0.1.3)
85
+ nenv (~> 0.1)
86
+ shellany (~> 0.0)
87
+ octokit (6.1.1)
88
+ faraday (>= 1, < 3)
89
+ sawyer (~> 0.9)
90
+ open4 (1.3.4)
91
+ parallel (1.23.0)
92
+ parser (3.2.2.4)
93
+ ast (~> 2.4.1)
94
+ racc
95
+ pry (0.14.2)
96
+ coderay (~> 1.1)
97
+ method_source (~> 1.0)
98
+ public_suffix (5.0.3)
99
+ racc (1.7.3)
100
+ rainbow (3.1.1)
101
+ rake (13.1.0)
102
+ rb-fsevent (0.11.2)
103
+ rb-inotify (0.10.1)
104
+ ffi (~> 1.0)
105
+ rchardet (1.8.0)
106
+ reek (6.1.4)
107
+ kwalify (~> 0.7.0)
108
+ parser (~> 3.2.0)
109
+ rainbow (>= 2.0, < 4.0)
110
+ regexp_parser (2.8.2)
111
+ rexml (3.2.6)
112
+ rspec (3.12.0)
113
+ rspec-core (~> 3.12.0)
114
+ rspec-expectations (~> 3.12.0)
115
+ rspec-mocks (~> 3.12.0)
116
+ rspec-core (3.12.2)
117
+ rspec-support (~> 3.12.0)
118
+ rspec-expectations (3.12.3)
119
+ diff-lcs (>= 1.2.0, < 2.0)
120
+ rspec-support (~> 3.12.0)
121
+ rspec-mocks (3.12.6)
122
+ diff-lcs (>= 1.2.0, < 2.0)
123
+ rspec-support (~> 3.12.0)
124
+ rspec-support (3.12.1)
125
+ rubocop (1.57.2)
126
+ json (~> 2.3)
127
+ language_server-protocol (>= 3.17.0)
128
+ parallel (~> 1.10)
129
+ parser (>= 3.2.2.4)
130
+ rainbow (>= 2.2.2, < 4.0)
131
+ regexp_parser (>= 1.8, < 3.0)
132
+ rexml (>= 3.2.5, < 4.0)
133
+ rubocop-ast (>= 1.28.1, < 2.0)
134
+ ruby-progressbar (~> 1.7)
135
+ unicode-display_width (>= 2.4.0, < 3.0)
136
+ rubocop-ast (1.30.0)
137
+ parser (>= 3.2.1.0)
138
+ rubocop-capybara (2.19.0)
139
+ rubocop (~> 1.41)
140
+ rubocop-factory_bot (2.24.0)
141
+ rubocop (~> 1.33)
142
+ rubocop-rake (0.6.0)
143
+ rubocop (~> 1.0)
144
+ rubocop-rspec (2.25.0)
145
+ rubocop (~> 1.40)
146
+ rubocop-capybara (~> 2.17)
147
+ rubocop-factory_bot (~> 2.22)
148
+ ruby-progressbar (1.13.0)
149
+ ruby2_keywords (0.0.5)
150
+ sawyer (0.9.2)
151
+ addressable (>= 2.3.5)
152
+ faraday (>= 0.17.3, < 3)
153
+ semantic (1.6.1)
154
+ shellany (0.0.1)
155
+ terminal-table (3.0.2)
156
+ unicode-display_width (>= 1.1.1, < 3)
157
+ thor (1.3.0)
158
+ unicode-display_width (2.5.0)
159
+ xcodeproj (1.23.0)
160
+ CFPropertyList (>= 2.3.3, < 4.0)
161
+ atomos (~> 0.1.3)
162
+ claide (>= 1.0.2, < 2.0)
163
+ colored2 (~> 3.1)
164
+ nanaimo (~> 0.3.0)
165
+ rexml (~> 3.2.4)
166
+ yard (0.9.34)
167
+
168
+ PLATFORMS
169
+ arm64-darwin-22
170
+ x86_64-linux
171
+
172
+ DEPENDENCIES
173
+ bundler (~> 2.0)
174
+ danger-spm_version_updates!
175
+ guard (~> 2.14)
176
+ guard-rspec (~> 4.7)
177
+ listen (= 3.0.7)
178
+ pry
179
+ rake (~> 13.0)
180
+ reek
181
+ rspec (~> 3.4)
182
+ rubocop
183
+ rubocop-rake
184
+ rubocop-rspec
185
+ semantic (~> 1.6)
186
+ xcodeproj (~> 1.23)
187
+ yard
188
+
189
+ BUNDLED WITH
190
+ 2.4.10