mona 0.2.3 → 0.4.0

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.

Potentially problematic release.


This version of mona might be problematic. Click here for more details.

Files changed (98) hide show
  1. data/.document +5 -0
  2. data/.rspec +0 -2
  3. data/.travis.yml +3 -0
  4. data/Gemfile +9 -0
  5. data/LICENSE.txt +17 -18
  6. data/README.md +2 -192
  7. data/Rakefile +46 -5
  8. data/VERSION +1 -0
  9. data/lib/mona/board.rb +50 -0
  10. data/lib/mona/client.rb +10 -0
  11. data/lib/mona/response.rb +27 -0
  12. data/lib/mona/thread.rb +64 -0
  13. data/lib/mona.rb +22 -105
  14. data/mona.gemspec +66 -47
  15. data/spec/board_spec.rb +27 -0
  16. data/spec/client_spec.rb +15 -0
  17. data/spec/mona_spec.rb +5 -0
  18. data/spec/response_spec.rb +39 -0
  19. data/spec/spec_helper.rb +12 -0
  20. data/spec/test_data/dat.txt +119 -0
  21. data/spec/test_data/subject.txt +2 -0
  22. data/spec/thread_spec.rb +68 -0
  23. metadata +75 -219
  24. checksums.yaml +0 -7
  25. data/.ruby-version +0 -1
  26. data/.standard.yml +0 -3
  27. data/CHANGELOG.md +0 -5
  28. data/CODE_OF_CONDUCT.md +0 -84
  29. data/example/Gemfile +0 -1
  30. data/example/Gemfile.lock +0 -51
  31. data/example/Monafile.rb +0 -16
  32. data/example/bounded_contexts/cart/cart_app/Package.rb +0 -11
  33. data/example/bounded_contexts/cart/cart_app/bin/console +0 -11
  34. data/example/bounded_contexts/cart/cart_app/package/cart_app.rb +0 -2
  35. data/example/bounded_contexts/cart/cart_core/Package.rb +0 -12
  36. data/example/bounded_contexts/cart/cart_core/bin/console +0 -9
  37. data/example/bounded_contexts/cart/cart_core/package/cart_core.rb +0 -2
  38. data/example/bounded_contexts/cart/cart_datasets/Package.rb +0 -10
  39. data/example/bounded_contexts/cart/cart_datasets/bin/console +0 -9
  40. data/example/bounded_contexts/cart/cart_datasets/package/cart_datasets.rb +0 -2
  41. data/example/bounded_contexts/orders/orders_app/Package.rb +0 -12
  42. data/example/bounded_contexts/orders/orders_app/bin/console +0 -9
  43. data/example/bounded_contexts/orders/orders_app/package/orders_app.rb +0 -2
  44. data/example/bounded_contexts/orders/orders_core/Package.rb +0 -13
  45. data/example/bounded_contexts/orders/orders_core/bin/console +0 -9
  46. data/example/bounded_contexts/orders/orders_core/package/orders_core.rb +0 -2
  47. data/example/bounded_contexts/orders/orders_datasets/Package.rb +0 -11
  48. data/example/bounded_contexts/orders/orders_datasets/bin/console +0 -9
  49. data/example/bounded_contexts/orders/orders_datasets/package/orders_datasets.rb +0 -2
  50. data/example/bounded_contexts/orders/orders_query_api/Package.rb +0 -13
  51. data/example/bounded_contexts/orders/orders_query_api/bin/console +0 -9
  52. data/example/bounded_contexts/orders/orders_query_api/package/cart_query_api.rb +0 -2
  53. data/example/bounded_contexts/orders/paypal_client/Package.rb +0 -9
  54. data/example/bounded_contexts/orders/paypal_client/bin/console +0 -9
  55. data/example/bounded_contexts/orders/paypal_client/package/paypal_client.rb +0 -2
  56. data/example/bounded_contexts/shared/db_connection/Package.rb +0 -10
  57. data/example/bounded_contexts/shared/db_connection/bin/console +0 -9
  58. data/example/bounded_contexts/shared/db_connection/package/db_connection.rb +0 -2
  59. data/example/bounded_contexts/shared/test_utils/Package.rb +0 -9
  60. data/example/bounded_contexts/shared/test_utils/bin/console +0 -9
  61. data/example/bounded_contexts/shared/test_utils/package/test_utils.rb +0 -2
  62. data/example/bounded_contexts/storefront/storefront_app/Package.rb +0 -11
  63. data/example/bounded_contexts/storefront/storefront_app/bin/console +0 -9
  64. data/example/bounded_contexts/storefront/storefront_app/package/storefront_app.rb +0 -2
  65. data/example/bounded_contexts/storefront/storefront_core/Package.rb +0 -11
  66. data/example/bounded_contexts/storefront/storefront_core/bin/console +0 -9
  67. data/example/bounded_contexts/storefront/storefront_core/package/storefront_core.rb +0 -2
  68. data/example/bounded_contexts/storefront/storefront_datasets/Package.rb +0 -11
  69. data/example/bounded_contexts/storefront/storefront_datasets/bin/console +0 -9
  70. data/example/bounded_contexts/storefront/storefront_datasets/package/storefront_datasets.rb +0 -2
  71. data/example/configs/cart_app/default.yml +0 -4
  72. data/example/configs/cart_app/test.yml +0 -3
  73. data/example/configs/orders_app/default.yml +0 -4
  74. data/example/configs/orders_app/test.yml +0 -2
  75. data/exe/mona +0 -15
  76. data/lib/mona/config/loader.rb +0 -74
  77. data/lib/mona/config/manager.rb +0 -20
  78. data/lib/mona/config.rb +0 -23
  79. data/lib/mona/loaders/base.rb +0 -63
  80. data/lib/mona/loaders/zeitwerk.rb +0 -77
  81. data/lib/mona/package/builder.rb +0 -27
  82. data/lib/mona/package/dependency_bypasser.rb +0 -43
  83. data/lib/mona/package/factory.rb +0 -95
  84. data/lib/mona/package/find_root.rb +0 -33
  85. data/lib/mona/package/indexer.rb +0 -30
  86. data/lib/mona/package/initializer.rb +0 -46
  87. data/lib/mona/package/list.rb +0 -10
  88. data/lib/mona/package/repo.rb +0 -63
  89. data/lib/mona/package.rb +0 -51
  90. data/lib/mona/project/builder.rb +0 -20
  91. data/lib/mona/project/factory.rb +0 -115
  92. data/lib/mona/project/find_root.rb +0 -31
  93. data/lib/mona/project/initializer.rb +0 -26
  94. data/lib/mona/project.rb +0 -43
  95. data/lib/mona/task/manager.rb +0 -36
  96. data/lib/mona/task.rb +0 -21
  97. data/lib/mona/version.rb +0 -5
  98. data/sig/mona.rbs +0 -4
