amazon-chime-sdk-rails 2.0.0 → 2.1.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7043551e2f5cda62424e44f900a17eacf61dd23c5031f4d84dbb130eac22e2cf
4
- data.tar.gz: 7b13195e5ee0dce1365024f164b4ad39ae481ae09b28833dd6058729c17f6505
3
+ metadata.gz: 6a4ee22a82debfa8f285e8516c9b6f80bc82be4cd26ed45dd65d7ea2e05170f8
4
+ data.tar.gz: fcf6109a79b1ca6535b10fbcf51994708a80409601daade46b2fa10cfd9a22e0
5
5
  SHA512:
6
- metadata.gz: dd6dc1a0ae0c9794f0a2ac8fc2d0d24c05848229cbd8d5155a2cc4e1ca1e14a0fa62fa0f874b5d8d8d07dba49914c35af771c58fc7529fd8987d8e5080f7ba79
7
- data.tar.gz: 51938a494e814da4641795fe2f698014c79d15a9c1d66568025f13af15403f770896150bf89083a6ce063234edb850bf69a406255118337a6c014178d458b8fa
6
+ metadata.gz: 3a153f6055287f2eb6d20e44012afb50ed0a6554be21d2563dc1a0955f943cf053e1d64b73ac086721dec83b9bdda3473dfeef51b5d817f1f347548b90c7c1c9
7
+ data.tar.gz: 99466f46ccd52dcce9c71dcaca1422b96af51ff68023bc41b529f3401a09c8b5368e0db93df2c05dd5ad25d8b9b87d67d19469a113017bbdc2d054b238a92942
@@ -13,7 +13,7 @@ on:
13
13
  env:
14
14
  # https://nodejs.org/en/download/current
15
15
  # https://nodejs.org/en/about/previous-releases
16
- node-version: 21.6.2
16
+ node-version: 24.x
17
17
 
18
18
  jobs:
19
19
  build:
@@ -22,17 +22,23 @@ jobs:
22
22
  fail-fast: false
23
23
  matrix:
24
24
  gemfile:
25
- - gemfiles/Gemfile.rails-6.1
26
25
  - gemfiles/Gemfile.rails-7.0
27
26
  - gemfiles/Gemfile.rails-7.1
27
+ - gemfiles/Gemfile.rails-7.2
28
+ - gemfiles/Gemfile.rails-8.0
29
+ - gemfiles/Gemfile.rails-8.1
28
30
  include:
29
31
  # https://www.ruby-lang.org/en/downloads
30
- - gemfile: gemfiles/Gemfile.rails-6.1
31
- ruby-version: 3.3.0
32
32
  - gemfile: gemfiles/Gemfile.rails-7.0
33
- ruby-version: 3.3.0
33
+ ruby-version: 3.2.9
34
34
  - gemfile: gemfiles/Gemfile.rails-7.1
35
- ruby-version: 3.3.0
35
+ ruby-version: 3.2.9
36
+ - gemfile: gemfiles/Gemfile.rails-7.2
37
+ ruby-version: 3.3.10
38
+ - gemfile: gemfiles/Gemfile.rails-8.0
39
+ ruby-version: 3.4.8
40
+ - gemfile: gemfiles/Gemfile.rails-8.1
41
+ ruby-version: 4.0.0
36
42
  - gemfile: Gemfile
37
43
  ruby-version: head
38
44
  allow_failures: 'true'
@@ -42,14 +48,14 @@ jobs:
42
48
  BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.gemfile }}
43
49
 
44
50
  steps:
45
- - uses: actions/checkout@v2
51
+ - uses: actions/checkout@v5
46
52
  - name: Set up Ruby
47
53
  uses: ruby/setup-ruby@v1
48
54
  with:
49
55
  ruby-version: ${{ matrix.ruby-version }}
50
56
  bundler-cache: true
51
57
  - name: Set up Node.js
52
- uses: actions/setup-node@v2
58
+ uses: actions/setup-node@v5
53
59
  with:
54
60
  node-version: ${{ env.node-version }}
55
61
  - name: Prepare test application
