typesafe_enum 0.2.2 → 0.3.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/.github/workflows/build.yml +30 -0
- data/.gitignore +209 -29
- data/.idea/.rakeTasks +7 -0
- data/.idea/codeStyles/Project.xml +45 -0
- data/.idea/codeStyles/codeStyleConfig.xml +5 -0
- data/.idea/go.imports.xml +6 -0
- data/.idea/inspectionProfiles/Project_Default.xml +18 -0
- data/.idea/misc.xml +9 -0
- data/.idea/modules.xml +8 -0
- data/.idea/typesafe_enum.iml +78 -0
- data/.idea/vcs.xml +6 -0
- data/.rubocop.yml +184 -22
- data/.ruby-version +1 -1
- data/.travis.yml +7 -0
- data/CHANGES.md +17 -0
- data/README.md +15 -1
- data/Rakefile +8 -42
- data/lib/typesafe_enum/base.rb +18 -98
- data/lib/typesafe_enum/class_methods.rb +167 -0
- data/lib/typesafe_enum/exceptions.rb +7 -0
- data/lib/typesafe_enum/module_info.rb +8 -6
- data/rakelib/coverage.rake +11 -0
- data/rakelib/gem.rake +54 -0
- data/rakelib/rubocop.rake +18 -0
- data/rakelib/spec.rake +2 -0
- data/spec/.rubocop.yml +3 -0
- data/spec/unit/typesafe_enum/base_spec.rb +199 -7
- data/typesafe_enum.gemspec +9 -5
- metadata +57 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 45a7fb6aeaf02fa9141a956231233d0cd66206eefd89c36c338bd3b1b5551177
|
4
|
+
data.tar.gz: c2cab2eef270ae62222f6f1ae671e7c6b6edfa89831c124ac73aed324c85bcab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12c492eb259e363bfb4f8e03278ff128666b9c4be08d7294bfea47c5986e7e5ecc7f3caa00930a21f436c6aa43a12147f471ad1a2750ebd3a9b1e608c22d07e6
|
7
|
+
data.tar.gz: d07316fafdae2ea0d452e9874febc267a64c7c0a84dacad6635c27fa927e1952684e9fd0b40411a580eb91f0325ae2a9f38fd0d5a9ab231cdf0ee0a4e0699393
|
@@ -0,0 +1,30 @@
|
|
1
|
+
name: Build
|
2
|
+
on: [ push, pull_request, workflow_dispatch ]
|
3
|
+
jobs:
|
4
|
+
test:
|
5
|
+
strategy:
|
6
|
+
fail-fast: false
|
7
|
+
matrix:
|
8
|
+
os: [ ubuntu-latest, macos-latest ]
|
9
|
+
ruby: [ '2.7', '3.0', '3.1' ]
|
10
|
+
runs-on: ${{ matrix.os }}
|
11
|
+
|
12
|
+
steps:
|
13
|
+
- name: Check out repository
|
14
|
+
uses: actions/checkout@v2
|
15
|
+
|
16
|
+
- name: Set up Ruby
|
17
|
+
uses: ruby/setup-ruby@v1
|
18
|
+
with:
|
19
|
+
ruby-version: ${{ matrix.ruby }}
|
20
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
21
|
+
|
22
|
+
- name: Run checks
|
23
|
+
run: bundle exec rake
|
24
|
+
|
25
|
+
- name: Upload artifacts
|
26
|
+
if: ${{ always() }}
|
27
|
+
uses: actions/upload-artifact@v3
|
28
|
+
with:
|
29
|
+
name: artifacts
|
30
|
+
path: artifacts/**
|
data/.gitignore
CHANGED
@@ -1,50 +1,230 @@
|
|
1
|
-
|
1
|
+
############################################################
|
2
|
+
# Custom ignores
|
2
3
|
|
3
|
-
.
|
4
|
-
/
|
4
|
+
# apps need Gemfile.lock in source control, gems don't
|
5
|
+
/Gemfile.lock
|
5
6
|
|
6
|
-
#
|
7
|
+
# https://youtrack.jetbrains.com/issue/IDEA-233049
|
8
|
+
.idea/$CACHE_FILE$
|
7
9
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
10
|
+
# Build artifacts
|
11
|
+
/artifacts/
|
12
|
+
|
13
|
+
############################################################
|
14
|
+
# Generated ignores
|
15
|
+
|
16
|
+
#### joe made this: http://goel.io/joe
|
17
|
+
|
18
|
+
#### ruby ####
|
19
|
+
*.gem
|
20
|
+
*.rbc
|
21
|
+
/.config
|
12
22
|
/coverage/
|
13
|
-
/
|
23
|
+
/InstalledFiles
|
14
24
|
/pkg/
|
15
25
|
/spec/reports/
|
26
|
+
/spec/examples.txt
|
27
|
+
/test/tmp/
|
28
|
+
/test/version_tmp/
|
16
29
|
/tmp/
|
17
|
-
*.bundle
|
18
|
-
*.so
|
19
|
-
*.o
|
20
|
-
*.a
|
21
|
-
mkmf.log
|
22
30
|
|
23
|
-
#
|
24
|
-
|
31
|
+
# Used by dotenv library to load environment variables.
|
32
|
+
# .env
|
33
|
+
|
34
|
+
# Ignore Byebug command history file.
|
35
|
+
.byebug_history
|
36
|
+
|
37
|
+
## Specific to RubyMotion:
|
38
|
+
.dat*
|
39
|
+
.repl_history
|
40
|
+
build/
|
41
|
+
*.bridgesupport
|
42
|
+
build-iPhoneOS/
|
43
|
+
build-iPhoneSimulator/
|
44
|
+
|
45
|
+
## Specific to RubyMotion (use of CocoaPods):
|
46
|
+
#
|
47
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
48
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
49
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
50
|
+
#
|
51
|
+
# vendor/Pods/
|
52
|
+
|
53
|
+
## Documentation cache and generated files:
|
54
|
+
/.yardoc/
|
55
|
+
/_yardoc/
|
56
|
+
/doc/
|
57
|
+
/rdoc/
|
58
|
+
|
59
|
+
## Environment normalization:
|
60
|
+
/.bundle/
|
61
|
+
/vendor/bundle
|
62
|
+
/lib/bundler/man/
|
63
|
+
|
64
|
+
# for a library or gem, you might want to ignore these files since the code is
|
65
|
+
# intended to run in multiple environments; otherwise, check them in:
|
66
|
+
# Gemfile.lock
|
67
|
+
# .ruby-version
|
68
|
+
# .ruby-gemset
|
69
|
+
|
70
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
71
|
+
.rvmrc
|
72
|
+
|
73
|
+
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
|
74
|
+
# .rubocop-https?--*
|
75
|
+
|
76
|
+
|
77
|
+
#### jetbrains ####
|
78
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
79
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
80
|
+
|
81
|
+
# User-specific stuff
|
82
|
+
.idea/**/workspace.xml
|
83
|
+
.idea/**/tasks.xml
|
84
|
+
.idea/**/usage.statistics.xml
|
85
|
+
.idea/**/dictionaries
|
86
|
+
.idea/**/shelf
|
87
|
+
|
88
|
+
# Generated files
|
89
|
+
.idea/**/contentModel.xml
|
25
90
|
|
26
|
-
#
|
91
|
+
# Sensitive or high-churn files
|
92
|
+
.idea/**/dataSources/
|
93
|
+
.idea/**/dataSources.ids
|
94
|
+
.idea/**/dataSources.local.xml
|
95
|
+
.idea/**/sqlDataSources.xml
|
96
|
+
.idea/**/dynamic.xml
|
97
|
+
.idea/**/uiDesigner.xml
|
98
|
+
.idea/**/dbnavigator.xml
|
27
99
|
|
28
|
-
|
100
|
+
# Gradle
|
101
|
+
.idea/**/gradle.xml
|
102
|
+
.idea/**/libraries
|
29
103
|
|
30
|
-
#
|
104
|
+
# Gradle and Maven with auto-import
|
105
|
+
# When using Gradle or Maven with auto-import, you should exclude module files,
|
106
|
+
# since they will be recreated, and may cause churn. Uncomment if using
|
107
|
+
# auto-import.
|
108
|
+
# .idea/artifacts
|
109
|
+
# .idea/compiler.xml
|
110
|
+
# .idea/jarRepositories.xml
|
111
|
+
# .idea/modules.xml
|
112
|
+
# .idea/*.iml
|
113
|
+
# .idea/modules
|
114
|
+
# *.iml
|
115
|
+
# *.ipr
|
31
116
|
|
32
|
-
|
117
|
+
# CMake
|
118
|
+
cmake-build-*/
|
33
119
|
|
34
|
-
#
|
120
|
+
# Mongo Explorer plugin
|
121
|
+
.idea/**/mongoSettings.xml
|
35
122
|
|
36
|
-
|
37
|
-
*.ipr
|
123
|
+
# File-based project format
|
38
124
|
*.iws
|
39
|
-
*.ids
|
40
|
-
.rakeTasks
|
41
125
|
|
42
|
-
#
|
126
|
+
# IntelliJ
|
127
|
+
out/
|
43
128
|
|
129
|
+
# mpeltonen/sbt-idea plugin
|
130
|
+
.idea_modules/
|
131
|
+
|
132
|
+
# JIRA plugin
|
133
|
+
atlassian-ide-plugin.xml
|
134
|
+
|
135
|
+
# Cursive Clojure plugin
|
136
|
+
.idea/replstate.xml
|
137
|
+
|
138
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
139
|
+
com_crashlytics_export_strings.xml
|
140
|
+
crashlytics.properties
|
141
|
+
crashlytics-build.properties
|
142
|
+
fabric.properties
|
143
|
+
|
144
|
+
# Editor-based Rest Client
|
145
|
+
.idea/httpRequests
|
146
|
+
|
147
|
+
# Android studio 3.1+ serialized cache file
|
148
|
+
.idea/caches/build_file_checksums.ser
|
149
|
+
|
150
|
+
|
151
|
+
#### emacs ####
|
152
|
+
# -*- mode: gitignore; -*-
|
44
153
|
*~
|
45
|
-
|
46
|
-
|
154
|
+
\#*\#
|
155
|
+
/.emacs.desktop
|
156
|
+
/.emacs.desktop.lock
|
157
|
+
*.elc
|
158
|
+
auto-save-list
|
159
|
+
tramp
|
160
|
+
.\#*
|
161
|
+
|
162
|
+
# Org-mode
|
163
|
+
.org-id-locations
|
164
|
+
*_archive
|
165
|
+
|
166
|
+
# flymake-mode
|
167
|
+
*_flymake.*
|
168
|
+
|
169
|
+
# eshell files
|
170
|
+
/eshell/history
|
171
|
+
/eshell/lastdir
|
172
|
+
|
173
|
+
# elpa packages
|
174
|
+
/elpa/
|
175
|
+
|
176
|
+
# reftex files
|
177
|
+
*.rel
|
178
|
+
|
179
|
+
# AUCTeX auto folder
|
180
|
+
/auto/
|
47
181
|
|
48
|
-
#
|
182
|
+
# cask packages
|
183
|
+
.cask/
|
184
|
+
dist/
|
49
185
|
|
186
|
+
# Flycheck
|
187
|
+
flycheck_*.el
|
188
|
+
|
189
|
+
# server auth directory
|
190
|
+
/server/
|
191
|
+
|
192
|
+
# projectiles files
|
193
|
+
.projectile
|
194
|
+
|
195
|
+
# directory configuration
|
196
|
+
.dir-locals.el
|
197
|
+
|
198
|
+
# network security
|
199
|
+
/network-security.data
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
#### macos ####
|
204
|
+
# General
|
50
205
|
.DS_Store
|
206
|
+
.AppleDouble
|
207
|
+
.LSOverride
|
208
|
+
|
209
|
+
# Icon must end with two \r
|
210
|
+
Icon
|
211
|
+
|
212
|
+
|
213
|
+
# Thumbnails
|
214
|
+
._*
|
215
|
+
|
216
|
+
# Files that might appear in the root of a volume
|
217
|
+
.DocumentRevisions-V100
|
218
|
+
.fseventsd
|
219
|
+
.Spotlight-V100
|
220
|
+
.TemporaryItems
|
221
|
+
.Trashes
|
222
|
+
.VolumeIcon.icns
|
223
|
+
.com.apple.timemachine.donotpresent
|
224
|
+
|
225
|
+
# Directories potentially created on remote AFP share
|
226
|
+
.AppleDB
|
227
|
+
.AppleDesktop
|
228
|
+
Network Trash Folder
|
229
|
+
Temporary Items
|
230
|
+
.apdisk
|
data/.idea/.rakeTasks
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Settings><!--This file was automatically generated by Ruby plugin.
|
3
|
+
You are allowed to:
|
4
|
+
1. Remove rake task
|
5
|
+
2. Add existing rake tasks
|
6
|
+
To add existing rake tasks automatically delete this file and reload the project.
|
7
|
+
--><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Run all unit tests with coverage" fullCmd="coverage" taksId="coverage" /><RakeTask description="Run unit tests, check test coverage, run acceptance tests, check code style" fullCmd="default" taksId="default" /><RakeTask description="Run RuboCop" fullCmd="rubocop" taksId="rubocop" /><RakeGroup description="" fullCmd="" taksId="rubocop"><RakeTask description="Auto-correct RuboCop offenses" fullCmd="rubocop:auto_correct" taksId="auto_correct" /></RakeGroup><RakeTask description="Run all tests" fullCmd="spec" taksId="spec" /><RakeGroup description="" fullCmd="" taksId="spec"><RakeTask description="Run all unit tests" fullCmd="spec:unit" taksId="unit" /><RakeTask description="" fullCmd="spec:all" taksId="all" /></RakeGroup><RakeTask description="List TODOs (from spec/todo.rb)" fullCmd="todo" taksId="todo" /></RakeGroup></Settings>
|
@@ -0,0 +1,45 @@
|
|
1
|
+
<component name="ProjectCodeStyleConfiguration">
|
2
|
+
<code_scheme name="Project" version="173">
|
3
|
+
<Properties>
|
4
|
+
<option name="KEEP_BLANK_LINES" value="true" />
|
5
|
+
</Properties>
|
6
|
+
<Python>
|
7
|
+
<option name="DICT_NEW_LINE_AFTER_LEFT_BRACE" value="true" />
|
8
|
+
<option name="DICT_NEW_LINE_BEFORE_RIGHT_BRACE" value="true" />
|
9
|
+
</Python>
|
10
|
+
<Shell_Script>
|
11
|
+
<option name="REDIRECT_FOLLOWED_BY_SPACE" value="true" />
|
12
|
+
</Shell_Script>
|
13
|
+
<codeStyleSettings language="Groovy">
|
14
|
+
<indentOptions>
|
15
|
+
<option name="INDENT_SIZE" value="2" />
|
16
|
+
<option name="CONTINUATION_INDENT_SIZE" value="4" />
|
17
|
+
<option name="TAB_SIZE" value="2" />
|
18
|
+
</indentOptions>
|
19
|
+
</codeStyleSettings>
|
20
|
+
<codeStyleSettings language="HTML">
|
21
|
+
<option name="RIGHT_MARGIN" value="200" />
|
22
|
+
<indentOptions>
|
23
|
+
<option name="INDENT_SIZE" value="2" />
|
24
|
+
<option name="CONTINUATION_INDENT_SIZE" value="4" />
|
25
|
+
<option name="TAB_SIZE" value="2" />
|
26
|
+
</indentOptions>
|
27
|
+
</codeStyleSettings>
|
28
|
+
<codeStyleSettings language="JAVA">
|
29
|
+
<option name="IF_BRACE_FORCE" value="3" />
|
30
|
+
<option name="DOWHILE_BRACE_FORCE" value="3" />
|
31
|
+
<option name="WHILE_BRACE_FORCE" value="3" />
|
32
|
+
<option name="FOR_BRACE_FORCE" value="3" />
|
33
|
+
<indentOptions>
|
34
|
+
<option name="CONTINUATION_INDENT_SIZE" value="4" />
|
35
|
+
</indentOptions>
|
36
|
+
</codeStyleSettings>
|
37
|
+
<codeStyleSettings language="ruby">
|
38
|
+
<option name="SPACE_WITHIN_BRACES" value="true" />
|
39
|
+
<indentOptions>
|
40
|
+
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
41
|
+
<option name="USE_RELATIVE_INDENTS" value="false" />
|
42
|
+
</indentOptions>
|
43
|
+
</codeStyleSettings>
|
44
|
+
</code_scheme>
|
45
|
+
</component>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<component name="InspectionProjectProfileManager">
|
2
|
+
<profile version="1.0">
|
3
|
+
<option name="myName" value="Project Default" />
|
4
|
+
<inspection_tool class="GoNameStartsWithPackageName" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
|
5
|
+
<inspection_tool class="GoSnakeCaseUsage" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
|
6
|
+
<inspection_tool class="GoUnusedGlobalVariable" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
|
7
|
+
<inspection_tool class="GoUnusedVariable" enabled="true" level="WARNING" enabled_by_default="true" />
|
8
|
+
<inspection_tool class="GrazieInspection" enabled="false" level="TYPO" enabled_by_default="false" />
|
9
|
+
<inspection_tool class="Rubocop" enabled="false" level="WARNING" enabled_by_default="false" />
|
10
|
+
<inspection_tool class="RubyMismatchedArgumentType" enabled="true" level="WEAK WARNING" enabled_by_default="true" editorAttributes="INFO_ATTRIBUTES" />
|
11
|
+
<inspection_tool class="RubyStringKeysInHashInspection" enabled="true" level="INFORMATION" enabled_by_default="true" />
|
12
|
+
<inspection_tool class="SpellCheckingInspection" enabled="false" level="TYPO" enabled_by_default="false">
|
13
|
+
<option name="processCode" value="true" />
|
14
|
+
<option name="processLiterals" value="true" />
|
15
|
+
<option name="processComments" value="true" />
|
16
|
+
</inspection_tool>
|
17
|
+
</profile>
|
18
|
+
</component>
|
data/.idea/misc.xml
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="JavaScriptSettings">
|
4
|
+
<option name="languageLevel" value="ES6" />
|
5
|
+
</component>
|
6
|
+
<component name="ProjectRootManager" version="2" languageLevel="JDK_13" project-jdk-name="13" project-jdk-type="JavaSDK">
|
7
|
+
<output url="file://$PROJECT_DIR$/out" />
|
8
|
+
</component>
|
9
|
+
</project>
|
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/typesafe_enum.iml" filepath="$PROJECT_DIR$/.idea/typesafe_enum.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
@@ -0,0 +1,78 @@
|
|
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" inherit-compiler-output="true">
|
7
|
+
<exclude-output />
|
8
|
+
<content url="file://$MODULE_DIR$" />
|
9
|
+
<orderEntry type="jdk" jdkName="RVM: ruby-2.7.4" jdkType="RUBY_SDK" />
|
10
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
11
|
+
<orderEntry type="library" scope="PROVIDED" name="ansi (v1.5.0, RVM: ruby-2.7.4) [gem]" level="application" />
|
12
|
+
<orderEntry type="library" scope="PROVIDED" name="ast (v2.4.2, RVM: ruby-2.7.4) [gem]" level="application" />
|
13
|
+
<orderEntry type="library" scope="PROVIDED" name="builder (v3.2.4, RVM: ruby-2.7.4) [gem]" level="application" />
|
14
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v2.2.31, RVM: ruby-2.7.4) [gem]" level="application" />
|
15
|
+
<orderEntry type="library" scope="PROVIDED" name="ci_reporter (v2.0.0, RVM: ruby-2.7.4) [gem]" level="application" />
|
16
|
+
<orderEntry type="library" scope="PROVIDED" name="ci_reporter_rspec (v1.0.0, RVM: ruby-2.7.4) [gem]" level="application" />
|
17
|
+
<orderEntry type="library" scope="PROVIDED" name="colorize (v0.8.1, RVM: ruby-2.7.4) [gem]" level="application" />
|
18
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.5.0, RVM: ruby-2.7.4) [gem]" level="application" />
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="docile (v1.4.0, RVM: ruby-2.7.4) [gem]" level="application" />
|
20
|
+
<orderEntry type="library" scope="PROVIDED" name="parallel (v1.22.1, RVM: ruby-2.7.4) [gem]" level="application" />
|
21
|
+
<orderEntry type="library" scope="PROVIDED" name="parser (v3.1.2.1, RVM: ruby-2.7.4) [gem]" level="application" />
|
22
|
+
<orderEntry type="library" scope="PROVIDED" name="rainbow (v3.1.1, RVM: ruby-2.7.4) [gem]" level="application" />
|
23
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v13.0.6, RVM: ruby-2.7.4) [gem]" level="application" />
|
24
|
+
<orderEntry type="library" scope="PROVIDED" name="regexp_parser (v2.6.0, RVM: ruby-2.7.4) [gem]" level="application" />
|
25
|
+
<orderEntry type="library" scope="PROVIDED" name="rexml (v3.2.5, RVM: ruby-2.7.4) [gem]" level="application" />
|
26
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.12.0, RVM: ruby-2.7.4) [gem]" level="application" />
|
27
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.12.0, RVM: ruby-2.7.4) [gem]" level="application" />
|
28
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.12.0, RVM: ruby-2.7.4) [gem]" level="application" />
|
29
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.12.0, RVM: ruby-2.7.4) [gem]" level="application" />
|
30
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.12.0, RVM: ruby-2.7.4) [gem]" level="application" />
|
31
|
+
<orderEntry type="library" scope="PROVIDED" name="rubocop (v0.91.0, RVM: ruby-2.7.4) [gem]" level="application" />
|
32
|
+
<orderEntry type="library" scope="PROVIDED" name="rubocop-ast (v0.8.0, RVM: ruby-2.7.4) [gem]" level="application" />
|
33
|
+
<orderEntry type="library" scope="PROVIDED" name="ruby-progressbar (v1.11.0, RVM: ruby-2.7.4) [gem]" level="application" />
|
34
|
+
<orderEntry type="library" scope="PROVIDED" name="simplecov (v0.21.2, RVM: ruby-2.7.4) [gem]" level="application" />
|
35
|
+
<orderEntry type="library" scope="PROVIDED" name="simplecov-console (v0.9.1, RVM: ruby-2.7.4) [gem]" level="application" />
|
36
|
+
<orderEntry type="library" scope="PROVIDED" name="simplecov-html (v0.12.3, RVM: ruby-2.7.4) [gem]" level="application" />
|
37
|
+
<orderEntry type="library" scope="PROVIDED" name="simplecov_json_formatter (v0.1.4, RVM: ruby-2.7.4) [gem]" level="application" />
|
38
|
+
<orderEntry type="library" scope="PROVIDED" name="terminal-table (v3.0.2, RVM: ruby-2.7.4) [gem]" level="application" />
|
39
|
+
<orderEntry type="library" scope="PROVIDED" name="unicode-display_width (v1.8.0, RVM: ruby-2.7.4) [gem]" level="application" />
|
40
|
+
<orderEntry type="library" scope="PROVIDED" name="webrick (v1.7.0, RVM: ruby-2.7.4) [gem]" level="application" />
|
41
|
+
<orderEntry type="library" scope="PROVIDED" name="yard (v0.9.28, RVM: ruby-2.7.4) [gem]" level="application" />
|
42
|
+
</component>
|
43
|
+
<component name="RModuleSettingsStorage">
|
44
|
+
<LOAD_PATH number="2" string0="$MODULE_DIR$/lib" string1="$MODULE_DIR$/spec" />
|
45
|
+
<I18N_FOLDERS number="0" />
|
46
|
+
</component>
|
47
|
+
<component name="RakeTasksCache">
|
48
|
+
<option name="myRootTask">
|
49
|
+
<RakeTaskImpl id="rake">
|
50
|
+
<subtasks>
|
51
|
+
<RakeTaskImpl description="Run all specs in spec directory, with coverage" fullCommand="coverage" id="coverage" />
|
52
|
+
<RakeTaskImpl description="Run tests, check test coverage, check code style, build gem" fullCommand="default" id="default" />
|
53
|
+
<RakeTaskImpl description="Build typesafe_enum.gemspec as typesafe_enum-0.3.1.gem" fullCommand="gem" id="gem" />
|
54
|
+
<RakeTaskImpl description="Run RuboCop with auto-correct, and output results to console" fullCommand="ra" id="ra" />
|
55
|
+
<RakeTaskImpl description="Run rubocop with HTML output" fullCommand="rubocop" id="rubocop" />
|
56
|
+
<RakeTaskImpl id="rubocop">
|
57
|
+
<subtasks>
|
58
|
+
<RakeTaskImpl description="Auto-correct RuboCop offenses" fullCommand="rubocop:auto_correct" id="auto_correct" />
|
59
|
+
</subtasks>
|
60
|
+
</RakeTaskImpl>
|
61
|
+
<RakeTaskImpl description="Run RSpec code examples" fullCommand="spec" id="spec" />
|
62
|
+
<RakeTaskImpl id="ci">
|
63
|
+
<subtasks>
|
64
|
+
<RakeTaskImpl id="setup">
|
65
|
+
<subtasks>
|
66
|
+
<RakeTaskImpl description="" fullCommand="ci:setup:rspec" id="rspec" />
|
67
|
+
<RakeTaskImpl description="" fullCommand="ci:setup:rspecbase" id="rspecbase" />
|
68
|
+
<RakeTaskImpl description="" fullCommand="ci:setup:rspecdoc" id="rspecdoc" />
|
69
|
+
<RakeTaskImpl description="" fullCommand="ci:setup:spec_report_cleanup" id="spec_report_cleanup" />
|
70
|
+
</subtasks>
|
71
|
+
</RakeTaskImpl>
|
72
|
+
</subtasks>
|
73
|
+
</RakeTaskImpl>
|
74
|
+
</subtasks>
|
75
|
+
</RakeTaskImpl>
|
76
|
+
</option>
|
77
|
+
</component>
|
78
|
+
</module>
|