metadata CHANGED
@@ -1,296 +1,152 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mona
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.4.0
5
+ prerelease:
5
6
  platform: ruby
6
7
  authors:
7
- - Nikita Kononov
8
- autorequire:
9
- bindir: exe
8
+ - masarakki
9
+ autorequire:
10
+ bindir: bin
10
11
  cert_chain: []
11
- date: 2024-11-13 00:00:00.000000000 Z
12
+ date: 2013-03-06 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
- name: sorbet-runtime
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: 0.5.11164
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: 0.5.11164
27
- - !ruby/object:Gem::Dependency
28
- name: dry-auto_inject
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: 1.0.1
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: 1.0.1
41
- - !ruby/object:Gem::Dependency
42
- name: dry-core
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: 1.0.0
48
- type: :runtime
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: 1.0.0
55
- - !ruby/object:Gem::Dependency
56
- name: dry-configurable
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: 1.0.1
62
- type: :runtime
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: 1.0.1
69
- - !ruby/object:Gem::Dependency
70
- name: dry-container
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - "~>"
74
- - !ruby/object:Gem::Version
75
- version: 0.11.0
76
- type: :runtime
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - "~>"
81
- - !ruby/object:Gem::Version
82
- version: 0.11.0
83
- - !ruby/object:Gem::Dependency
84
- name: dry-system
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - "~>"
88
- - !ruby/object:Gem::Version
89
- version: 1.0.1
90
- type: :runtime
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - "~>"
95
- - !ruby/object:Gem::Version
96
- version: 1.0.1
97
- - !ruby/object:Gem::Dependency
98
- name: zeitwerk
15
+ name: rake
99
16
  requirement: !ruby/object:Gem::Requirement
