fluxus 0.1.0 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 53b87715576086932fa0632d366b8f17a9abb4790a7115777f2891795e4762bc
4
- data.tar.gz: 0c1efd6a6a09618de16a27690c936ab6911a751b17f3943f637efcfb35a356e6
3
+ metadata.gz: 363722f2ddaae2293eecb73281941ad8c3c48b9e41fd2f582e603f7d73356e72
4
+ data.tar.gz: 3c8b9bcb8931e852dbee325a3138e62ddb39ffd7a5f89af01a43301680aa9489
5
5
  SHA512:
6
- metadata.gz: f833f3d13d02259e8e6fdb4a003e1af89e2a8a50ae85353122b1bd4a130723acb6a9c1dceacdf1d28692569cae032e0760757e2e1a4c4e8333abb1d94f6f0ec7
7
- data.tar.gz: ff4fee21d2f14dc6feb32bd3c539643830df5e4d017b27d9edd60705ae468d4c38173133295ef3cfa9eb63ba0d799c07185ecdfab9bed730d2cb7c63f52aa709
6
+ metadata.gz: 1fe377536f736b5b40058d33f64edc8d6b1a6ac1e49866d17f4d99c5a4aec49d3d5af774134760d12fd2bccc6567aa14f2db5f461223c9d0735842b3d3003aab
7
+ data.tar.gz: 9d1f29508ee2b4fdb14114c45e77cdbb4dfae2005ace37e2405509c726f9a20f605db62d7de391675b097a6de2d638c9774a7128886c7cdd048a3625bc614727
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fluxus (0.1.0)
4
+ fluxus (0.1.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -9,20 +9,10 @@ GEM
9
9
  ast (2.4.2)
10
10
  byebug (11.1.3)
11
11
  coderay (1.1.3)
12
- coveralls (0.7.2)
13
- multi_json (~> 1.3)
14
- rest-client (= 1.6.7)
15
- simplecov (>= 0.7)
16
- term-ansicolor (= 1.2.2)
17
- thor (= 0.18.1)
18
12
  docile (1.4.0)
19
13
  json (2.6.1)
20
14
  method_source (1.0.0)
21
- mime-types (3.4.1)
22
- mime-types-data (~> 3.2015)
23
- mime-types-data (3.2022.0105)
24
15
  minitest (5.16.3)
25
- multi_json (1.15.0)
26
16
  parallel (1.22.1)
27
17
  parser (3.2.0.0)
28
18
  ast (~> 2.4.1)
@@ -35,8 +25,6 @@ GEM
35
25
  rainbow (3.1.1)
36
26
  rake (13.0.6)
37
27
  regexp_parser (2.6.2)
38
- rest-client (1.6.7)
39
- mime-types (>= 1.16)
40
28
  rexml (3.2.5)
41
29
  rubocop (1.44.1)
42
30
  json (~> 2.3)
@@ -57,10 +45,6 @@ GEM
57
45
  simplecov_json_formatter (~> 0.1)
58
46
  simplecov-html (0.12.3)
59
47
  simplecov_json_formatter (0.1.4)
60
- term-ansicolor (1.2.2)
61
- tins (~> 0.8)
62
- thor (0.18.1)
63
- tins (0.13.2)
64
48
  unicode-display_width (2.4.2)
65
49
 
66
50
  PLATFORMS
@@ -70,7 +54,6 @@ PLATFORMS
70
54
  DEPENDENCIES
71
55
  bundler
72
56
  byebug (~> 11)
73
- coveralls
74
57
  fluxus!
75
58
  minitest (~> 5)
76
59
  pry (~> 0.14)
data/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # Fluxus
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/fluxus.svg)](https://badge.fury.io/rb/fluxus)
3
4
  [![build](https://github.com/Rynaro/fluxus/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/Rynaro/fluxus/actions/workflows/ci.yml)
4
5
  [![Maintainability](https://api.codeclimate.com/v1/badges/e86034a1a2fdc1e8e88b/maintainability)](https://codeclimate.com/github/Rynaro/fluxus/maintainability)
5
6
 
@@ -12,7 +13,7 @@ _Some similarities with [dry-monads](https://github.com/dry-rb/dry-monads) and [
12
13
 
13
14
  ## Installation
14
15
 
15
- You can add as your project as a dependency:
16
+ You can add it to your project as a dependency:
16
17
 
17
18
  ```ruby
18
19
  gem 'fluxus'
@@ -61,7 +62,7 @@ This approach could be useful for some error recovery systems. Since the applica
61
62
 
62
63
  ---
63
64
 
64
- ### The return `Flow::Results`
65
+ ### The return `Fluxus::Results`
65
66
 
66
67
  The expected `Fluxus` contract expects a `Fluxus::Results::Result` interface compatible as a return value.
67
68
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Fluxus
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluxus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henrique Aparecido Lavezzo
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-02-08 00:00:00.000000000 Z
11
+ date: 2023-02-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -24,7 +24,8 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
- description: Really simple fluxus objects for use cases.
27
+ description: Fluxus is a simple, dependencyless, and extensible use-case wrapper for
28
+ your Ruby code.
28
29
  email:
29
30
  - hi@hlavezzo.me
30
31
  executables: []
@@ -52,7 +53,7 @@ licenses:
52
53
  metadata:
53
54
  homepage_uri: https://github.com/Rynaro/fluxus
54
55
  source_code_uri: https://github.com/Rynaro/fluxus
55
- post_install_message:
56
+ post_install_message:
56
57
  rdoc_options: []
57
58
  require_paths:
58
59
  - lib
@@ -67,8 +68,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
67
68
  - !ruby/object:Gem::Version
68
69
  version: '0'
69
70
  requirements: []
70
- rubygems_version: 3.2.33
71
- signing_key:
71
+ rubygems_version: 3.3.7
72
+ signing_key:
72
73
  specification_version: 4
73
- summary: Simple use case objects
74
+ summary: Simple Ruby objects for use case wrapping
74
75
  test_files: []