foobara 0.0.13 → 0.0.14

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a0fe6b2415dddaf6742ae9bd3809f807148d61a8595eff27c7053b7bdf2120b0
4
- data.tar.gz: a0b48950e37a936d2b4aae09ab9fe5bceaed5ae46da724a7f0d64bfe4177e549
3
+ metadata.gz: 38b777d54529187c23d8a7f67337c5cb6f841d06ca01efe3635c003359f38b47
4
+ data.tar.gz: 91bbdf579b22f6c2978180142846d8d5f14a7751840cc89b6b06d70248247f33
5
5
  SHA512:
6
- metadata.gz: 67a4249c5ca81daad7c7476eac81dafdea51224135e3e224ca31a4def8a0dc9906a79f4f4500f95a75446073ceccbab6d4ada74fca656bec305aebe7b2b546f7
7
- data.tar.gz: da74f67ea8f39814874c2393c45ff514fd669dbd9865acbf7da4414e2ed702d9a9522d4381343f2201d6804f1b3d31565fa48926e5cf751f3376e8d7bd7069d4
6
+ metadata.gz: f06ee9edaf6d45318abe7ad05b1a9932895443eb72a42d8fe25baa0ad5c2b666f1bacc38a14ea1d390bb75f5283ec64ccf77e2f0a3be1cc05b67e95422220371
7
+ data.tar.gz: 1facc5ea85dfab04ec0f97d96090c512c75cb676cdebde0ebbed0c981d01d4cc8780d1c2533fb2f74b8322e0c62db0caa81a838ab8d09619458d943985dee065
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## [0.0.14] - 2024-11-15
2
+
3
+ - Provide a default execute because why not...
4
+ - Allow require "foobara" instead of require "foobara/all"
5
+
1
6
  ## [0.0.13] - 2024-11-13
2
7
 
3
8
  - Do not fail :one_of if it is nil and :allows_nil
@@ -71,6 +71,9 @@ module Foobara
71
71
  @outcome = Outcome.success(result)
72
72
  end
73
73
 
74
+ def execute
75
+ end
76
+
74
77
  def succeed
75
78
  # noop but for now helpful for carrying out state transition
76
79
  end
@@ -0,0 +1,4 @@
1
+ require "foobara/all"
2
+
3
+ module Foobara
4
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foobara
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.13
4
+ version: 0.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Georgi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-14 00:00:00.000000000 Z
11
+ date: 2024-11-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: foobara-util
@@ -214,6 +214,7 @@ files:
214
214
  - projects/enumerated/lib/foobara/enumerated.rb
215
215
  - projects/enumerated/src/accessors.rb
216
216
  - projects/enumerated/src/values.rb
217
+ - projects/foobara/lib/foobara.rb
217
218
  - projects/foobara/lib/foobara/all.rb
218
219
  - projects/in_memory_crud_driver/lib/foobara/in_memory_crud_driver.rb
219
220
  - projects/in_memory_crud_driver/src/in_memory.rb