flash_integration 1.0.0 → 1.0.1

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: 155b7c58c6ad48107256de3e2d8c2c5059d7bf8b28db635b3e9bb9ceffc9f19a
4
- data.tar.gz: a2427f43843d40a51c8708fca1d620a1527223cfe15208f874387d46ab357c54
3
+ metadata.gz: 3d8e14d8d06afdba30c4253994e9c013c98a1c2a3d40e0078f8a7a56f10c18c4
4
+ data.tar.gz: 3bf642c53f220e2091a6b807f8532844c37779d35e85f65dc118f318b3ce7d6c
5
5
  SHA512:
6
- metadata.gz: e2a0cf2e050bc0f6a0e33a079286aa0aafde8353a865b534c7fff45c22f29d6c64f29bdf96e80ee33986168df67438634c6ad41395538402154c7e78eb7612a7
7
- data.tar.gz: 5e626245dbaae85a1eef4bbfd17401bea49c6a00f37d7bf61fb09b5153fc6bc67d5678ccab84d2b4e9d456c274d807d5b48c123bfb2d2d28aca436c891a08c29
6
+ metadata.gz: 8c8187fd519d7ec8f24f5ab0f3551ba48a2028e277ec4b29dd64c71d0782185dfb8e5ed0deecc90e7b57a0368a45649630d7b115f729055ad870f32f7177d4d3
7
+ data.tar.gz: b94d2493a6a1b87cfe1036fe4ebbb40c7ecda24eadebc130c7233d6f9fba49b0ae5afc1695edbeb4dbe7055ab4d1b56ab6b716aa9d5f19effc9cac293643910d
data/CHANGELOG.md CHANGED
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.0.1] - 2023-02-03
11
+
12
+ ### Changed
13
+
14
+ - Adiciona workflow de deployment padronizado ao projeto por @danilogco
15
+ - Adiciona o Ruby v3.2.0 para a matriz de testes unitários por @danilogco
16
+
10
17
  ## [1.0.0] - 2022-06-13
11
18
 
12
19
  ### Changed
data/README.md CHANGED
@@ -1,32 +1,29 @@
1
- BigId Auth's Library for Ruby
2
- ==============
1
+ # Flash Integration
2
+
3
+ A Faraday's extension to make it easier to create integrations.
3
4
 
4
5
  [![Gem Version](https://badge.fury.io/rb/flash_integration.svg)](https://badge.fury.io/rb/flash_integration)
5
- [![flash_integration](https://github.com/Quasar-Flash/flash_integration/actions/workflows/ruby.yml/badge.svg)](https://github.com/Quasar-Flash/flash_integration/actions/workflows/ruby.yml)
6
+ [![Build](https://github.com/Quasar-Flash/flash_integration/actions/workflows/tests.yml/badge.svg)](https://github.com/Quasar-Flash/flash_integration/actions/workflows/tests.yml)
6
7
 
7
- Dev Requirements
8
- -----------------
8
+ ## Dev Requirements
9
9
 
10
10
  - Ruby: Any version
11
11
  - Bundler
12
12
 
13
- Global Installation
14
- -----------------
13
+ ## Global Installation
15
14
 
16
15
  ```ruby
17
16
  gem install flash_integration
18
17
  ```
19
18
 
20
- Installation for Rails
21
- -----------------
19
+ ## Installation for Rails
22
20
 
23
21
  ```ruby
24
22
  # Add to the Gemfile
25
23
  gem 'flash_integration', '~> 1.0.0'
26
24
  ```
27
25
 
28
- Example - How to extend
29
- -----------------
26
+ ## Example - How to extend
30
27
 
31
28
  ```ruby
32
29
  module MyApp
@@ -45,8 +42,7 @@ module MyApp
45
42
  end
46
43
  ```
47
44
 
48
- Example - How to request
49
- -----------------
45
+ ## Example - How to request
50
46
 
51
47
  ```ruby
52
48
  res = @connection.post(
@@ -65,15 +61,13 @@ res.body
65
61
  res.time
66
62
  ```
67
63
 
68
- Problems?
69
- -----------------
64
+ ## Problems?
70
65
 
71
66
  **Please do not directly email any committers with questions or problems.** A community is best served when discussions are held in public.
72
67
 
73
68
  Searching the [issues](https://github.com/Quasar-Flash/flash_integration/issues) for your problem is also a good idea.
74
69
 
75
- Contributing
76
- -----------------
70
+ ## Contributing
77
71
 
78
72
  - Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet;
79
73
  - Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it;
@@ -83,12 +77,10 @@ Contributing
83
77
  - Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.;
84
78
  - Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
85
79
 
86
- License
87
- -----------------
80
+ ## License
88
81
 
89
82
  Please see [LICENSE](https://github.com/Quasar-Flash/flash_integration/blob/master/LICENSE.txt) for licensing details.
90
83
 
91
- Authors
92
- -----------------
84
+ ## Authors
93
85
 
94
86
  Danilo Carolino, [@danilogco](https://github.com/danilogco) / [@Quasar-Flash](https://github.com/Quasar-Flash)
@@ -9,6 +9,6 @@ module Flash
9
9
  # Major - Incremented for incompatible changes with previous release (or big enough new features)
10
10
  # Minor - Incremented for new backwards-compatible features + deprecations
11
11
  # Patch - Incremented for backwards-compatible bug fixes
12
- VERSION = "1.0.0"
12
+ VERSION = File.read(".version").strip
13
13
  end
14
14
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flash_integration
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Danilo Carolino
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-13 00:00:00.000000000 Z
11
+ date: 2023-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: 1.4.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: 2.4.0
22
+ version: 2.8.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: 1.4.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: 2.4.0
32
+ version: 2.8.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: bundler
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -84,28 +84,28 @@ dependencies:
84
84
  requirements:
85
85
  - - "~>"
86
86
  - !ruby/object:Gem::Version
87
- version: 3.11.0
87
+ version: 3.12.0
88
88
  type: :development
89
89
  prerelease: false
90
90
  version_requirements: !ruby/object:Gem::Requirement
91
91
  requirements:
92
92
  - - "~>"
93
93
  - !ruby/object:Gem::Version
94
- version: 3.11.0
94
+ version: 3.12.0
95
95
  - !ruby/object:Gem::Dependency
96
96
  name: rubocop
97
97
  requirement: !ruby/object:Gem::Requirement
98
98
  requirements:
99
99
  - - "~>"
100
100
  - !ruby/object:Gem::Version
101
- version: 1.30.1
101
+ version: 1.44.1
102
102
  type: :development
103
103
  prerelease: false
104
104
  version_requirements: !ruby/object:Gem::Requirement
105
105
  requirements:
106
106
  - - "~>"
107
107
  - !ruby/object:Gem::Version
108
- version: 1.30.1
108
+ version: 1.44.1
109
109
  - !ruby/object:Gem::Dependency
110
110
  name: rubocop-packaging
111
111
  requirement: !ruby/object:Gem::Requirement
@@ -126,28 +126,28 @@ dependencies:
126
126
  requirements:
127
127
  - - "~>"
128
128
  - !ruby/object:Gem::Version
129
- version: 1.14.2
129
+ version: 1.15.0
130
130
  type: :development
131
131
  prerelease: false
132
132
  version_requirements: !ruby/object:Gem::Requirement
133
133
  requirements:
134
134
  - - "~>"
135
135
  - !ruby/object:Gem::Version
136
- version: 1.14.2
136
+ version: 1.15.0
137
137
  - !ruby/object:Gem::Dependency
138
138
  name: rubocop-rspec
139
139
  requirement: !ruby/object:Gem::Requirement
140
140
  requirements:
141
141
  - - "~>"
142
142
  - !ruby/object:Gem::Version
143
- version: 2.11.1
143
+ version: 2.18.0
144
144
  type: :development
145
145
  prerelease: false
146
146
  version_requirements: !ruby/object:Gem::Requirement
147
147
  requirements:
148
148
  - - "~>"
149
149
  - !ruby/object:Gem::Version
150
- version: 2.11.1
150
+ version: 2.18.0
151
151
  - !ruby/object:Gem::Dependency
152
152
  name: simplecov
153
153
  requirement: !ruby/object:Gem::Requirement
@@ -209,7 +209,7 @@ signing_key:
209
209
  specification_version: 4
210
210
  summary: Flash Integration Library
211
211
  test_files:
212
+ - spec/flash_integration_spec.rb
212
213
  - spec/flash/integration/connection_spec.rb
213
214
  - spec/flash/integration/response_spec.rb
214
- - spec/flash_integration_spec.rb
215
215
  - spec/spec_helper.rb