17
+ none: false
100
18
  requirements:
101
- - - "~>"
19
+ - - ! '>='
102
20
  - !ruby/object:Gem::Version
103
- version: 2.6.12
21
+ version: '0'
104
22
  type: :runtime
105
23
  prerelease: false
106
24
  version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
107
26
  requirements:
108
- - - "~>"
27
+ - - ! '>='
109
28
  - !ruby/object:Gem::Version
110
- version: 2.6.12
29
+ version: '0'
111
30
  - !ruby/object:Gem::Dependency
112
- name: thor
31
+ name: httpclient
113
32
  requirement: !ruby/object:Gem::Requirement
33
+ none: false
114
34
  requirements:
115
- - - ">="
35
+ - - ! '>='
116
36
  - !ruby/object:Gem::Version
117
37
  version: '0'
118
38
  type: :runtime
119
39
  prerelease: false
120
40
  version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
121
42
  requirements:
122
- - - ">="
43
+ - - ! '>='
123
44
  - !ruby/object:Gem::Version
124
45
  version: '0'
125
46
  - !ruby/object:Gem::Dependency
126
- name: bundler
127
- requirement: !ruby/object:Gem::Requirement
128
- requirements:
129
- - - "~>"
130
- - !ruby/object:Gem::Version
131
- version: '2.2'
132
- type: :development
133
- prerelease: false
134
- version_requirements: !ruby/object:Gem::Requirement
135
- requirements:
136
- - - "~>"
137
- - !ruby/object:Gem::Version
138
- version: '2.2'
139
- - !ruby/object:Gem::Dependency
140
- name: rake
47
+ name: rspec
141
48
  requirement: !ruby/object:Gem::Requirement
49
+ none: false
142
50
  requirements:
143
- - - "~>"
51
+ - - ! '>='
144
52
  - !ruby/object:Gem::Version
145
- version: '13.0'
53
+ version: '0'
146
54
  type: :development
147
55
  prerelease: false
148
56
  version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
149
58
  requirements:
150
- - - "~>"
59
+ - - ! '>='
151
60
  - !ruby/object:Gem::Version
152
- version: '13.0'
61
+ version: '0'
153
62
  - !ruby/object:Gem::Dependency
154
- name: rspec
63
+ name: bundler
155
64
  requirement: !ruby/object:Gem::Requirement
65
+ none: false
156
66
  requirements:
157
- - - "~>"
67
+ - - ! '>='
158
68
  - !ruby/object:Gem::Version
159
- version: '3.0'
69
+ version: '0'
160
70
  type: :development
161
71
  prerelease: false
162
72
  version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
163
74
  requirements:
164
- - - "~>"
75
+ - - ! '>='
165
76
  - !ruby/object:Gem::Version
166
- version: '3.0'
77
+ version: '0'
167
78
  - !ruby/object:Gem::Dependency
168
- name: pry
79
+ name: jeweler
169
80
  requirement: !ruby/object:Gem::Requirement
81
+ none: false
170
82
  requirements:
171
- - - ">="
83
+ - - ! '>='
172
84
  - !ruby/object:Gem::Version
173
85
  version: '0'
174
86
  type: :development
175
87
  prerelease: false
176
88
  version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
177
90
  requirements:
