flowrb 0.1.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: '0196ce99015ed614b21425907529b0813b8efc9cadea40a4bb441ec024a2de54'
4
+ data.tar.gz: b0ecebbd9d1b14f334c98282458f8598f5843f15082f40c5fedbadc6bf5e217b
5
+ SHA512:
6
+ metadata.gz: 0077f4fefc647a04c57b2bb0282ea8f7e035ea8db88ca4d55452c96e96d06827195a3c4443648e6b0d0339ddef37114b51d295fecee2a96a4f7f9e758665277c
7
+ data.tar.gz: d3e29bc06d93ab25e540e0bdfdb95f6e892afa3c3d5407f7924d0c86ea4b5440132ff39afbd6ac1147ec744f375fdc937f4eeb775b57fd366c7338bac94ecc32
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2025-04-17
4
+
5
+ - Initial release
data/LICENSE ADDED
@@ -0,0 +1,4 @@
1
+ Copyright (c) Iuri Gagnidze
2
+
3
+ Flowrb is an Open Source project licensed under the terms of the LGPL-3.0 license.
4
+ Please see <https://www.gnu.org/licenses/lgpl-3.0.en.html> for license text.
data/README.md ADDED
@@ -0,0 +1,49 @@
1
+ # Flowrb
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library
6
+ into a gem. Put your Ruby code in the file `lib/flowrb`. To experiment with that code, run `bin/console` for an
7
+ interactive prompt.
8
+
9
+ ## Installation
10
+
11
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after
12
+ releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section
13
+ with instructions to install your gem from git if you don't plan to release to RubyGems.org.
14
+
15
+ Install the gem and add to the application's Gemfile by executing:
16
+
17
+ ```bash
18
+ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
19
+ ```
20
+
21
+ If bundler is not being used to manage dependencies, install the gem by executing:
22
+
23
+ ```bash
24
+ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
25
+ ```
26
+
27
+ ## Usage
28
+
29
+ TODO: Write usage instructions here
30
+
31
+ ## Development
32
+
33
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can
34
+ also run `bin/console` for an interactive prompt that will allow you to experiment.
35
+
36
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the
37
+ version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version,
38
+ push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
39
+
40
+ ## Contributing
41
+
42
+ Bug reports and pull requests are welcome on GitHub at https://github.com/flowrb/flowrb. This project is intended to be
43
+ a safe, welcoming space for collaboration, and contributors are expected to adhere to
44
+ the [code of conduct](https://github.com/flowrb/flowrb/blob/main/CODE_OF_CONDUCT.md).
45
+
46
+ ## Code of Conduct
47
+
48
+ Everyone interacting in the Flowrb project's codebases, issue trackers, chat rooms and mailing lists is expected to
49
+ follow the [code of conduct](https://github.com/flowrb/flowrb/blob/main/CODE_OF_CONDUCT.md).
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Flowrb
4
+ VERSION = "0.1.0"
5
+ end
data/lib/flowrb.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "flowrb/version"
4
+
5
+ module Flowrb
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
data/sig/flowrb.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Flowrb
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: flowrb
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Iuri Gagnidze
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: Ruby workflow orchestration.
13
+ email:
14
+ - hello@flowrb.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - CHANGELOG.md
20
+ - LICENSE
21
+ - README.md
22
+ - lib/flowrb.rb
23
+ - lib/flowrb/version.rb
24
+ - sig/flowrb.rbs
25
+ homepage: https://flowrb.dev
26
+ licenses:
27
+ - LGPL-3.0
28
+ metadata:
29
+ homepage_uri: https://flowrb.dev
30
+ source_code_uri: https://github.com/flowrb/flowrb
31
+ changelog_uri: https://github.com/flowrb/flowrb/blob/main/CHANGELOG.md
32
+ rubygems_mfa_required: 'true'
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 3.2.0
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubygems_version: 3.6.8
48
+ specification_version: 4
49
+ summary: Ruby workflow orchestration.
50
+ test_files: []