amazon-chime-sdk-rails 2.0.0 → 2.0.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/.github/workflows/build.yml +9 -6
- data/CHANGELOG.md +8 -0
- data/Dockerfile +1 -1
- data/gemfiles/Gemfile.rails-7.0 +1 -1
- data/gemfiles/Gemfile.rails-7.1 +0 -2
- data/gemfiles/Gemfile.rails-7.2 +24 -0
- data/gemfiles/Gemfile.rails-8.0 +26 -0
- data/lib/chime_sdk/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 982f4cee3f1622b75fb753bcabe86e43553cbff6d4c764ce5495ea08f33d785f
|
|
4
|
+
data.tar.gz: 4fac1f0d404bc0e4e076b3b84c3f6ca76a5fed8c87d7720373395d609cc06f2e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e14565b2fb066cb3ce8c70170676a23c48de88693542e2fd7c0521eda86939f7233a416aa8810b1624d3abb7410a4acce910ffb34983afc1c0db2fb8983c84e
|
|
7
|
+
data.tar.gz: 3642b130eb688d8b1966a8ead22a2e9c55ff40a44d1f9ded2c688f435c94777e2159bda00cbe900ec2012a0a88dab26556b7685b21d87ee061f386ec041031f3
|
data/.github/workflows/build.yml
CHANGED
|
@@ -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:
|
|
16
|
+
node-version: 23.6.0
|
|
17
17
|
|
|
18
18
|
jobs:
|
|
19
19
|
build:
|
|
@@ -22,17 +22,20 @@ 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
|
|
28
29
|
include:
|
|
29
30
|
# https://www.ruby-lang.org/en/downloads
|
|
30
|
-
- gemfile: gemfiles/Gemfile.rails-6.1
|
|
31
|
-
ruby-version: 3.3.0
|
|
32
31
|
- gemfile: gemfiles/Gemfile.rails-7.0
|
|
33
|
-
ruby-version: 3.
|
|
32
|
+
ruby-version: 3.1.6
|
|
34
33
|
- gemfile: gemfiles/Gemfile.rails-7.1
|
|
35
|
-
ruby-version: 3.
|
|
34
|
+
ruby-version: 3.2.6
|
|
35
|
+
- gemfile: gemfiles/Gemfile.rails-7.2
|
|
36
|
+
ruby-version: 3.3.6
|
|
37
|
+
- gemfile: gemfiles/Gemfile.rails-8.0
|
|
38
|
+
ruby-version: 3.3.6
|
|
36
39
|
- gemfile: Gemfile
|
|
37
40
|
ruby-version: head
|
|
38
41
|
allow_failures: 'true'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## 2.0.1 / 2025-01-14
|
|
2
|
+
[Full Changelog](http://github.com/simukappu/amazon-chime-sdk-rails/compare/v2.0.0...v2.0.1)
|
|
3
|
+
|
|
4
|
+
Enhancements:
|
|
5
|
+
|
|
6
|
+
* Remove unmaintained Rails 6.1 from test cases
|
|
7
|
+
* Update test case with Rails 7.2 and Rails 8.0
|
|
8
|
+
|
|
1
9
|
## 2.0.0 / 2024-02-28
|
|
2
10
|
[Full Changelog](http://github.com/simukappu/amazon-chime-sdk-rails/compare/v1.1.1...v2.0.0)
|
|
3
11
|
|
data/Dockerfile
CHANGED
data/gemfiles/Gemfile.rails-7.0
CHANGED
data/gemfiles/Gemfile.rails-7.1
CHANGED
|
@@ -0,0 +1,24 @@
|
|
|
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
|
+
gem 'spring'
|
|
18
|
+
gem 'spring-watcher-listen'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
group :test do
|
|
22
|
+
# gem 'coveralls', require: false
|
|
23
|
+
gem 'coveralls_reborn', require: false
|
|
24
|
+
end
|
|
@@ -0,0 +1,26 @@
|
|
|
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 'turbolinks'
|
|
14
|
+
gem 'jbuilder'
|
|
15
|
+
|
|
16
|
+
group :development do
|
|
17
|
+
gem 'web-console'
|
|
18
|
+
gem 'listen'
|
|
19
|
+
gem 'spring'
|
|
20
|
+
gem 'spring-watcher-listen'
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
group :test do
|
|
24
|
+
# gem 'coveralls', require: false
|
|
25
|
+
gem 'coveralls_reborn', require: false
|
|
26
|
+
end
|
data/lib/chime_sdk/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: amazon-chime-sdk-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shota Yamazaki
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-01-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|
|
@@ -138,6 +138,8 @@ files:
|
|
|
138
138
|
- gemfiles/Gemfile.rails-6.1
|
|
139
139
|
- gemfiles/Gemfile.rails-7.0
|
|
140
140
|
- gemfiles/Gemfile.rails-7.1
|
|
141
|
+
- gemfiles/Gemfile.rails-7.2
|
|
142
|
+
- gemfiles/Gemfile.rails-8.0
|
|
141
143
|
- lib/amazon-chime-sdk-rails.rb
|
|
142
144
|
- lib/chime_sdk/config.rb
|
|
143
145
|
- lib/chime_sdk/controller/attendees.rb
|
|
@@ -266,7 +268,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
266
268
|
- !ruby/object:Gem::Version
|
|
267
269
|
version: '0'
|
|
268
270
|
requirements: []
|
|
269
|
-
rubygems_version: 3.
|
|
271
|
+
rubygems_version: 3.5.22
|
|
270
272
|
signing_key:
|
|
271
273
|
specification_version: 4
|
|
272
274
|
summary: Server-side implementation of Amazon Chime SDK for Ruby on Rails application
|