bigid_auth 0.2.0 → 0.2.1

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: 7cae484adde1a8537c29863c0ec2eaf28dd89632a95605c8120546b8b7a5b6b0
4
- data.tar.gz: ad11c04490bbd147bf9ebe570ec3fa53d7451f175b7197430cb7aa6001b48527
3
+ metadata.gz: be63d3eb1171a4bedf2627a4e736ef598db37554281e5bbd0086c0f80b3c6736
4
+ data.tar.gz: afb045b319d76e21995dc524965c7fc4e3f3b490c76e1fb2da54e1ead4b494cf
5
5
  SHA512:
6
- metadata.gz: e4ef820360f66f94daf90d523bf150aaea64552c1421e8408cbd0cecf828c68284ecbed699d6daea57f5d06d00302da35c9654c9110a4ed7b8abf2cdb153dde9
7
- data.tar.gz: 42a4c5181bd9692faa5f64bf56840e57f9671e0cec05090fe88022a4e29c79db91d874f60bdc67622c86b0dc3aa86ea43586a7171c2c3244843ea85f4154031b
6
+ metadata.gz: a731374214af2621dcf194d2b6aa45045f1d22f98890b3274bd1d3663dc7b3c879dc28910e839c8663998ce296cd455b302f1826800eaf5d570d16ea16a0dae1
7
+ data.tar.gz: c423e5b593fc484dc80042942a989367be2f0c53953bbc722103de65596944c6620a75c8123d0b681ea37f7954622fe60c8498a7769fbf4ad5b586aa7775395e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v0.2.1-20220202 - Danilo Carolino
4
+
5
+ * [QC-79](https://qflash.atlassian.net/jira/software/projects/QC/boards/31?selectedIssue=QC-79)
6
+ Reduzir uso de pipelines em projetos Ruby [Dependabot]
7
+ * Bump Ruby version to v3.1.0
8
+
3
9
  ## v0.2.0
4
10
 
5
11
  * Use the gem "flash_integration" to retrieve a connection
data/README.md CHANGED
@@ -2,8 +2,7 @@ BigId Auth's Library for Ruby
2
2
  ==============
3
3
 
4
4
  [![Gem Version](https://badge.fury.io/rb/bigid_auth.svg)](https://badge.fury.io/rb/bigid_auth)
5
- [![Build Status](https://travis-ci.com/Quasar-Flash/bigid-auth-ruby.svg?branch=master)](https://travis-ci.com/Quasar-Flash/bigid-auth-ruby)
6
- [![bigid_auth](https://github.com/Quasar-Flash/bigid-auth-ruby/actions/workflows/ruby.yml/badge.svg)](https://github.com/Quasar-Flash/bigid-auth-ruby/actions/workflows/ruby.yml)
5
+ [![bigid_auth](https://github.com/Quasar-Flash/bigid_auth/actions/workflows/ruby.yml/badge.svg)](https://github.com/Quasar-Flash/bigid_auth/actions/workflows/ruby.yml)
7
6
 
8
7
  Dev Requirements
9
8
  -----------------
@@ -23,7 +22,7 @@ Installation for Rails
23
22
 
24
23
  ```ruby
25
24
  # Add to the Gemfile
26
- gem "bigid_auth", '~> 0.1.0'
25
+ gem "bigid_auth", "~> 0.2.0"
27
26
  ```
28
27
 
29
28
  Setting the BigID credentials - Rails Project
@@ -34,8 +33,8 @@ Create the config/initializers/bigid.rb file and define:
34
33
  ```ruby
35
34
  # Set the env variables
36
35
  Bigid.configure do |config|
37
- config.username = 'JHONNY.MUNIS@QFLASH.COM.BR'
38
- config.password = 'crtvreru'
36
+ config.username = "email@example.com"
37
+ config.password = "xxxxxxxxx"
39
38
  end
40
39
  ```
41
40
 
@@ -43,7 +42,7 @@ Applying an authentication
43
42
  -----------------
44
43
 
45
44
  ```ruby
46
- require 'bigid_auth'
45
+ require "bigid_auth"
47
46
 
48
47
  Bigid::Auth::Authentication.new.login
49
48
  ```
@@ -81,7 +80,7 @@ Problems?
81
80
  **Please do not directly email any committers with questions or problems.** A
82
81
  community is best served when discussions are held in public.
83
82
 
84
- Searching the [issues](https://github.com/Quasar-Flash/bigid-auth-ruby/issues)
83
+ Searching the [issues](https://github.com/Quasar-Flash/bigid_auth/issues)
85
84
  for your problem is also a good idea.
86
85
 
87
86
  Contributing
@@ -103,7 +102,7 @@ isolate to its own commit so I can cherry-pick around it.
103
102
  License
104
103
  -----------------
105
104
 
106
- Please see [LICENSE](https://github.com/Quasar-Flash/bigid-auth-ruby/blob/master/LICENSE.txt)
105
+ Please see [LICENSE](https://github.com/Quasar-Flash/bigid_auth/blob/master/LICENSE.txt)
107
106
  for licensing details.
108
107
 
109
108
  Authors
@@ -9,6 +9,6 @@ module Bigid
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 = "0.2.0"
12
+ VERSION = "0.2.1"
13
13
  end
14
14
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bigid_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Danilo Carolino
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-21 00:00:00.000000000 Z
11
+ date: 2022-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: flash_integration
@@ -28,42 +28,42 @@ dependencies:
28
28
  name: i18n
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: 1.8.0
34
31
  - - ">="
35
32
  - !ruby/object:Gem::Version
36
- version: '1.0'
33
+ version: '1.8'
34
+ - - "<"
35
+ - !ruby/object:Gem::Version
36
+ version: '1.10'
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
40
40
  requirements:
41
- - - "~>"
42
- - !ruby/object:Gem::Version
43
- version: 1.8.0
44
41
  - - ">="
45
42
  - !ruby/object:Gem::Version
46
- version: '1.0'
43
+ version: '1.8'
44
+ - - "<"
45
+ - !ruby/object:Gem::Version
46
+ version: '1.10'
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: json
49
49
  requirement: !ruby/object:Gem::Requirement
50
50
  requirements:
51
- - - "~>"
52
- - !ruby/object:Gem::Version
53
- version: 2.5.0
54
51
  - - ">="
55
52
  - !ruby/object:Gem::Version
56
- version: '2.0'
53
+ version: '2.5'
54
+ - - "<"
55
+ - !ruby/object:Gem::Version
56
+ version: '2.7'
57
57
  type: :runtime
58
58
  prerelease: false
59
59
  version_requirements: !ruby/object:Gem::Requirement
60
60
  requirements:
61
- - - "~>"
62
- - !ruby/object:Gem::Version
63
- version: 2.5.0
64
61
  - - ">="
65
62
  - !ruby/object:Gem::Version
66
- version: '2.0'
63
+ version: '2.5'
64
+ - - "<"
65
+ - !ruby/object:Gem::Version
66
+ version: '2.7'
67
67
  - !ruby/object:Gem::Dependency
68
68
  name: bundler
69
69
  requirement: !ruby/object:Gem::Requirement
@@ -112,14 +112,14 @@ dependencies:
112
112
  requirements:
113
113
  - - "~>"
114
114
  - !ruby/object:Gem::Version
115
- version: 0.14.0
115
+ version: 0.14.1
116
116
  type: :development
117
117
  prerelease: false
118
118
  version_requirements: !ruby/object:Gem::Requirement
119
119
  requirements:
120
120
  - - "~>"
121
121
  - !ruby/object:Gem::Version
122
- version: 0.14.0
122
+ version: 0.14.1
123
123
  - !ruby/object:Gem::Dependency
124
124
  name: rake
125
125
  requirement: !ruby/object:Gem::Requirement
@@ -160,56 +160,56 @@ dependencies:
160
160
  requirements:
161
161
  - - "~>"
162
162
  - !ruby/object:Gem::Version
163
- version: 1.18.3
163
+ version: 1.25.0
164
164
  type: :development
165
165
  prerelease: false
166
166
  version_requirements: !ruby/object:Gem::Requirement
167
167
  requirements:
168
168
  - - "~>"
169
169
  - !ruby/object:Gem::Version
170
- version: 1.18.3
170
+ version: 1.25.0
171
171
  - !ruby/object:Gem::Dependency
172
172
  name: rubocop-packaging
173
173
  requirement: !ruby/object:Gem::Requirement
174
174
  requirements:
175
175
  - - "~>"
176
176
  - !ruby/object:Gem::Version
177
- version: 0.5.0
177
+ version: 0.5.1
178
178
  type: :development
179
179
  prerelease: false
180
180
  version_requirements: !ruby/object:Gem::Requirement
181
181
  requirements:
182
182
  - - "~>"
183
183
  - !ruby/object:Gem::Version
184
- version: 0.5.0
184
+ version: 0.5.1
185
185
  - !ruby/object:Gem::Dependency
186
186
  name: rubocop-performance
187
187
  requirement: !ruby/object:Gem::Requirement
188
188
  requirements:
189
189
  - - "~>"
190
190
  - !ruby/object:Gem::Version
191
- version: 1.11.4
191
+ version: 1.13.2
192
192
  type: :development
193
193
  prerelease: false
194
194
  version_requirements: !ruby/object:Gem::Requirement
195
195
  requirements:
196
196
  - - "~>"
197
197
  - !ruby/object:Gem::Version
198
- version: 1.11.4
198
+ version: 1.13.2
199
199
  - !ruby/object:Gem::Dependency
200
200
  name: simplecov
201
201
  requirement: !ruby/object:Gem::Requirement
202
202
  requirements:
203
203
  - - "~>"
204
204
  - !ruby/object:Gem::Version
205
- version: 0.21.0
205
+ version: 0.21.2
206
206
  type: :development
207
207
  prerelease: false
208
208
  version_requirements: !ruby/object:Gem::Requirement
209
209
  requirements:
210
210
  - - "~>"
211
211
  - !ruby/object:Gem::Version
212
- version: 0.21.0
212
+ version: 0.21.2
213
213
  description: A library to use BigData Corps auth features
214
214
  email:
215
215
  - danilo.carolino@qflash.com.br
@@ -236,14 +236,14 @@ files:
236
236
  - lib/locales/pt-BR.yml
237
237
  - spec/bigid_auth_spec.rb
238
238
  - spec/spec_helper.rb
239
- homepage: https://github.com/Quasar-Flash/bigid-auth-ruby
239
+ homepage: https://github.com/Quasar-Flash/bigid_auth
240
240
  licenses:
241
241
  - MIT
242
242
  metadata:
243
- changelog_uri: https://github.com/Quasar-Flash/bigid-auth-ruby/blob/master/CHANGELOG.md
244
- source_code_uri: https://github.com/Quasar-Flash/bigid-auth-ruby
245
- bug_tracker_uri: https://github.com/Quasar-Flash/bigid-auth-ruby/issues
246
- post_install_message:
243
+ changelog_uri: https://github.com/Quasar-Flash/bigid_auth/blob/master/CHANGELOG.md
244
+ source_code_uri: https://github.com/Quasar-Flash/bigid_auth
245
+ bug_tracker_uri: https://github.com/Quasar-Flash/bigid_auth/issues
246
+ post_install_message:
247
247
  rdoc_options: []
248
248
  require_paths:
249
249
  - lib
@@ -251,15 +251,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
251
251
  requirements:
252
252
  - - ">="
253
253
  - !ruby/object:Gem::Version
254
- version: '2.5'
254
+ version: '2.7'
255
255
  required_rubygems_version: !ruby/object:Gem::Requirement
256
256
  requirements:
257
257
  - - ">="
258
258
  - !ruby/object:Gem::Version
259
259
  version: '0'
260
260
  requirements: []
261
- rubygems_version: 3.1.4
262
- signing_key:
261
+ rubygems_version: 3.3.3
262
+ signing_key:
263
263
  specification_version: 4
264
264
  summary: Bigid Auth Library
265
265
  test_files: