amazon-chime-sdk-rails 1.1.0 → 1.1.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: 96a67da511158cceed2043c5c7c97c9cf9f947460552f338611bf19956a8fd7f
4
- data.tar.gz: 906e6e8236517f3d37a005bf2bc58da87fdc83949f128082bab7d68ea2257ce6
3
+ metadata.gz: d59c736cb0f6bf4499881e47e5155d8588a1ec8e684c15c20f68a969f0ba2f7f
4
+ data.tar.gz: d575c8ebe17e7cadd5ac7a6c8f1e77edf33355f5f04a273e8cc57b0f3cfd455e
5
5
  SHA512:
6
- metadata.gz: 52b9275de8fdb8505cc6ba49efa4e4ee2ff68d4d2747e0ac0c3cb4936fe63e9967edc9241d30654e22443ff586a6b87cd417e6b93976127bff93c55ee2253101
7
- data.tar.gz: 37326f62812ba4ff684b13a2eb6ae9e997dfb6f0c438ac4a2e68d41d54cf8ac3f2173baa1a4cbaf8c49b17d3b448d6e80e86aa74431b45df7b045d40a2957ba5
6
+ metadata.gz: 61124852770d68817004214de3da7ca218e11935b7e33483f39e050bbb29775e9fdb656b3d7e20cd73d7f8785f7bf30cf9e07ffa066cf63addafffbed0396c87
7
+ data.tar.gz: cf526cf4c65d014a50c2d385f85d082f138ab63c653d756dce9557b7c181723c2fc9495b269b0a2cbe067e107f7542de149b299ba5f344eefb7bcb1b10799702
@@ -21,26 +21,14 @@ jobs:
21
21
  fail-fast: false
22
22
  matrix:
23
23
  gemfile:
24
- - gemfiles/Gemfile.rails-5.0
25
- - gemfiles/Gemfile.rails-5.1
26
- - gemfiles/Gemfile.rails-5.2
27
- - gemfiles/Gemfile.rails-6.0
28
24
  - gemfiles/Gemfile.rails-6.1
29
25
  - gemfiles/Gemfile.rails-7.0
30
26
  include:
31
27
  # https://www.ruby-lang.org/en/downloads
32
- - gemfile: gemfiles/Gemfile.rails-5.0
33
- ruby-version: 2.7.6
34
- - gemfile: gemfiles/Gemfile.rails-5.1
35
- ruby-version: 2.7.6
36
- - gemfile: gemfiles/Gemfile.rails-5.2
37
- ruby-version: 2.7.6
38
- - gemfile: gemfiles/Gemfile.rails-6.0
39
- ruby-version: 3.0.4
40
28
  - gemfile: gemfiles/Gemfile.rails-6.1
41
- ruby-version: 3.0.4
29
+ ruby-version: 3.2.2
42
30
  - gemfile: gemfiles/Gemfile.rails-7.0
43
- ruby-version: 3.0.4
31
+ ruby-version: 3.2.2
44
32
  - gemfile: Gemfile
45
33
  ruby-version: head
46
34
  allow_failures: 'true'
data/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## 1.1.1 / 2023-07-17
2
+ [Full Changelog](http://github.com/simukappu/amazon-chime-sdk-rails/compare/v1.1.0...v1.1.1)
3
+
4
+ Enhancements:
5
+
6
+ * Remove unmaintained Rails versions from test cases
7
+ * Update test case with Rails 7.0
8
+
9
+ Bug Fixes:
10
+
11
+ * Remove unnecessary log for debug
12
+
1
13
  ## 1.1.0 / 2022-05-04
2
14
  [Full Changelog](http://github.com/simukappu/amazon-chime-sdk-rails/compare/v1.0.0...v1.1.0)
3
15
 
data/Gemfile CHANGED
@@ -3,7 +3,7 @@ source 'https://rubygems.org'
3
3
  gemspec
4
4
 
5
5
  # Bundle Rails
6
- gem 'rails', '~> 6.1.0'
6
+ gem 'rails', '~> 7.0.0'
7
7
 
8
8
  gem 'sqlite3'
9
9
  gem 'puma'
data/config/spring.rb ADDED
@@ -0,0 +1,2 @@
1
+ Spring.application_root = './spec/rails_app'
2
+ Spring.watch 'lib'
@@ -4,11 +4,6 @@ gemspec path: '../'
4
4
 
5
5
  # Bundle Rails
6
6
  gem 'rails', '~> 7.0.0'
7
- # https://github.com/lynndylanhurley/devise_token_auth/pull/1517
8
- gem 'devise_token_auth', git: 'https://github.com/lynndylanhurley/devise_token_auth.git'
9
- # Tentative measure for 'check_for_activated_spec!' with default gem in Ruby 3.0.3
10
- gem 'digest', '3.0.0'
11
- gem 'io-wait', '0.2.0'
12
7
 
13
8
  gem 'sqlite3'
14
9
  gem 'puma'
@@ -37,7 +37,6 @@ module ChimeSdk
37
37
  def show
38
38
  get_meeting
39
39
  if params[:create_attendee_from_meeting].to_s.to_boolean(false) || ChimeSdk.config.create_attendee_from_meeting && params[:create_attendee_from_meeting].to_s.to_boolean(true)
40
- puts "create_attendee_from_meeting"
41
40
  create_attendee_from_meeting
42
41
  end
43
42
  respond_to do |format|
@@ -1,4 +1,4 @@
1
1
  module ChimeSdk
2
2
  # Gem version of amazon-chime-sdk-rails
3
- VERSION = "1.1.0"
3
+ VERSION = "1.1.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: 1.1.0
4
+ version: 1.1.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: 2022-05-04 00:00:00.000000000 Z
11
+ date: 2023-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -128,6 +128,7 @@ files:
128
128
  - README.md
129
129
  - Rakefile
130
130
  - amazon-chime-sdk-rails.gemspec
131
+ - config/spring.rb
131
132
  - docs/Develop_Rails_API_Application.md
132
133
  - docs/Develop_Rails_View_Application.md
133
134
  - gemfiles/Gemfile.rails-5.0
@@ -264,7 +265,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
264
265
  - !ruby/object:Gem::Version
265
266
  version: '0'
266
267
  requirements: []
267
- rubygems_version: 3.2.33
268
+ rubygems_version: 3.4.6
268
269
  signing_key:
269
270
  specification_version: 4
270
271
  summary: Server-side implementation of Amazon Chime SDK for Ruby on Rails application