flow_trace 0.0.1 → 0.0.2

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: 50ebe544f55d1350e9003e1a928d0d8c30caf47d92c266d8e305601fba78be4c
4
- data.tar.gz: 199afc61f1924e28b91a4b55780ed0d8b4f360660fefffca17fb465525f996a6
3
+ metadata.gz: 67ab8d434daf030219e08463bbc02614677997ca3dc8ce78586efb18bb6ec888
4
+ data.tar.gz: cc73fea56cfadb4b60a0b37622048d58431a4f6b365d1b49908b33c2aed9369d
5
5
  SHA512:
6
- metadata.gz: a0605fbe71a8019118a8566665569c729d5141aed5fbf362cae1235491b4e41a470ba6d1f6c68f346403b5b4b0178e7ea6b3e28580737ea598a436dc194f4835
7
- data.tar.gz: d75dcab402c01420f9fc91c2d9a09d1b290e1d10c6976ebbfae1cef0889abd252fc8ae6c14f85699544920b22a1dc943cae269d5ffb7f464499341f059b3a944
6
+ metadata.gz: 75484a92e3991eaf67a0f19158fb5e2dcfbabb3af287c4240ab79993e0ebe8d1ba10a5f63e2ca74243213a9fc8d0e7e9e7467e3e96084fb3b8e7f4fa30d157ec
7
+ data.tar.gz: 2c5ea50161d365acada8357a075135b8080c0e947f6c3ae8560f442423d28bcdd06bdc3726a0c9d761bfc2e4bcf23620fbd98300e75cd3d13e88c10bb1da44de
@@ -0,0 +1,20 @@
1
+ name: Ruby
2
+
3
+ on: [push]
4
+
5
+ jobs:
6
+ build:
7
+
8
+ runs-on: ubuntu-latest
9
+
10
+ steps:
11
+ - uses: actions/checkout@v1
12
+ - name: Set up Ruby 2.6
13
+ uses: actions/setup-ruby@v1
14
+ with:
15
+ ruby-version: 2.6.x
16
+ - name: Build and test with Rake
17
+ run: |
18
+ gem install bundler
19
+ bundle install --jobs 4 --retry 3
20
+ bundle exec rake
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # v0.0.2 2019-11-16
2
+
3
+ Critical fix ([kirillshevch](https://github.com/kirillshevch/flow_trace/pull/1))
4
+
1
5
  # v0.0.1 2019-11-15
2
6
 
3
- Initial release (Proof of Concept). ([kirillshevch](https://github.com/kirillshevch/flow_trace/pull/1))
7
+ Initial release (Proof of Concept).
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- flow_trace (0.0.1)
4
+ flow_trace (0.0.2)
5
5
  dry-configurable
6
6
  http
7
7
  sinatra
data/README.md CHANGED
@@ -15,7 +15,7 @@ gem 'flow_trace'
15
15
 
16
16
  ## Usage
17
17
 
18
- 1. Configuration
18
+ ### 1. Configuration
19
19
 
20
20
  Use `https` proxy (for example `ngrok`) to local `4567` port.
21
21
 
@@ -26,13 +26,15 @@ FlowTrace::Settings.configure do |config|
26
26
  end
27
27
  ```
28
28
 
29
- 2. Declare remote flow
29
+ ### 2. Declare remote flow
30
+
31
+ Step interface is here:
30
32
 
31
33
  ```ruby
32
34
  FlowTrace::Step.call(:flow_name, :step_name, {})
33
35
  ```
34
36
 
35
- 3. Start receive messages (locally)
37
+ ### 3. Start receive messages (locally)
36
38
 
37
39
  ```
38
40
  bundle exec flow_trace
@@ -1,3 +1,3 @@
1
1
  module FlowTrace
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flow_trace
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kirill Shevchenko
@@ -130,6 +130,7 @@ executables:
130
130
  extensions: []
131
131
  extra_rdoc_files: []
132
132
  files:
133
+ - ".github/workflows/ruby.yml"
133
134
  - ".gitignore"
134
135
  - ".rspec"
135
136
  - ".rubocop.yml"