pg-aws_rds_iam 0.1.0 → 0.1.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: 49df62cf1db1c3fdbfdd25f515b65cea8335dec18e050581ef45a3005f4b6ad9
4
- data.tar.gz: 322858372f9fdc7b80b8cf7aaecc131e97f80efa44f8879bfed02445ca786633
3
+ metadata.gz: 67262dd445e222ab6919666619c45fd9973db0f25ea97e37d3d27951018e3ab4
4
+ data.tar.gz: 6d14148ede6699311593efff97b3e7a62a8a3f0834f1036fdd7282f639b7e78c
5
5
  SHA512:
6
- metadata.gz: 76839858df3934b56f08cbb481d2d40b3e8e7993b0bed0e00b304a1fb608e21a544183a7664c32da17eb11ca5f1edae030da56bc75d6e346ae6e9ce0ed4c5009
7
- data.tar.gz: 415384ef75576d6b0af3499d0ee8341415405b4717f63149fd8f5b5c0c0b50a268067907b9aed844e6f120fab57b10e795fa6b564c1f4e93e2e9489ca41aae70
6
+ metadata.gz: 13978947174210351b19d4910c79151bd005cba69b3b7906853d266af2e6dac0c430e6df53c19a4f273523cbfc7ef2fa8e74dcfeb627a027aa2ba9fa4dd0b89b
7
+ data.tar.gz: 7c5ad9d4fb023a8ff190a5b625ac748cd144afd1cb2a82af17ea5112ae5b4b7c4eab4610f167f8e8848d2759b0b293e91609ec10ef622c362372c77c322d532e
@@ -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.0...HEAD
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pg-aws_rds_iam (0.1.0)
4
+ pg-aws_rds_iam (0.1.1)
5
5
  aws-sdk-rds (~> 1.0)
6
6
  pg (>= 0.18, < 2.0)
7
7
 
data/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # PG::AWS_RDS_IAM
2
2
 
3
+ [![Gem](https://img.shields.io/gem/v/pg-aws_rds_iam?style=flat-square)](https://rubygems.org/gems/pg-aws_rds_iam)
4
+ &ensp;
5
+ [![Docs](https://img.shields.io/badge/yard-docs-blue?style=flat-square)](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.
@@ -3,6 +3,6 @@
3
3
  module PG
4
4
  module AWS_RDS_IAM
5
5
  # The current version of the gem.
6
- VERSION = "0.1.0"
6
+ VERSION = "0.1.1"
7
7
  end
8
8
  end
@@ -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.0
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: