greeenboii 0.1.5 → 0.1.7

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.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/.idea/dataSources.local.xml +1 -1
  3. data/.idea/greeenboii.iml +0 -2
  4. data/.idea/vcs.xml +1 -0
  5. data/.idea/workspace.xml +154 -123
  6. data/.rubocop.sorbet.yml +5 -0
  7. data/.rubocop.yml +36 -0
  8. data/README.md +5 -0
  9. data/exe/greeenboii +1 -1
  10. data/lib/greeenboii/version.rb +5 -5
  11. data/lib/greeenboii.rb +447 -234
  12. data/sig/greeenboii/todo_list.rbs +30 -0
  13. data/sorbet/rbi/gems/.gitattributes +1 -0
  14. data/sorbet/rbi/gems/ast@2.4.2.rbi +585 -0
  15. data/sorbet/rbi/gems/benchmark@0.4.0.rbi +618 -0
  16. data/sorbet/rbi/gems/bigdecimal@3.1.9.rbi +9 -0
  17. data/sorbet/rbi/gems/cli-ui@2.3.0.rbi +3181 -0
  18. data/sorbet/rbi/gems/console_table@0.3.1.rbi +78 -0
  19. data/sorbet/rbi/gems/csv@3.3.2.rbi +9 -0
  20. data/sorbet/rbi/gems/erubi@1.13.1.rbi +155 -0
  21. data/sorbet/rbi/gems/httparty@0.22.0.rbi +2115 -0
  22. data/sorbet/rbi/gems/json@2.10.1.rbi +2120 -0
  23. data/sorbet/rbi/gems/language_server-protocol@3.17.0.4.rbi +9 -0
  24. data/sorbet/rbi/gems/lint_roller@1.1.0.rbi +86 -0
  25. data/sorbet/rbi/gems/mini_mime@1.1.5.rbi +9 -0
  26. data/sorbet/rbi/gems/minitest@5.25.4.rbi +1547 -0
  27. data/sorbet/rbi/gems/multi_xml@0.7.1.rbi +9 -0
  28. data/sorbet/rbi/gems/netrc@0.11.0.rbi +159 -0
  29. data/sorbet/rbi/gems/nokogiri@1.18.3.rbi +8205 -0
  30. data/sorbet/rbi/gems/parallel@1.26.3.rbi +291 -0
  31. data/sorbet/rbi/gems/parser@3.3.7.1.rbi +5525 -0
  32. data/sorbet/rbi/gems/prism@1.3.0.rbi +41403 -0
  33. data/sorbet/rbi/gems/racc@1.8.1.rbi +164 -0
  34. data/sorbet/rbi/gems/rainbow@3.1.1.rbi +403 -0
  35. data/sorbet/rbi/gems/rake-compiler@1.2.9.rbi +9 -0
  36. data/sorbet/rbi/gems/rake@13.2.1.rbi +3028 -0
  37. data/sorbet/rbi/gems/rbi@0.2.4.rbi +4542 -0
  38. data/sorbet/rbi/gems/regexp_parser@2.10.0.rbi +3795 -0
  39. data/sorbet/rbi/gems/rubocop-ast@1.38.0.rbi +7654 -0
  40. data/sorbet/rbi/gems/rubocop@1.72.2.rbi +61026 -0
  41. data/sorbet/rbi/gems/ruby-progressbar@1.13.0.rbi +1318 -0
  42. data/sorbet/rbi/gems/spoom@1.5.4.rbi +5026 -0
  43. data/sorbet/rbi/gems/sqlite3@2.6.0.rbi +1895 -0
  44. data/sorbet/rbi/gems/tapioca@0.16.11.rbi +3656 -0
  45. data/sorbet/rbi/gems/thor@1.3.2.rbi +4378 -0
  46. data/sorbet/rbi/gems/unicode-display_width@3.1.4.rbi +132 -0
  47. data/sorbet/rbi/gems/unicode-emoji@4.0.4.rbi +251 -0
  48. data/sorbet/rbi/gems/yard-sorbet@0.9.0.rbi +435 -0
  49. data/sorbet/rbi/gems/yard@0.9.37.rbi +18379 -0
  50. data/sorbet/tapioca/require.rb +6 -0
  51. metadata +47 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1032461384e80da2ac012ecae78e755cca153986a41f95cb96939a39e03ee144
4
- data.tar.gz: 2e8277cc9703fd090e641a5b26c39ce1625eb521faf92b28f4d4c0d958fa851e
3
+ metadata.gz: 65486d1f3e3329ec2dc7b1606a448df0376f91b10c75e7d08371dda02433c197
4
+ data.tar.gz: 2368a3d3a2975889043dbe5f1e9fb3b70fd5e8a09401c70be7b67f87e69cf10c
5
5
  SHA512:
6
- metadata.gz: 80e18f5503fd985fe8925c8fee6f3456687d56d8649d2ddd5045069543c50cb9752a61d8138aa7669185ce1246819566d81ecaa4b5629cf621725ba16d705e04
7
- data.tar.gz: ad153530aedfb2a5133ba680e1ffe882dff1f12be293f44d878ffcdb89e25092c37a694b9a021a34baf9f8d290bdb667ea89d2bbb0fd5ea479b93ea3cc9e88e8
6
+ metadata.gz: aa9ba9383476f4d55edebc4abab696c221c9978bbae8d8b9e5bc6566c72602ff54a68135af728c26ed019572628f3535459727f5705971c2050af8a9ed973d70
7
+ data.tar.gz: 767860091449755fa065f55c716de057401770266194fa817cc9237e14615e3dae94664c1966bb57ccccf2ff428ef54273922784c90757c9b62d356cb826257e
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <project version="4">
3
- <component name="dataSourceStorageLocal" created-in="RM-243.23654.167">
3
+ <component name="dataSourceStorageLocal" created-in="RM-243.26053.19">
4
4
  <data-source name="greeenboii_todo.db" uuid="28fe2501-d682-44de-9f2e-9ff4bf02ce84">
5
5
  <database-info product="SQLite" version="3.45.1" jdbc-version="4.2" driver-name="SQLite JDBC" driver-version="3.45.1.0" dbms="SQLITE" exact-version="3.45.1" exact-driver-version="3.45">
6
6
  <identifier-quote-string>&quot;</identifier-quote-string>
data/.idea/greeenboii.iml CHANGED
@@ -18,12 +18,10 @@
18
18
  <orderEntry type="library" scope="PROVIDED" name="console_table (v0.3.1, ruby-3.2.4-p170) [gem]" level="application" />
19
19
  <orderEntry type="library" scope="PROVIDED" name="csv (v3.3.2, ruby-3.2.4-p170) [gem]" level="application" />
20
20
  <orderEntry type="library" scope="PROVIDED" name="httparty (v0.22.0, ruby-3.2.4-p170) [gem]" level="application" />
21
- <orderEntry type="library" scope="PROVIDED" name="json (v2.10.1, ruby-3.2.4-p170) [gem]" level="application" />
22
21
  <orderEntry type="library" scope="PROVIDED" name="language_server-protocol (v3.17.0.4, ruby-3.2.4-p170) [gem]" level="application" />
23
22
  <orderEntry type="library" scope="PROVIDED" name="mini_mime (v1.1.5, ruby-3.2.4-p170) [gem]" level="application" />
24
23
  <orderEntry type="library" scope="PROVIDED" name="minitest (v5.25.4, ruby-3.2.4-p170) [gem]" level="application" />
25
24
  <orderEntry type="library" scope="PROVIDED" name="multi_xml (v0.7.1, ruby-3.2.4-p170) [gem]" level="application" />
26
- <orderEntry type="library" scope="PROVIDED" name="nokogiri (v1.18.3, ruby-3.2.4-p170) [gem]" level="application" />
27
25
  <orderEntry type="library" scope="PROVIDED" name="parallel (v1.26.3, ruby-3.2.4-p170) [gem]" level="application" />
28
26
  <orderEntry type="library" scope="PROVIDED" name="parser (v3.3.7.1, ruby-3.2.4-p170) [gem]" level="application" />
29
27
  <orderEntry type="library" scope="PROVIDED" name="racc (v1.8.1, ruby-3.2.4-p170) [gem]" level="application" />
data/.idea/vcs.xml CHANGED
@@ -2,5 +2,6 @@
2
2
  <project version="4">
3
3
  <component name="VcsDirectoryMappings">
4
4
  <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
+ <mapping directory="$PROJECT_DIR$/nextjs-project" vcs="Git" />
5
6
  </component>
6
7
  </project>
data/.idea/workspace.xml CHANGED
@@ -1,139 +1,170 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="AutoImportSettings">
4
- <option name="autoReloadType" value="SELECTIVE" />
5
- </component>
6
- <component name="ChangeListManager">
7
- <list default="true" id="0fa98f61-8369-4575-be76-5316c7df88b7" name="Changes" comment="Add Makefile and main.c for greeenboii module initialization">
8
- <change beforePath="$PROJECT_DIR$/.idea/greeenboii.iml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/greeenboii.iml" afterDir="false" />
9
- <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
10
- <change beforePath="$PROJECT_DIR$/Gemfile" beforeDir="false" afterPath="$PROJECT_DIR$/Gemfile" afterDir="false" />
11
- <change beforePath="$PROJECT_DIR$/Gemfile.lock" beforeDir="false" afterPath="$PROJECT_DIR$/Gemfile.lock" afterDir="false" />
12
- <change beforePath="$PROJECT_DIR$/lib/greeenboii.rb" beforeDir="false" afterPath="$PROJECT_DIR$/lib/greeenboii.rb" afterDir="false" />
13
- <change beforePath="$PROJECT_DIR$/lib/greeenboii/version.rb" beforeDir="false" afterPath="$PROJECT_DIR$/lib/greeenboii/version.rb" afterDir="false" />
14
- </list>
15
- <option name="SHOW_DIALOG" value="false" />
16
- <option name="HIGHLIGHT_CONFLICTS" value="true" />
17
- <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
18
- <option name="LAST_RESOLUTION" value="IGNORE" />
19
- </component>
20
- <component name="FileTemplateManagerImpl">
21
- <option name="RECENT_TEMPLATES">
22
- <list>
23
- <option value="RBS Class" />
24
- </list>
25
- </option>
26
- </component>
27
- <component name="Git.Settings">
28
- <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
29
- </component>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="AutoImportSettings">
4
+ <option name="autoReloadType" value="SELECTIVE" />
5
+ </component>
6
+ <component name="ChangeListManager">
7
+ <list default="true" id="0fa98f61-8369-4575-be76-5316c7df88b7" name="Changes" comment="Refactor template installation process and update version to 0.1.7" />
8
+ <option name="SHOW_DIALOG" value="false" />
9
+ <option name="HIGHLIGHT_CONFLICTS" value="true" />
10
+ <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
11
+ <option name="LAST_RESOLUTION" value="IGNORE" />
12
+ </component>
13
+ <component name="FileTemplateManagerImpl">
14
+ <option name="RECENT_TEMPLATES">
15
+ <list>
16
+ <option value="RBS Class" />
17
+ </list>
18
+ </option>
19
+ </component>
20
+ <component name="Git.Settings">
21
+ <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
22
+ <option name="UPDATE_TYPE" value="REBASE" />
23
+ </component>
30
24
  <component name="GitHubPullRequestSearchHistory">{
31
25
  &quot;lastFilter&quot;: {
32
26
  &quot;state&quot;: &quot;OPEN&quot;,
33
27
  &quot;assignee&quot;: &quot;greeenboi&quot;
34
28
  }
35
- }</component>
29
+ }</component>
36
30
  <component name="GithubPullRequestsUISettings">{
37
31
  &quot;selectedUrlAndAccountId&quot;: {
38
32
  &quot;url&quot;: &quot;https://github.com/greeenboi/greeenboii.git&quot;,
39
33
  &quot;accountId&quot;: &quot;978466ca-1190-4215-a801-ef0a654296e3&quot;
40
34
  }
41
- }</component>
35
+ }</component>
42
36
  <component name="ProjectColorInfo">{
43
37
  &quot;associatedIndex&quot;: 4
44
- }</component>
45
- <component name="ProjectId" id="2tRLehb4s0tbSzZEro6guxVspsh" />
46
- <component name="ProjectViewState">
47
- <option name="hideEmptyMiddlePackages" value="true" />
48
- <option name="showLibraryContents" value="true" />
49
- </component>
50
- <component name="PropertiesComponent"><![CDATA[{
51
- "keyToString": {
52
- "Ruby.greeenboii.executor": "Run",
53
- "RunOnceActivity.ShowReadmeOnStart": "true",
54
- "RunOnceActivity.git.unshallow": "true",
55
- "git-widget-placeholder": "main",
56
- "last_opened_file_path": "C:/Users/suvan/Downloads/cli-kit-example-main-yee/cli-kit-example-main",
57
- "node.js.detected.package.eslint": "true",
58
- "node.js.detected.package.tslint": "true",
59
- "node.js.selected.package.eslint": "(autodetect)",
60
- "node.js.selected.package.tslint": "(autodetect)",
61
- "nodejs_package_manager_path": "npm",
62
- "ruby.structure.view.model.defaults.configured": "true",
63
- "settings.editor.selected.configurable": "preferences.pluginManager",
64
- "vue.rearranger.settings.migration": "true"
38
+ }</component>
39
+ <component name="ProjectId" id="2tRLehb4s0tbSzZEro6guxVspsh" />
40
+ <component name="ProjectViewState">
41
+ <option name="hideEmptyMiddlePackages" value="true" />
42
+ <option name="showLibraryContents" value="true" />
43
+ </component>
44
+ <component name="PropertiesComponent">{
45
+ &quot;keyToString&quot;: {
46
+ &quot;Ruby.greeenboii.executor&quot;: &quot;Run&quot;,
47
+ &quot;RunOnceActivity.ShowReadmeOnStart&quot;: &quot;true&quot;,
48
+ &quot;RunOnceActivity.git.unshallow&quot;: &quot;true&quot;,
49
+ &quot;git-widget-placeholder&quot;: &quot;main&quot;,
50
+ &quot;last_opened_file_path&quot;: &quot;C:/Users/suvan/Downloads/cli-kit-example-main-yee/cli-kit-example-main&quot;,
51
+ &quot;node.js.detected.package.eslint&quot;: &quot;true&quot;,
52
+ &quot;node.js.detected.package.tslint&quot;: &quot;true&quot;,
53
+ &quot;node.js.selected.package.eslint&quot;: &quot;(autodetect)&quot;,
54
+ &quot;node.js.selected.package.tslint&quot;: &quot;(autodetect)&quot;,
55
+ &quot;nodejs_package_manager_path&quot;: &quot;npm&quot;,
56
+ &quot;ruby.structure.view.model.defaults.configured&quot;: &quot;true&quot;,
57
+ &quot;settings.editor.selected.configurable&quot;: &quot;project.propVCSSupport.DirectoryMappings&quot;,
58
+ &quot;vue.rearranger.settings.migration&quot;: &quot;true&quot;
65
59
  },
66
- "keyToStringList": {
67
- "DatabaseDriversLRU": [
68
- "sqlite"
60
+ &quot;keyToStringList&quot;: {
61
+ &quot;DatabaseDriversLRU&quot;: [
62
+ &quot;sqlite&quot;
69
63
  ]
70
64
  }
71
- }]]></component>
72
- <component name="SharedIndexes">
73
- <attachedChunks>
74
- <set>
75
- <option value="bundled-js-predefined-d6986cc7102b-822845ee3bb5-JavaScript-RM-243.23654.167" />
76
- </set>
77
- </attachedChunks>
78
- </component>
79
- <component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
80
- <component name="SpringUtil" SPRING_PRE_LOADER_OPTION="true" RAKE_SPRING_PRE_LOADER_OPTION="true" RAILS_SPRING_PRE_LOADER_OPTION="true" />
81
- <component name="TaskManager">
82
- <task active="true" id="Default" summary="Default task">
83
- <changelist id="0fa98f61-8369-4575-be76-5316c7df88b7" name="Changes" comment="" />
84
- <created>1740310037191</created>
85
- <option name="number" value="Default" />
86
- <option name="presentableId" value="Default" />
87
- <updated>1740310037191</updated>
88
- <workItem from="1740310038341" duration="13422000" />
89
- <workItem from="1740370363540" duration="1662000" />
90
- </task>
91
- <task id="LOCAL-00001" summary="update branch for push events from master to production">
92
- <option name="closed" value="true" />
93
- <created>1740319769137</created>
94
- <option name="number" value="00001" />
95
- <option name="presentableId" value="LOCAL-00001" />
96
- <option name="project" value="LOCAL" />
97
- <updated>1740319769137</updated>
98
- </task>
99
- <task id="LOCAL-00002" summary="Add RBS classes for Error, Options, and Search modules">
100
- <option name="closed" value="true" />
101
- <created>1740331580301</created>
102
- <option name="number" value="00002" />
103
- <option name="presentableId" value="LOCAL-00002" />
104
- <option name="project" value="LOCAL" />
105
- <updated>1740331580301</updated>
106
- </task>
107
- <task id="LOCAL-00003" summary="Add cli-ui gem dependency and update version to 0.1.2">
108
- <option name="closed" value="true" />
109
- <created>1740333019050</created>
110
- <option name="number" value="00003" />
111
- <option name="presentableId" value="LOCAL-00003" />
112
- <option name="project" value="LOCAL" />
113
- <updated>1740333019050</updated>
114
- </task>
115
- <task id="LOCAL-00004" summary="Add Makefile and main.c for greeenboii module initialization">
116
- <option name="closed" value="true" />
117
- <created>1740333983898</created>
118
- <option name="number" value="00004" />
119
- <option name="presentableId" value="LOCAL-00004" />
120
- <option name="project" value="LOCAL" />
121
- <updated>1740333983898</updated>
122
- </task>
123
- <option name="localTasksCounter" value="5" />
124
- <servers />
125
- </component>
126
- <component name="TypeScriptGeneratedFilesManager">
127
- <option name="version" value="3" />
128
- </component>
129
- <component name="VcsManagerConfiguration">
130
- <MESSAGE value="update branch for push events from master to production" />
131
- <MESSAGE value="Add RBS classes for Error, Options, and Search modules" />
132
- <MESSAGE value="Add cli-ui gem dependency and update version to 0.1.2" />
133
- <MESSAGE value="Add Makefile and main.c for greeenboii module initialization" />
134
- <option name="LAST_COMMIT_MESSAGE" value="Add Makefile and main.c for greeenboii module initialization" />
135
- </component>
136
- <component name="com.intellij.coverage.CoverageDataManagerImpl">
137
- <SUITE FILE_PATH="coverage/greeenboii@greeenboii.rcov" NAME="greeenboii Coverage Results" MODIFIED="1740333917319" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="false" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="greeenboii" />
138
- </component>
65
+ }</component>
66
+ <component name="SharedIndexes">
67
+ <attachedChunks>
68
+ <set>
69
+ <option value="bundled-js-predefined-d6986cc7102b-1632447f56bf-JavaScript-RM-243.26053.19" />
70
+ </set>
71
+ </attachedChunks>
72
+ </component>
73
+ <component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
74
+ <component name="SpringUtil" SPRING_PRE_LOADER_OPTION="true" RAKE_SPRING_PRE_LOADER_OPTION="true" RAILS_SPRING_PRE_LOADER_OPTION="true" />
75
+ <component name="TaskManager">
76
+ <task active="true" id="Default" summary="Default task">
77
+ <changelist id="0fa98f61-8369-4575-be76-5316c7df88b7" name="Changes" comment="" />
78
+ <created>1740310037191</created>
79
+ <option name="number" value="Default" />
80
+ <option name="presentableId" value="Default" />
81
+ <updated>1740310037191</updated>
82
+ <workItem from="1740310038341" duration="13422000" />
83
+ <workItem from="1740370363540" duration="1955000" />
84
+ <workItem from="1740374525187" duration="497000" />
85
+ <workItem from="1740375046749" duration="1484000" />
86
+ <workItem from="1740471281016" duration="1186000" />
87
+ <workItem from="1740636562738" duration="602000" />
88
+ <workItem from="1740681832754" duration="657000" />
89
+ <workItem from="1741408597748" duration="754000" />
90
+ <workItem from="1742363661453" duration="2855000" />
91
+ <workItem from="1743160011121" duration="413000" />
92
+ <workItem from="1743160440458" duration="2415000" />
93
+ <workItem from="1743234713796" duration="815000" />
94
+ </task>
95
+ <task id="LOCAL-00001" summary="update branch for push events from master to production">
96
+ <option name="closed" value="true" />
97
+ <created>1740319769137</created>
98
+ <option name="number" value="00001" />
99
+ <option name="presentableId" value="LOCAL-00001" />
100
+ <option name="project" value="LOCAL" />
101
+ <updated>1740319769137</updated>
102
+ </task>
103
+ <task id="LOCAL-00002" summary="Add RBS classes for Error, Options, and Search modules">
104
+ <option name="closed" value="true" />
105
+ <created>1740331580301</created>
106
+ <option name="number" value="00002" />
107
+ <option name="presentableId" value="LOCAL-00002" />
108
+ <option name="project" value="LOCAL" />
109
+ <updated>1740331580301</updated>
110
+ </task>
111
+ <task id="LOCAL-00003" summary="Add cli-ui gem dependency and update version to 0.1.2">
112
+ <option name="closed" value="true" />
113
+ <created>1740333019050</created>
114
+ <option name="number" value="00003" />
115
+ <option name="presentableId" value="LOCAL-00003" />
116
+ <option name="project" value="LOCAL" />
117
+ <updated>1740333019050</updated>
118
+ </task>
119
+ <task id="LOCAL-00004" summary="Add Makefile and main.c for greeenboii module initialization">
120
+ <option name="closed" value="true" />
121
+ <created>1740333983898</created>
122
+ <option name="number" value="00004" />
123
+ <option name="presentableId" value="LOCAL-00004" />
124
+ <option name="project" value="LOCAL" />
125
+ <updated>1740333983898</updated>
126
+ </task>
127
+ <task id="LOCAL-00005" summary="Add RuboCop configuration for Sorbet and update gem dependencies">
128
+ <option name="closed" value="true" />
129
+ <created>1740375460765</created>
130
+ <option name="number" value="00005" />
131
+ <option name="presentableId" value="LOCAL-00005" />
132
+ <option name="project" value="LOCAL" />
133
+ <updated>1740375460765</updated>
134
+ </task>
135
+ <task id="LOCAL-00006" summary="Add WebsiteBuilder class for template installation and update data source configurations">
136
+ <option name="closed" value="true" />
137
+ <created>1743162474872</created>
138
+ <option name="number" value="00006" />
139
+ <option name="presentableId" value="LOCAL-00006" />
140
+ <option name="project" value="LOCAL" />
141
+ <updated>1743162474872</updated>
142
+ </task>
143
+ <task id="LOCAL-00007" summary="Refactor template installation process and update version to 0.1.7">
144
+ <option name="closed" value="true" />
145
+ <created>1743235413382</created>
146
+ <option name="number" value="00007" />
147
+ <option name="presentableId" value="LOCAL-00007" />
148
+ <option name="project" value="LOCAL" />
149
+ <updated>1743235413382</updated>
150
+ </task>
151
+ <option name="localTasksCounter" value="8" />
152
+ <servers />
153
+ </component>
154
+ <component name="TypeScriptGeneratedFilesManager">
155
+ <option name="version" value="3" />
156
+ </component>
157
+ <component name="VcsManagerConfiguration">
158
+ <MESSAGE value="update branch for push events from master to production" />
159
+ <MESSAGE value="Add RBS classes for Error, Options, and Search modules" />
160
+ <MESSAGE value="Add cli-ui gem dependency and update version to 0.1.2" />
161
+ <MESSAGE value="Add Makefile and main.c for greeenboii module initialization" />
162
+ <MESSAGE value="Add RuboCop configuration for Sorbet and update gem dependencies" />
163
+ <MESSAGE value="Add WebsiteBuilder class for template installation and update data source configurations" />
164
+ <MESSAGE value="Refactor template installation process and update version to 0.1.7" />
165
+ <option name="LAST_COMMIT_MESSAGE" value="Refactor template installation process and update version to 0.1.7" />
166
+ </component>
167
+ <component name="com.intellij.coverage.CoverageDataManagerImpl">
168
+ <SUITE FILE_PATH="coverage/greeenboii@greeenboii.rcov" NAME="greeenboii Coverage Results" MODIFIED="1743160185076" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="false" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="greeenboii" />
169
+ </component>
139
170
  </project>
@@ -0,0 +1,5 @@
1
+ Sorbet:
2
+ Enabled: true
3
+
4
+ Sorbet/ValidSigil:
5
+ Enabled: true
data/.rubocop.yml CHANGED
@@ -2,6 +2,42 @@ AllCops:
2
2
  TargetRubyVersion: 3.1
3
3
  NewCops: enable
4
4
 
5
+
6
+ Style/FrozenStringLiteralComment:
7
+ Enabled: false
8
+
9
+ # This doesn't understand that <<~ doesn't exist in 2.0
10
+ Layout/HeredocIndentation:
11
+ Enabled: false
12
+
13
+ # This doesn't take into account retrying from an exception
14
+ Lint/SuppressedException:
15
+ Enabled: false
16
+
17
+ # allow String.new to create mutable strings
18
+ Style/EmptyLiteral:
19
+ Enabled: false
20
+
21
+ # allow the use of globals which makes sense in a CLI app like this
22
+ Style/GlobalVars:
23
+ Enabled: false
24
+
25
+ # allow using %r{} for regexes
26
+ Style/RegexpLiteral:
27
+ Enabled: false
28
+
29
+ # allow readable Dev::Util.begin formatting
30
+ Style/MultilineBlockChain:
31
+ Enabled: false
32
+
33
+ # we prefer rescue to align with the beginning of the line containing begin, not begin itself
34
+ Layout/RescueEnsureAlignment:
35
+ Enabled: false
36
+
37
+ # We heavily manage output on purpose
38
+ Style/GlobalStdStream:
39
+ Enabled: false
40
+
5
41
  Style/StringLiterals:
6
42
  EnforcedStyle: double_quotes
7
43
 
data/README.md CHANGED
@@ -28,6 +28,11 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
28
28
 
29
29
  Bug reports and pull requests are welcome on GitHub at https://github.com/greeenboi/greeenboii. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/greeenboii/blob/master/CODE_OF_CONDUCT.md) and the [contributing guidelines](https://github.com/greeenboi/greeenboii/blob/main/CONTRIBUTING.md).
30
30
 
31
+ <details>
32
+ <summary>Stuffs ;)</summary>
33
+ https://github.com/aksharbarchha/Music-CLI/blob/master/Music-CLI.go
34
+ </details>
35
+
31
36
  ## License
32
37
 
33
38
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/exe/greeenboii CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
2
  # frozen_string_literal: true
3
3
 
4
- require_relative '../lib/greeenboii'
4
+ require_relative "../lib/greeenboii"
@@ -1,5 +1,5 @@
1
- # frozen_string_literal: true
2
-
3
- module Greeenboii
4
- VERSION = "0.1.5"
5
- end
1
+ # frozen_string_literal: true
2
+
3
+ module Greeenboii
4
+ VERSION = "0.1.7"
5
+ end