aws-mfa-secure 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/aws_mfa_secure.rb +2 -1
- data/lib/aws_mfa_secure/version.rb +1 -1
- data/spec/monkey_patches.rb +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 62039bd7f56af605c3a2c499b67adf53c5de41d32f502b9d34bb0a569553fba8
|
4
|
+
data.tar.gz: 2751b27e5163aec11db0b64ad26d7653f7ff3bf2fbb7d0820a204c6112568d00
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 72ceaf1ef30338d2e518bf71a6429b2f3f143fe1561c2c2a1451b06ddba6008baf4bfd2a1834c2020ad5325dc5fb7116ce9cab3a0b2c3a36d40b74edcdc8130e
|
7
|
+
data.tar.gz: c3558a483f7e04b05cbb8ebbcd676e74aee898a5f4be581451d01c81b4aa1fec5b4d606e7a1854c1f56f31fb4d6a274d3c8079bfe7528628064a15823f3ec239
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,9 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
5
5
|
|
6
|
+
## [0.3.1]
|
7
|
+
- allow specs to pass in other projects
|
8
|
+
|
6
9
|
## [0.3.0]
|
7
10
|
- require aws_mfa_secure so ext can be one line: require "aws_mfa_secure/ext/aws"
|
8
11
|
|
data/lib/aws_mfa_secure.rb
CHANGED
data/spec/monkey_patches.rb
CHANGED
@@ -2,7 +2,8 @@ AwsMfaSecure::Base # autoload
|
|
2
2
|
module AwsMfaSecure
|
3
3
|
class Base
|
4
4
|
def session_creds_path
|
5
|
-
|
5
|
+
root = File.expand_path("../", __dir__)
|
6
|
+
"#{root}/spec/fixtures/aws-mfa-secure-sessions/fake_credentials"
|
6
7
|
end
|
7
8
|
|
8
9
|
def fetch_creds?
|