data/CHANGELOG.md CHANGED
@@ -1,3 +1,24 @@
1
+ ## 2.1.0 / 2026-04-11
2
+ [Full Changelog](http://github.com/simukappu/amazon-chime-sdk-rails/compare/v2.0.1...v2.1.0)
3
+
4
+ Enhancements:
5
+
6
+ * Support Rails 8.1
7
+ * Update CI configuration and documentation
8
+
9
+ Dependencies:
10
+
11
+ * Require Ruby 3.1+ and Rails 7.0+
12
+ * Update development dependencies
13
+
14
+ ## 2.0.1 / 2025-01-14
15
+ [Full Changelog](http://github.com/simukappu/amazon-chime-sdk-rails/compare/v2.0.0...v2.0.1)
16
+
17
+ Enhancements:
18
+
19
+ * Remove unmaintained Rails 6.1 from test cases
20
+ * Update test case with Rails 7.2 and Rails 8.0
21
+
1
22
  ## 2.0.0 / 2024-02-28
2
23
  [Full Changelog](http://github.com/simukappu/amazon-chime-sdk-rails/compare/v1.1.1...v2.0.0)
3
24
 
data/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM ruby:3.3.0
1
+ FROM ruby:4.0.0
2
2
  RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs npm
3
3
  ENV ROOT="/amazon-chime-sdk-rails"
4
4
  WORKDIR ${ROOT}
data/Gemfile CHANGED
@@ -3,27 +3,23 @@ source 'https://rubygems.org'
3
3
  gemspec
4
4
 
5
5
  # Bundle Rails
6
- gem 'rails', '~> 7.1.0'
7
- # https://github.com/lynndylanhurley/devise_token_auth/pull/1606
6
+ gem 'rails', '~> 8.1.0'
7
+ # https://github.com/lynndylanhurley/devise_token_auth/pull/1639
8
8
  gem 'devise_token_auth', git: 'https://github.com/lynndylanhurley/devise_token_auth.git'
9
9
 
10
10
  gem 'sqlite3'
11
11
  gem 'puma'
12
12
  gem 'sass-rails'
13
- gem 'turbolinks'
14
13
  gem 'jbuilder'
15
14
 
16
15
  group :development do
17
16
  gem 'web-console'
18
17
  gem 'listen'
19
- gem 'spring'
20
- gem 'spring-watcher-listen'
21
18
  end
22
19
 
23
20
  group :test do
24
- # gem 'coveralls', require: false
25
21
  gem 'coveralls_reborn', require: false
26
22
  end
27
23
 
28
24
  gem 'rack-cors', groups: [:production, :development]
29
- gem 'dotenv-rails', groups: [:production, :development]
25
+ gem 'dotenv-rails', groups: [:production, :development]
data/README.md CHANGED
@@ -2,18 +2,23 @@
2
2
 
3
3
  [![Build Status](https://github.com/simukappu/amazon-chime-sdk-rails/actions/workflows/build.yml/badge.svg)](https://github.com/simukappu/amazon-chime-sdk-rails/actions/workflows/build.yml)
4
4
  [![Coverage Status](https://coveralls.io/repos/github/simukappu/amazon-chime-sdk-rails/badge.svg?branch=master)](https://coveralls.io/github/simukappu/amazon-chime-sdk-rails?branch=master)
5
- [![Dependency](https://img.shields.io/depfu/simukappu/amazon-chime-sdk-rails.svg)](https://depfu.com/repos/simukappu/amazon-chime-sdk-rails)
6
- [![Inline Docs](http://inch-ci.org/github/simukappu/amazon-chime-sdk-rails.svg?branch=master)](http://inch-ci.org/github/simukappu/amazon-chime-sdk-rails)
7
5
  [![Gem Version](https://badge.fury.io/rb/amazon-chime-sdk-rails.svg)](https://rubygems.org/gems/amazon-chime-sdk-rails)
8
6
  [![Gem Downloads](https://img.shields.io/gem/dt/amazon-chime-sdk-rails.svg)](https://rubygems.org/gems/amazon-chime-sdk-rails)
9
7
  [![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)
10
8
 
11
9
  *amazon-chime-sdk-rails* brings server-side implementation of [Amazon Chime SDK](https://aws.amazon.com/chime/chime-sdk) to your [Ruby on Rails](https://rubyonrails.org) application. [Amazon Chime SDK](https://aws.amazon.com/chime/chime-sdk) provides client-side implementation to build real-time communications for your application, and *amazon-chime-sdk-rails* enables you to easily add server-side implementation to your Rails application.
12
10
 
11
+ ## Supported Versions
12
+
13
+ * Ruby 3.1+
14
+ * Rails 7.0+
15
+
16
+ Tested with Rails 7.0, 7.1, 7.2, 8.0 and 8.1.
17
+
13
18
  <kbd>![cloud-react-meeting-demo-joined-image](https://raw.githubusercontent.com/simukappu/amazon-chime-sdk-rails/images/cloud_react_meeting_demo_joined.png)</kbd>
14
19
 
15
20
  *amazon-chime-sdk-rails* supports both of [Rails API Application](https://guides.rubyonrails.org/api_app.html) and [Rails Application with Action View](https://guides.rubyonrails.org/action_view_overview.html). The gem provides following functions:
16
- * *Meeting Coordinator* - Wrapper client module of [AWS SDK for Ruby](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Chime/Client.html), which simulates [AWS SDK for JavaScript](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/Chime.html) to communicate with Amazon Chime SDK client implementation by JSON format.
21
+ * *Meeting Coordinator* - Wrapper client module of [AWS SDK for Ruby](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/Client.html), which simulates [AWS SDK for JavaScript](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/ChimeSDKMeetings.html) to communicate with Amazon Chime SDK client implementation by JSON format.
17
22
  * *Controller Templates* - Mixin module implementation for meetings and attendees controllers.
18
23
  * *Rails Generators*
19
24
  * *Controller Generator* - Generator to create customizable meetings and attendees controllers in your Rails application.
@@ -139,8 +144,7 @@ Push "Continue" and go to the private meeting room!
139
144
 
140
145
  ### Deploy application to your AWS environment
141
146
 
142
- At first, [install the latest version of AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html), [set up AWS credentials](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) and [](Installing the AWS SAM CLI) in your local environment.
143
- At first, [install the latest version of AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html), [set up AWS credentials](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) and [installing the AWS SAM CLI](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/install-sam-cli.html) in your local environment.
147
+ At first, [install the latest version of AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html), [set up AWS credentials](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) and [install the AWS SAM CLI](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/install-sam-cli.html) in your local environment.
144
148
 
145
149
  Deploy customized React Meeting Demo to your AWS environment:
146
150
 
@@ -16,14 +16,14 @@ Gem::Specification.new do |s|
16
16
  s.files = `git ls-files`.split("\n")
17
17
  s.test_files = `git ls-files -- spec/*`.split("\n")
18
18
  s.require_paths = ["lib"]
19
- s.required_ruby_version = '>= 2.2.2'
19
+ s.required_ruby_version = '>= 3.1.0'
20
20
 
21
- s.add_dependency 'railties', '>= 5.0.0'
21
+ s.add_dependency 'railties', '>= 7.0.0'
22
22
  s.add_dependency 'aws-sdk-chimesdkmeetings', '>= 1.0.0'
23
23
 
24
- s.add_development_dependency 'rspec-rails', '>= 4.0.1'
25
- s.add_development_dependency 'factory_bot_rails', '>= 6.1.0'
26
- s.add_development_dependency 'ammeter', '>= 1.1.4'
27
- s.add_development_dependency 'yard', '>= 0.9.25'
28
- s.add_development_dependency 'devise_token_auth', '>= 1.1.4'
24
+ s.add_development_dependency 'rspec-rails', '>= 6.0.0'
25
+ s.add_development_dependency 'factory_bot_rails', '>= 6.2.0'
26
+ s.add_development_dependency 'ammeter', '>= 1.1.5'
27
+ s.add_development_dependency 'yard', '>= 0.9.36'
28
+ s.add_development_dependency 'devise_token_auth', '>= 1.2.2'
29
29
  end
@@ -284,6 +284,8 @@ Now ready to take off!
284
284
 
285
285
  Created Rails API works like this:
286
286
 
287
+ Note: The API response examples below are simplified for readability. Actual responses may include additional fields such as `MeetingFeatures`, `MeetingArn`, `TenantIds`, `PrimaryMeetingId` and `Capabilities` depending on the Amazon Chime SDK version.
288
+
287
289
  ```bash
288
290
  # Sign up users
289
291
 
@@ -106,9 +106,8 @@ Add login header to your application. Create new `app/views/layouts/_header.html
106
106
  <%= csrf_meta_tags %>
107
107
  <%= csp_meta_tag %>
108
108
 
109
- <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
110
- <%= yield(:javascript_pack_tag) %>
111
- <%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %>
109
+ <%= stylesheet_link_tag 'application', media: 'all' %>
110
+ <%= javascript_include_tag 'application' %>
112
111
  </head>
113
112
 
114
113
  <body>
@@ -273,15 +272,6 @@ class MeetingsController < ApplicationController
273
272
  "User": User.find_by_id(user_id)
274
273
  }
275
274
  end
276
-
277
- # Uncomment
278
- def application_attendee_metadata(attendee)
279
- user_id = attendee[:Attendee][:ExternalUserId].split('-')[3]
280
- {
281
- "AttendeeType": "User",
282
- "User": User.find_by_id(user_id)
283
- }
284
- end
285
275
  end
286
276
  ```
287
277
 
@@ -5,7 +5,7 @@ gemspec path: '../'
5
5
  # Bundle Rails
6
6
  gem 'rails', '~> 7.0.0'
7
7
 
8
- gem 'sqlite3'
8
+ gem 'sqlite3', '~> 1.4'
9
9
  gem 'puma'
10
10
  gem 'sass-rails'
11
11
  gem 'turbolinks'
@@ -14,11 +14,8 @@ gem 'jbuilder'
14
14
  group :development do
15
15
  gem 'web-console'
16
16
  gem 'listen'
17
- gem 'spring'
18
- gem 'spring-watcher-listen'
19
17
  end
20
18
 
21
19
  group :test do
22
- # gem 'coveralls', require: false
23
20
  gem 'coveralls_reborn', require: false
24
- end
21
+ end
@@ -4,8 +4,6 @@ gemspec path: '../'
4
4
 
5
5
  # Bundle Rails
6
6
  gem 'rails', '~> 7.1.0'
7
- # https://github.com/lynndylanhurley/devise_token_auth/pull/1606
8
- gem 'devise_token_auth', git: 'https://github.com/lynndylanhurley/devise_token_auth.git'
9
7
 
10
8
  gem 'sqlite3'
11
9
  gem 'puma'
@@ -16,11 +14,8 @@ gem 'jbuilder'
16
14
  group :development do
17
15
  gem 'web-console'
18
16
  gem 'listen'
19
- gem 'spring'
20
- gem 'spring-watcher-listen'
21
17
  end
22
18
 
23
19
  group :test do
24
- # gem 'coveralls', require: false
25
20
  gem 'coveralls_reborn', require: false
26
- end
21
+ end
@@ -0,0 +1,21 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '../'
4
+
5
+ # Bundle Rails
6
+ gem 'rails', '~> 7.2.0'
7
+
8
+ gem 'sqlite3'
9
+ gem 'puma'
10
+ gem 'sass-rails'
11
+ gem 'turbolinks'
12
+ gem 'jbuilder'
13
+
14
+ group :development do
15
+ gem 'web-console'
16
+ gem 'listen'
17
+ end
18
+
19
+ group :test do
20
+ gem 'coveralls_reborn', require: false
21
+ end
@@ -0,0 +1,21 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '../'
4
+
5
+ # Bundle Rails
6
+ gem 'rails', '~> 8.0.0'
7
+ # https://github.com/lynndylanhurley/devise_token_auth/pull/1639
8
+ gem 'devise_token_auth', git: 'https://github.com/lynndylanhurley/devise_token_auth.git'
9
+
10
+ gem 'sqlite3'
11
+ gem 'puma'
12
+ gem 'sass-rails'
13
+ gem 'jbuilder'
14
+
15
+ group :development do
16
+ gem 'web-console'
17
+ end
18
+
19
+ group :test do
20
+ gem 'coveralls_reborn', require: false
21
+ end
@@ -0,0 +1,21 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '../'
4
+
5
+ # Bundle Rails
6
+ gem 'rails', '~> 8.1.0'
7
+ # https://github.com/lynndylanhurley/devise_token_auth/pull/1639
8
+ gem 'devise_token_auth', git: 'https://github.com/lynndylanhurley/devise_token_auth.git'
9
+
10
+ gem 'sqlite3'
11
+ gem 'puma'
12
+ gem 'sass-rails'
13
+ gem 'jbuilder'
14
+
15
+ group :development do
16
+ gem 'web-console'
17
+ end
18
+
19
+ group :test do
20
+ gem 'coveralls_reborn', require: false
21
+ end
@@ -1,4 +1,4 @@
1
1
  module ChimeSdk
2
2
  # Gem version of amazon-chime-sdk-rails
3
- VERSION = "2.0.0"
3
+ VERSION = "2.1.0"
4
4
  end
@@ -1,3 +1 @@
1
- //= require rails-ujs
2
- //= require turbolinks
3
- //= require_tree .
1
+ //= require_tree .
@@ -4,8 +4,8 @@
4
4
  <title>Rails Application for Amazon Chime SDK Meeting</title>
5
5
  <%= csrf_meta_tags %>
6
6
 
7
- <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
8
- <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
7
+ <%= stylesheet_link_tag 'application', media: 'all' %>
8
+ <%= javascript_include_tag 'application' %>
9
9
  </head>
10
10
 
11
11
  <body>
@@ -26,7 +26,11 @@ Rails.application.configure do
26
26
  config.cache_store = :null_store
27
27
 
28
28
  # Raise exceptions instead of rendering exception templates.
29
- config.action_dispatch.show_exceptions = false
29
+ if Rails::VERSION::MAJOR >= 8 || (Rails::VERSION::MAJOR == 7 && Rails::VERSION::MINOR >= 1)
30
+ config.action_dispatch.show_exceptions = :rescuable
31
+ else
32
+ config.action_dispatch.show_exceptions = false
33
+ end
30
34
 
31
35
  # Disable request forgery protection in test environment.
32
36
  config.action_controller.allow_forgery_protection = false
@@ -44,6 +48,9 @@ Rails.application.configure do
44
48
  # Print deprecation notices to the stderr.
45
49
  config.active_support.deprecation = :stderr
46
50
 
51
+ # Do not check if assets exist before linking to them.
52
+ config.assets.check_precompiled_asset = false if config.respond_to?(:assets) && config.assets.respond_to?(:check_precompiled_asset=)
53
+
47
54
  # Raises error for missing translations.
48
55
  # config.action_view.raise_on_missing_translations = true
49
56
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amazon-chime-sdk-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shota Yamazaki
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-02-27 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: railties
@@ -16,14 +15,14 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: 5.0.0
18
+ version: 7.0.0
20
19
  type: :runtime
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
23
  - - ">="
25
24
  - !ruby/object:Gem::Version
26
- version: 5.0.0
25
+ version: 7.0.0
27
26
  - !ruby/object:Gem::Dependency
28
27
  name: aws-sdk-chimesdkmeetings
29
28
  requirement: !ruby/object:Gem::Requirement
@@ -44,70 +43,70 @@ dependencies:
44
43
  requirements:
45
44
  - - ">="
46
45
  - !ruby/object:Gem::Version
47
- version: 4.0.1
46
+ version: 6.0.0
48
47
  type: :development
49
48
  prerelease: false
50
49
  version_requirements: !ruby/object:Gem::Requirement
51
50
  requirements:
52
51
  - - ">="
53
52
  - !ruby/object:Gem::Version
54
- version: 4.0.1
53
+ version: 6.0.0
55
54
  - !ruby/object:Gem::Dependency
56
55
  name: factory_bot_rails
57
56
  requirement: !ruby/object:Gem::Requirement
58
57
  requirements:
59
58
  - - ">="
60
59
  - !ruby/object:Gem::Version
61
- version: 6.1.0
60
+ version: 6.2.0
62
61
  type: :development
63
62
  prerelease: false
64
63
  version_requirements: !ruby/object:Gem::Requirement
65
64
  requirements:
66
65
  - - ">="
67
66
  - !ruby/object:Gem::Version
68
- version: 6.1.0
67
+ version: 6.2.0
69
68
  - !ruby/object:Gem::Dependency
70
69
  name: ammeter
71
70
  requirement: !ruby/object:Gem::Requirement
72
71
  requirements:
73
72
  - - ">="
74
73
  - !ruby/object:Gem::Version
75
- version: 1.1.4
74
+ version: 1.1.5
76
75
  type: :development
77
76
  prerelease: false
78
77
  version_requirements: !ruby/object:Gem::Requirement
79
78
  requirements:
80
79
  - - ">="
81
80
  - !ruby/object:Gem::Version
82
- version: 1.1.4
81
+ version: 1.1.5
83
82
  - !ruby/object:Gem::Dependency
84
83
  name: yard
85
84
  requirement: !ruby/object:Gem::Requirement
86
85
  requirements:
87
86
  - - ">="
88
87
  - !ruby/object:Gem::Version
89
- version: 0.9.25
88
+ version: 0.9.36
90
89
  type: :development
91
90
  prerelease: false
92
91
  version_requirements: !ruby/object:Gem::Requirement
93
92
  requirements:
94
93
  - - ">="
95
94
  - !ruby/object:Gem::Version
96
- version: 0.9.25
95
+ version: 0.9.36
97
96
  - !ruby/object:Gem::Dependency
98
97
  name: devise_token_auth
99
98
  requirement: !ruby/object:Gem::Requirement
100
99
  requirements:
101
100
  - - ">="
102
101
  - !ruby/object:Gem::Version
103
- version: 1.1.4
102
+ version: 1.2.2
104
103
  type: :development
105
104
  prerelease: false
106
105
  version_requirements: !ruby/object:Gem::Requirement
107
106
  requirements:
108
107
  - - ">="
109
108
  - !ruby/object:Gem::Version
110
- version: 1.1.4
109
+ version: 1.2.2
111
110
  description: amazon-chime-sdk-rails provides server-side API implementation for Amazon
112
111
  Chime SDK as wrapper functions of AWS SDK for Ruby, and basic controller implementation
113
112
  for Ruby on Rails application.
@@ -138,6 +137,9 @@ files:
138
137
  - gemfiles/Gemfile.rails-6.1
139
138
  - gemfiles/Gemfile.rails-7.0
140
139
  - gemfiles/Gemfile.rails-7.1
140
+ - gemfiles/Gemfile.rails-7.2
141
+ - gemfiles/Gemfile.rails-8.0
142
+ - gemfiles/Gemfile.rails-8.1
141
143
  - lib/amazon-chime-sdk-rails.rb
142
144
  - lib/chime_sdk/config.rb
143
145
  - lib/chime_sdk/controller/attendees.rb
@@ -251,7 +253,6 @@ homepage: https://github.com/simukappu/amazon-chime-sdk-rails
251
253
  licenses:
252
254
  - MIT
253
255
  metadata: {}
254
- post_install_message:
255
256
  rdoc_options: []
256
257
  require_paths:
257
258
  - lib
@@ -259,15 +260,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
259
260
  requirements:
260
261
  - - ">="
261
262
  - !ruby/object:Gem::Version
262
- version: 2.2.2
263
+ version: 3.1.0
263
264
  required_rubygems_version: !ruby/object:Gem::Requirement
264
265
  requirements:
265
266
  - - ">="
266
267
  - !ruby/object:Gem::Version
267
268
  version: '0'
268
269
  requirements: []
269
- rubygems_version: 3.4.6
270
- signing_key:
270
+ rubygems_version: 4.0.3
271
271
  specification_version: 4
272
272
  summary: Server-side implementation of Amazon Chime SDK for Ruby on Rails application
273
273
  test_files: