pg-aws_rds_iam 0.1.0 → 0.1.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 +4 -4
- data/CHANGELOG.md +7 -2
- data/Gemfile.lock +1 -1
- data/README.md +4 -0
- data/lib/pg/aws_rds_iam/version.rb +1 -1
- data/pg-aws_rds_iam.gemspec +3 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 67262dd445e222ab6919666619c45fd9973db0f25ea97e37d3d27951018e3ab4
|
|
4
|
+
data.tar.gz: 6d14148ede6699311593efff97b3e7a62a8a3f0834f1036fdd7282f639b7e78c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 13978947174210351b19d4910c79151bd005cba69b3b7906853d266af2e6dac0c430e6df53c19a4f273523cbfc7ef2fa8e74dcfeb627a027aa2ba9fa4dd0b89b
|
|
7
|
+
data.tar.gz: 7c5ad9d4fb023a8ff190a5b625ac748cd144afd1cb2a82af17ea5112ae5b4b7c4eab4610f167f8e8848d2759b0b293e91609ec10ef622c362372c77c322d532e
|
data/CHANGELOG.md
CHANGED
|
@@ -4,14 +4,19 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
-
|
|
8
7
|
## [Unreleased]
|
|
9
8
|
|
|
9
|
+
## [0.1.1] - 2020-02-05
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
* Badges to README and additional links to gemspec. ([#6](https://github.com/haines/pg-aws_rds_iam/pull/6))
|
|
13
|
+
|
|
10
14
|
## [0.1.0] - 2020-02-05
|
|
11
15
|
|
|
12
16
|
### Added
|
|
13
17
|
* A plugin for the [`pg` gem](https://rubygems.org/gems/pg) that adds support for [IAM authentication](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html) when connecting to PostgreSQL databases hosted in Amazon RDS. ([#1](https://github.com/haines/pg-aws_rds_iam/pull/1))
|
|
14
18
|
* ActiveRecord support. ([#3](https://github.com/haines/pg-aws_rds_iam/pull/3))
|
|
15
19
|
|
|
16
|
-
[Unreleased]: https://github.com/haines/pg-aws_rds_iam/compare/v0.1.
|
|
20
|
+
[Unreleased]: https://github.com/haines/pg-aws_rds_iam/compare/v0.1.1...HEAD
|
|
21
|
+
[0.1.1]: https://github.com/haines/pg-aws_rds_iam/compare/v0.1.0...v0.1.1
|
|
17
22
|
[0.1.0]: https://github.com/haines/pg-aws_rds_iam/compare/64168051a8ef5f32a13632d8ef0b7da00d0056bc...v0.1.0
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# PG::AWS_RDS_IAM
|
|
2
2
|
|
|
3
|
+
[](https://rubygems.org/gems/pg-aws_rds_iam)
|
|
4
|
+
 
|
|
5
|
+
[](https://rubydoc.info/gems/pg-aws_rds_iam)
|
|
6
|
+
|
|
3
7
|
`PG::AWS_RDS_IAM` is a plugin for the [`pg` gem](https://rubygems.org/gems/pg) that adds support for [IAM authentication](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html) when connecting to PostgreSQL databases hosted in Amazon RDS.
|
|
4
8
|
|
|
5
9
|
IAM authentication allows your application to connect to the database using secure, short-lived authentication tokens instead of a fixed password.
|
data/pg-aws_rds_iam.gemspec
CHANGED
|
@@ -15,9 +15,11 @@ Gem::Specification.new do |spec|
|
|
|
15
15
|
spec.homepage = "https://github.com/haines/pg-aws_rds_iam"
|
|
16
16
|
spec.license = "MIT"
|
|
17
17
|
|
|
18
|
+
spec.metadata["bug_tracker_uri"] = "#{spec.homepage}/issues"
|
|
19
|
+
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
|
|
20
|
+
spec.metadata["documentation_uri"] = "https://rubydoc.info/gems/pg-aws_rds_iam/#{PG::AWS_RDS_IAM::VERSION}"
|
|
18
21
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
19
22
|
spec.metadata["source_code_uri"] = spec.homepage
|
|
20
|
-
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
|
|
21
23
|
|
|
22
24
|
spec.files = Dir.chdir(__dir__) { `git ls-files -z`.split("\x0").reject { |path| path.start_with?("test/") } }
|
|
23
25
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pg-aws_rds_iam
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Haines
|
|
@@ -231,9 +231,11 @@ homepage: https://github.com/haines/pg-aws_rds_iam
|
|
|
231
231
|
licenses:
|
|
232
232
|
- MIT
|
|
233
233
|
metadata:
|
|
234
|
+
bug_tracker_uri: https://github.com/haines/pg-aws_rds_iam/issues
|
|
235
|
+
changelog_uri: https://github.com/haines/pg-aws_rds_iam/blob/master/CHANGELOG.md
|
|
236
|
+
documentation_uri: https://rubydoc.info/gems/pg-aws_rds_iam/0.1.1
|
|
234
237
|
homepage_uri: https://github.com/haines/pg-aws_rds_iam
|
|
235
238
|
source_code_uri: https://github.com/haines/pg-aws_rds_iam
|
|
236
|
-
changelog_uri: https://github.com/haines/pg-aws_rds_iam/blob/master/CHANGELOG.md
|
|
237
239
|
post_install_message:
|
|
238
240
|
rdoc_options: []
|
|
239
241
|
require_paths:
|