cognito_idp 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: 3d8c5449a8a464b8b744fb1d916c38c12dfb9a31ad70e2cb3a2f8a4757ad627d
4
- data.tar.gz: bc4e834f797c2c677b600eb3ffd6efd5151a087b0b974381cf33699c6898dc21
3
+ metadata.gz: 30c94032f7afb9a011661bbbc0f21b5cc06cf26da2c69d158b707891d6540b41
4
+ data.tar.gz: 7fe234287e9617337749aaff7b80ac565923d3d95afe4ddd2a66cfa85ba6bda5
5
5
  SHA512:
6
- metadata.gz: 999d3d47a672c0de5891b5cbe865d54d3deeffcd1e5394dd49667cc4199249fa9f06518552ce8467279db01ca972082085e4344371ebcebd345c0262e6af7169
7
- data.tar.gz: aab452ad535d4379cc28490d239f03db2991e07b849ecae0052775e7f97ba667b956eebb5853dc027d3b0b5b5b1dd06a5f96c04edcc67417c2a1955a859c8b3f
6
+ metadata.gz: dd4c5accd979a7147e77df0c85ea4633440985856591e4b42321947c0c5339216d106893cc4616c6f15df3fb2af6cd72c8683b3d4db78c27dc35a171e379464e
7
+ data.tar.gz: d8b3a9c203462ce26b0830bc4734ddf2adb49fd47618cf7c9a4f21d9aacdfacdb93ea10f5ca33ac10f056dc2f63d97f7b78a814590c1a30ba8d3f76c39eedd6a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
- ## [Unreleased]
1
+ # Changelog
2
2
 
3
- ## [0.1.0] - 2023-11-29
3
+ ## [0.1.1](https://github.com/appercept/cognito_idp-ruby/tree/0.1.1) (2023-12-07)
4
4
 
5
- - Initial release
5
+ [Full Changelog](https://github.com/appercept/cognito_idp-ruby/compare/v0.1.0...0.1.1)
6
+
7
+ **Fixed bugs:**
8
+
9
+ - NoMethodError: undefined method `key?' for OpenStruct [\#1](https://github.com/appercept/cognito_idp-ruby/issues/1)
10
+
11
+ **Merged pull requests:**
12
+
13
+ - fix: UserInfo always responds to missing [\#2](https://github.com/appercept/cognito_idp-ruby/pull/2) ([rhatherall](https://github.com/rhatherall))
14
+
15
+ ## [v0.1.0](https://github.com/appercept/cognito_idp-ruby/tree/v0.1.0) (2023-12-02)
16
+
17
+ [Full Changelog](https://github.com/appercept/cognito_idp-ruby/compare/6a859f5b15c9989aded52c92af8b99197ec5860d...v0.1.0)
18
+
19
+
20
+
21
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
data/README.md CHANGED
@@ -1,20 +1,16 @@
1
1
  # CognitoIdp
2
2
 
3
- TODO: Delete this and the text below, and describe your gem
4
-
5
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/cognito_idp/client`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ Client for interacting with Amazon Cognito IdP (User Pools) endpoints.
6
4
 
7
5
  ## Installation
8
6
 
9
- TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
-
11
7
  Install the gem and add to the application's Gemfile by executing:
12
8
 
13
- $ bundle add UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
9
+ $ bundle add cognito_idp
14
10
 
15
11
  If bundler is not being used to manage dependencies, install the gem by executing:
16
12
 
17
- $ gem install UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
13
+ $ gem install cognito_idp
18
14
 
19
15
  ## Usage
20
16
 
@@ -28,7 +24,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
28
24
 
29
25
  ## Contributing
30
26
 
31
- Bug reports and pull requests are welcome on GitHub at https://github.com/appercept/cognito_idp-client. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/appercept/cognito_idp-client/blob/main/CODE_OF_CONDUCT.md).
27
+ Bug reports and pull requests are welcome on GitHub at https://github.com/appercept/cognito_idp-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/appercept/cognito_idp-ruby/blob/main/CODE_OF_CONDUCT.md).
32
28
 
33
29
  ## License
34
30
 
@@ -36,4 +32,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
36
32
 
37
33
  ## Code of Conduct
38
34
 
39
- Everyone interacting in the CognitoIdp::Client project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/cognito_idp-client/blob/main/CODE_OF_CONDUCT.md).
35
+ Everyone interacting in the CognitoIdp project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/appercept/cognito_idp-ruby/blob/main/CODE_OF_CONDUCT.md).
@@ -14,7 +14,7 @@ module CognitoIdp
14
14
  end
15
15
 
16
16
  def respond_to_missing?(method, include_private = false)
17
- @attributes.key?(method)
17
+ true
18
18
  end
19
19
  end
20
20
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CognitoIdp
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cognito_idp
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
  - Richard Hatherall
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-12-02 00:00:00.000000000 Z
11
+ date: 2023-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -70,7 +70,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
70
70
  - !ruby/object:Gem::Version
71
71
  version: '0'
72
72
  requirements: []
73
- rubygems_version: 3.4.22
73
+ rubygems_version: 3.4.10
74
74
  signing_key:
75
75
  specification_version: 4
76
76
  summary: Amazon Cognito IdP (User Pools) Client