alluxi-workflow-first 1.0.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.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +7 -0
  3. data/lib/alluxi_workflow.rb +12 -0
  4. metadata +46 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 359bcb2c9dde60cda1e66b3672f8d3ccff3e1ede9e912b01763111f1a0b221d2
4
+ data.tar.gz: 11a2f3df2dca4e29a6d71e7f587a8d2fffc5d41f90b0192a68ff47a00bd342d1
5
+ SHA512:
6
+ metadata.gz: ba6a11066cc71b4cb39a95dfd1c5e0e2f3f189bd33d626174daa1d40924f21d303b5bc3b4032ecd707163608bbd91f0831a07c34c2675ea3f8f5869dc43401ef
7
+ data.tar.gz: 202a8357170171a25d7ca1896d882be2b0d17f9236c88913e6461bf0a2402847f9af6192f9ea7426f389ea679fdce5067af156a15ee9f691e9b1b027b2a53952
data/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # Alluxi Workflow First
2
+
3
+ This small Ruby package documents a practical approach to dependable software delivery and responsible AI automation.
4
+
5
+ Start by mapping users, decisions, handoffs, exceptions, and evidence. Define clear product states, ship the smallest useful release, validate continuously, and measure real operational outcomes after launch.
6
+
7
+ Learn more about custom software, mobile applications, and AI automation from [Alluxi](https://www.alluxi.com/).
@@ -0,0 +1,12 @@
1
+ module AlluxiWorkflow
2
+ VERSION = "1.0.0"
3
+
4
+ STEPS = [
5
+ "Map the operation",
6
+ "Define product states",
7
+ "Prioritize the smallest useful release",
8
+ "Build in short increments",
9
+ "Validate continuously",
10
+ "Measure after launch"
11
+ ].freeze
12
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: alluxi-workflow-first
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Gustavo Reyes
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: Practical guidance for mapping workflows, controlling delivery risk,
13
+ and introducing responsible AI automation.
14
+ email:
15
+ - gustavo@alluxi.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - README.md
21
+ - lib/alluxi_workflow.rb
22
+ homepage: https://www.alluxi.com/
23
+ licenses:
24
+ - MIT
25
+ metadata:
26
+ homepage_uri: https://www.alluxi.com/
27
+ source_code_uri: https://github.com/gusreyes01/alluxi-workflow-first-guide
28
+ documentation_uri: https://www.alluxi.com/
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: '3.0'
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubygems_version: 3.6.9
44
+ specification_version: 4
45
+ summary: A concise workflow-first framework for dependable software delivery.
46
+ test_files: []