aws_local_config_parser 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 +4 -4
- data/README.md +1 -0
- data/lib/aws_local_config_parser/version.rb +1 -1
- metadata +17 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9cca023a99a6a952e6f0adef530645e5c6b94287346d25f7edad8a13474f3ba6
|
4
|
+
data.tar.gz: df35c97974f876463d77fcf151e347b354249d6ff594eb915b035a47ed71c1e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38a1a0634c67ea90dd15520901668b3fecb65548793733462bcdb77d9700b674250835b603c3e66e9daa1f9d06576cefafe906a70df666f5d9d1f907560dfea0
|
7
|
+
data.tar.gz: e3ccbc778c3122eda9acd3afdea088121d6810856b9666a00c47f72a2b9a96d158178fede5111ea89cc30e839732a924801b937989b9b2a31cf0b7248d4087ac
|
data/README.md
CHANGED
@@ -47,6 +47,7 @@ config.all_sso_sessions
|
|
47
47
|
## Making a commit
|
48
48
|
[Lefthook](https://github.com/evilmartians/lefthook/) has [been configured](./lefthook.yml) with pre-commit checks to:
|
49
49
|
- run `rubocop` for any `ruby` files
|
50
|
+
- run `actionlint` for any GitHub workflow files
|
50
51
|
|
51
52
|
If for some reason it's necessary, it's possible to temporarily skip `lefthook` with: `LEFTHOOK=0 git commit`.
|
52
53
|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws_local_config_parser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- FreeAgent
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-02-06 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: inifile
|
@@ -24,6 +23,20 @@ dependencies:
|
|
24
23
|
- - "~>"
|
25
24
|
- !ruby/object:Gem::Version
|
26
25
|
version: '3'
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: ostruct
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0'
|
27
40
|
description: Parse your local '"$HOME"/.aws/config' file.
|
28
41
|
email:
|
29
42
|
- opensource@freeagent.com
|
@@ -47,7 +60,6 @@ metadata:
|
|
47
60
|
homepage_uri: https://github.com/fac/aws_local_config_parser
|
48
61
|
source_code_uri: https://github.com/fac/aws_local_config_parser
|
49
62
|
changelog_uri: https://github.com/fac/aws_local_config_parser/releases
|
50
|
-
post_install_message:
|
51
63
|
rdoc_options: []
|
52
64
|
require_paths:
|
53
65
|
- lib
|
@@ -62,8 +74,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
62
74
|
- !ruby/object:Gem::Version
|
63
75
|
version: '0'
|
64
76
|
requirements: []
|
65
|
-
rubygems_version: 3.
|
66
|
-
signing_key:
|
77
|
+
rubygems_version: 3.6.2
|
67
78
|
specification_version: 4
|
68
79
|
summary: A simple gem to parse your local AWS config file.
|
69
80
|
test_files: []
|