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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7043551e2f5cda62424e44f900a17eacf61dd23c5031f4d84dbb130eac22e2cf
4
- data.tar.gz: 7b13195e5ee0dce1365024f164b4ad39ae481ae09b28833dd6058729c17f6505
3
+ metadata.gz: 982f4cee3f1622b75fb753bcabe86e43553cbff6d4c764ce5495ea08f33d785f
4
+ data.tar.gz: 4fac1f0d404bc0e4e076b3b84c3f6ca76a5fed8c87d7720373395d609cc06f2e
5
5
  SHA512:
6
- metadata.gz: dd6dc1a0ae0c9794f0a2ac8fc2d0d24c05848229cbd8d5155a2cc4e1ca1e14a0fa62fa0f874b5d8d8d07dba49914c35af771c58fc7529fd8987d8e5080f7ba79
7
- data.tar.gz: 51938a494e814da4641795fe2f698014c79d15a9c1d66568025f13af15403f770896150bf89083a6ce063234edb850bf69a406255118337a6c014178d458b8fa
6
+ metadata.gz: 2e14565b2fb066cb3ce8c70170676a23c48de88693542e2fd7c0521eda86939f7233a416aa8810b1624d3abb7410a4acce910ffb34983afc1c0db2fb8983c84e
7
+ data.tar.gz: 3642b130eb688d8b1966a8ead22a2e9c55ff40a44d1f9ded2c688f435c94777e2159bda00cbe900ec2012a0a88dab26556b7685b21d87ee061f386ec041031f3
@@ -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: 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.3.0
32
+ ruby-version: 3.1.6
34
33
  - gemfile: gemfiles/Gemfile.rails-7.1
35
- ruby-version: 3.3.0
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
@@ -1,4 +1,4 @@
1
- FROM ruby:3.3.0
1
+ FROM ruby:3.4.1
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}
@@ -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'
@@ -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'
@@ -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
@@ -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.0.1"
4
4
  end
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.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: 2024-02-27 00:00:00.000000000 Z
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.4.6
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