178
- - - ">="
91
+ - - ! '>='
179
92
  - !ruby/object:Gem::Version
180
93
  version: '0'
181
- description: " A Ruby gem for efficiently managing dependencies within a monorepository.
182
- \n\n GitHub Repository: https://github.com/droidlabs/mono_repo_deps\n"
183
- email:
184
- - vocrsz@gmail.com
185
- executables:
186
- - mona
94
+ description: talk to 2ch library
95
+ email: masaki@hisme.net
96
+ executables: []
187
97
  extensions: []
188
- extra_rdoc_files: []
98
+ extra_rdoc_files:
99
+ - LICENSE.txt
100
+ - README.md
189
101
  files:
190
- - ".rspec"
191
- - ".ruby-version"
192
- - ".standard.yml"
193
- - CHANGELOG.md
194
- - CODE_OF_CONDUCT.md
102
+ - .document
103
+ - .rspec
104
+ - .travis.yml
105
+ - Gemfile
195
106
  - LICENSE.txt
196
107
  - README.md
197
108
  - Rakefile
198
- - example/Gemfile
199
- - example/Gemfile.lock
200
- - example/Monafile.rb
201
- - example/bounded_contexts/cart/cart_app/Package.rb
202
- - example/bounded_contexts/cart/cart_app/bin/console
203
- - example/bounded_contexts/cart/cart_app/package/cart_app.rb
204
- - example/bounded_contexts/cart/cart_core/Package.rb
205
- - example/bounded_contexts/cart/cart_core/bin/console
206
- - example/bounded_contexts/cart/cart_core/package/cart_core.rb
207
- - example/bounded_contexts/cart/cart_datasets/Package.rb
208
- - example/bounded_contexts/cart/cart_datasets/bin/console
209
- - example/bounded_contexts/cart/cart_datasets/package/cart_datasets.rb
210
- - example/bounded_contexts/orders/orders_app/Package.rb
211
- - example/bounded_contexts/orders/orders_app/bin/console
212
- - example/bounded_contexts/orders/orders_app/package/orders_app.rb
213
- - example/bounded_contexts/orders/orders_core/Package.rb
214
- - example/bounded_contexts/orders/orders_core/bin/console
215
- - example/bounded_contexts/orders/orders_core/package/orders_core.rb
216
- - example/bounded_contexts/orders/orders_datasets/Package.rb
217
- - example/bounded_contexts/orders/orders_datasets/bin/console
218
- - example/bounded_contexts/orders/orders_datasets/package/orders_datasets.rb
219
- - example/bounded_contexts/orders/orders_query_api/Package.rb
220
- - example/bounded_contexts/orders/orders_query_api/bin/console
221
- - example/bounded_contexts/orders/orders_query_api/package/cart_query_api.rb
222
- - example/bounded_contexts/orders/paypal_client/Package.rb
223
- - example/bounded_contexts/orders/paypal_client/bin/console
224
- - example/bounded_contexts/orders/paypal_client/package/paypal_client.rb
225
- - example/bounded_contexts/shared/db_connection/Package.rb
226
- - example/bounded_contexts/shared/db_connection/bin/console
227
- - example/bounded_contexts/shared/db_connection/package/db_connection.rb
228
- - example/bounded_contexts/shared/test_utils/Package.rb
229
- - example/bounded_contexts/shared/test_utils/bin/console
230
- - example/bounded_contexts/shared/test_utils/package/test_utils.rb
231
- - example/bounded_contexts/storefront/storefront_app/Package.rb
232
- - example/bounded_contexts/storefront/storefront_app/bin/console
233
- - example/bounded_contexts/storefront/storefront_app/package/storefront_app.rb
234
- - example/bounded_contexts/storefront/storefront_core/Package.rb
235
- - example/bounded_contexts/storefront/storefront_core/bin/console
236
- - example/bounded_contexts/storefront/storefront_core/package/storefront_core.rb
237
- - example/bounded_contexts/storefront/storefront_datasets/Package.rb
238
- - example/bounded_contexts/storefront/storefront_datasets/bin/console
239
- - example/bounded_contexts/storefront/storefront_datasets/package/storefront_datasets.rb
240
- - example/configs/cart_app/default.yml
241
- - example/configs/cart_app/test.yml
242
- - example/configs/orders_app/default.yml
243
- - example/configs/orders_app/test.yml
244
- - exe/mona
109
+ - VERSION
245
110
  - lib/mona.rb
246
- - lib/mona/config.rb
247
- - lib/mona/config/loader.rb
248
- - lib/mona/config/manager.rb
249
- - lib/mona/loaders/base.rb
250
- - lib/mona/loaders/zeitwerk.rb
251
- - lib/mona/package.rb
252
- - lib/mona/package/builder.rb
253
- - lib/mona/package/dependency_bypasser.rb
254
- - lib/mona/package/factory.rb
255
- - lib/mona/package/find_root.rb
256
- - lib/mona/package/indexer.rb
257
- - lib/mona/package/initializer.rb
258
- - lib/mona/package/list.rb
259
- - lib/mona/package/repo.rb
260
- - lib/mona/project.rb
261
- - lib/mona/project/builder.rb
262
- - lib/mona/project/factory.rb
263
- - lib/mona/project/find_root.rb
264
- - lib/mona/project/initializer.rb
265
- - lib/mona/task.rb
266
- - lib/mona/task/manager.rb
267
- - lib/mona/version.rb
111
+ - lib/mona/board.rb
112
+ - lib/mona/client.rb
113
+ - lib/mona/response.rb
114
+ - lib/mona/thread.rb
268
115
  - mona.gemspec
269
- - sig/mona.rbs
270
- homepage: https://github.com/droidlabs/mono_repo_deps
116
+ - spec/board_spec.rb
117
+ - spec/client_spec.rb
118
+ - spec/mona_spec.rb
119
+ - spec/response_spec.rb
120
+ - spec/spec_helper.rb
121
+ - spec/test_data/dat.txt
122
+ - spec/test_data/subject.txt
123
+ - spec/thread_spec.rb
124
+ homepage: http://github.com/masarakki/mona
271
125
  licenses:
272
126
  - MIT
273
- metadata:
274
- homepage_uri: https://github.com/droidlabs/mono_repo_deps
275
- source_code_uri: https://github.com/droidlabs/mono_repo_deps
276
- changelog_uri: https://github.com/droidlabs/mono_repo_deps
277
- post_install_message:
127
+ post_install_message:
278
128
  rdoc_options: []
279
129
  require_paths:
280
130
  - lib
281
131
  required_ruby_version: !ruby/object:Gem::Requirement
132
+ none: false
282
133
  requirements:
283
- - - ">="
134
+ - - ! '>='
284
135
  - !ruby/object:Gem::Version
285
- version: 2.7.0
136
+ version: '0'
137
+ segments:
138
+ - 0
139
+ hash: -1907804862958835511
286
140
  required_rubygems_version: !ruby/object:Gem::Requirement
141
+ none: false
287
142
  requirements:
288
- - - ">="
143
+ - - ! '>='
289
144
  - !ruby/object:Gem::Version
290
145
  version: '0'
291
146
  requirements: []
292
- rubygems_version: 3.5.9
293
- signing_key:
294
- specification_version: 4
295
- summary: A Ruby gem for efficiently managing dependencies within a monorepository.
147
+ rubyforge_project:
148
+ rubygems_version: 1.8.25
149
+ signing_key:
150
+ specification_version: 3
151
+ summary: talk 2ch
296
152
  test_files: []
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA256:
3
- metadata.gz: 8b1e6f0f8f39d50a6cd703a3993bf9e6cea636844d3a36cdf68cba3d76c3ec74
4
- data.tar.gz: 517634680ebb18220bb99e16d336000df406d6733e95acf9144514052ed97c8a
5
- SHA512:
6
- metadata.gz: c5e9ce28c8a4653502b0e3a86bfe4718c45c64ccb46c2236e0908453dc69d7ee43821270597d67dd5cc6c0f98991f898f74ea30d032a1957a8173c225ed5e298
7
- data.tar.gz: 883ceeec918d447b575d689e164158bc434213729b0bfe8736e5516d357eda92f46b60b9a56ac5edb43d97b68cf153e6f947d224aaee8017a3cfbe943395ab50
data/.ruby-version DELETED
@@ -1 +0,0 @@
1
- 2.7.6
data/.standard.yml DELETED
@@ -1,3 +0,0 @@
1
- # For available configuration options, see:
2
- # https://github.com/testdouble/standard
3
- ruby_version: 2.7
data/CHANGELOG.md DELETED
@@ -1,5 +0,0 @@
1
- ## [Unreleased]
2
-
3
- ## [0.1.0] - 2023-08-09
4
-
5
- - Initial release
data/CODE_OF_CONDUCT.md DELETED
@@ -1,84 +0,0 @@
1
- # Contributor Covenant Code of Conduct
2
-
3
- ## Our Pledge
4
-
5
- We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
-
7
- We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
-
9
- ## Our Standards
10
-
11
- Examples of behavior that contributes to a positive environment for our community include:
12
-
13
- * Demonstrating empathy and kindness toward other people
14
- * Being respectful of differing opinions, viewpoints, and experiences
15
- * Giving and gracefully accepting constructive feedback
16
- * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
- * Focusing on what is best not just for us as individuals, but for the overall community
18
-
19
- Examples of unacceptable behavior include:
20
-
21
- * The use of sexualized language or imagery, and sexual attention or
22
- advances of any kind
23
- * Trolling, insulting or derogatory comments, and personal or political attacks
24
- * Public or private harassment
25
- * Publishing others' private information, such as a physical or email
26
- address, without their explicit permission
27
- * Other conduct which could reasonably be considered inappropriate in a
28
- professional setting
29
-
30
- ## Enforcement Responsibilities
31
-
32
- Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
-
34
- Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
-
36
- ## Scope
37
-
38
- This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
-
40
- ## Enforcement
41
-
42
- Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at vocrsz@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
43
-
44
- All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
-
46
- ## Enforcement Guidelines
47
-
48
- Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
-
50
- ### 1. Correction
51
-
52
- **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
-
54
- **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
-
56
- ### 2. Warning
57
-
58
- **Community Impact**: A violation through a single incident or series of actions.
59
-
60
- **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
-
62
- ### 3. Temporary Ban
63
-
64
- **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
-
66
- **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
-
68
- ### 4. Permanent Ban
69
-
70
- **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
-
72
- **Consequence**: A permanent ban from any sort of public interaction within the community.
73
-
74
- ## Attribution
75
-
76
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
- available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
-
79
- Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
-
81
- [homepage]: https://www.contributor-covenant.org
82
-
83
- For answers to common questions about this code of conduct, see the FAQ at
84
- https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/example/Gemfile DELETED
@@ -1 +0,0 @@
1
- gem 'mona', path: '../'
data/example/Gemfile.lock DELETED
@@ -1,51 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- mona (0.1.13)
5
- dry-auto_inject (~> 1.0.1)
6
- dry-configurable (~> 1.0.1)
7
- dry-container (~> 0.11.0)
8
- dry-core (~> 1.0.0)
9
- dry-system (~> 1.0.1)
10
- sorbet-static-and-runtime (~> 0.5.11105)
11
- thor
12
- zeitwerk (~> 2.6.12)
13
-
14
- GEM
15
- specs:
16
- concurrent-ruby (1.2.2)
17
- dry-auto_inject (1.0.1)
18
- dry-core (~> 1.0)
19
- zeitwerk (~> 2.6)
20
- dry-configurable (1.0.1)
21
- dry-core (~> 1.0, < 2)
22
- zeitwerk (~> 2.6)
23
- dry-container (0.11.0)
24
- concurrent-ruby (~> 1.0)
25
- dry-core (1.0.0)
26
- concurrent-ruby (~> 1.0)
27
- zeitwerk (~> 2.6)
28
- dry-inflector (1.0.0)
29
- dry-system (1.0.1)
30
- dry-auto_inject (~> 1.0, < 2)
31
- dry-configurable (~> 1.0, < 2)
32
- dry-core (~> 1.0, < 2)
33
- dry-inflector (~> 1.0, < 2)
34
- sorbet (0.5.11105)
35
- sorbet-static (= 0.5.11105)
36
- sorbet-runtime (0.5.11105)
37
- sorbet-static (0.5.11105-x86_64-linux)
38
- sorbet-static-and-runtime (0.5.11105)
39
- sorbet (= 0.5.11105)
40
- sorbet-runtime (= 0.5.11105)
41
- thor (1.3.0)
42
- zeitwerk (2.6.12)
43
-
44
- PLATFORMS
45
- x86_64-linux
46
-
47
- DEPENDENCIES
48
- mona!
49
-
50
- BUNDLED WITH
51
- 2.4.20
data/example/Monafile.rb DELETED
@@ -1,16 +0,0 @@
1
- setup do |project|
2
- set_env ->() { :test }
3
-
4
- set_configs_dir 'configs'
5
- set_package_dirname 'package'
6
-
7
- set_loader :zeitwerk do |project|
8
- inflect 'filename' => "FileName"
9
- overwrite ->(klass_name) { klass_name.gsub(/Api/) { _1.upcase } }
10
- ignore "**/schema_migrations"
11
- end
12
-
13
- register_task :print_package_name, on: :package do |package, args|
14
- puts package.entrypoint_file
15
- end
16
- end
@@ -1,11 +0,0 @@
1
- package do
2
- name 'cart_app'
3
- end
4
-
5
- dependency do
6
- import 'cart_core'
7
- end
8
-
9
- dependency :test do
10
- import 'test_utils'
11
- end
@@ -1,11 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'bundler/setup'
4
- require 'mona'
5
-
6
- # Mona.init(__dir__)
7
-
8
- Mona.import_package(:storefront_core)
9
-
10
- require 'irb'
11
- IRB.start
@@ -1,2 +0,0 @@
1
- module CartApp
2
- end
@@ -1,12 +0,0 @@
1
- package do
2
- name 'cart_core'
3
- end
4
-
5
- dependency do
6
- import 'cart_datasets'
7
- import 'orders_query_api'
8
- end
9
-
10
- dependency :test do
11
- import 'test_utils'
12
- end
@@ -1,9 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'bundler/setup'
4
- require 'mona'
5
-
6
- Mona.init(__dir__)
7
-
8
- require 'irb'
9
- IRB.start
@@ -1,2 +0,0 @@
1
- module CartCore
2
- end
@@ -1,10 +0,0 @@
1
- package do
2
- name 'cart_datasets'
3
- end
4
-
5
- dependency do
6
- import 'db_connection'
7
- end
8
-
9
- dependency :test do
10
- end
@@ -1,9 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'bundler/setup'
4
- require 'mona'
5
-
6
- Mona.init(__dir__)
7
-
8
- require 'irb'
9
- IRB.start
@@ -1,2 +0,0 @@
1
- module CartDatasets
2
- end
@@ -1,12 +0,0 @@
1
- package do
2
- name 'orders_app'
3
- end
4
-
5
- dependency do
6
- import 'orders_core'
7
- end
8
-
9
- dependency :test do
10
- import 'test_utils'
11
- import 'storefront_core'
12
- end
@@ -1,9 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'bundler/setup'
4
- require 'mona'
5
-
6
- Mona.init(__dir__)
7
-
8
- require 'irb'
9
- IRB.start
@@ -1,2 +0,0 @@
1
- module OrdersApp
2
- end