bigbluebutton-api-ruby 1.9.0 → 1.9.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: d0441812c16477d28d431e085349d9b41dbb2487fa2714658d0f4257bfbfc696
4
- data.tar.gz: d6ef204678952d1890225b2e66dd17e7aafb2a20733ffd2733b6a99c3a9383f1
3
+ metadata.gz: 895a139be87984c857d275c4d7df9268b06684da8afa4e645cbbdb89d52506f3
4
+ data.tar.gz: bc4c39bc4f9b9dd2e9985e2f70063df489ef0e43b46a43399550f0aa5a75cecc
5
5
  SHA512:
6
- metadata.gz: 8a62b74b9922d8eae4ad5f28be54e5975c0bbc7e267a7da457f3c307ca3199a3bf82f6acc2361e419df9c7a3277882e66cf10ba9cd52f60f23f6a3a8a8e88faa
7
- data.tar.gz: 8630d39007e82a5d3e0fd0ea623e51138a62726e1778170d03db1150220196906b7665d9caab3e4cf9b85eeebf11445ae7302670048ee8eee4fc7f7e2773235b
6
+ metadata.gz: 30fc3a5fb527ffdfd58c9690075665e8a54b9385a184214b6d50da43ed3b5963b203b147426b02bcbe7644dfca65ca73ad30d831d7c2c8ad766d7aaa930c1fa6
7
+ data.tar.gz: 940781ee78ee9c962be935eff1c8d66b971c5658467dd92c827291b581a38a17badcfe4381a8e58bd1157176191a54f59d895fe197f1e6ca5399d9635d354067
@@ -0,0 +1,22 @@
1
+ name: Publish gem on tag push
2
+ on:
3
+ push:
4
+ tags:
5
+ - 'v*'
6
+ - '!v**-mconf*'
7
+ # Tags that will trigger: v1.9.0; v1.9.0-beta1
8
+ # Tags excluded (with the '!'): v1.9.0-mconf; v1.9.0-mconf-beta1
9
+
10
+ jobs:
11
+ publish-gem:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v2
16
+ - name: Publish
17
+ uses: dawidd6/action-publish-gem@v1.2.0
18
+ with:
19
+ # Optional, will publish to RubyGems if specified
20
+ api_key: ${{secrets.RUBYGEMS_API_KEY}}
21
+ # Optional, will publish to GitHub Packages if specified
22
+ github_token: ${{secrets.GITHUB_TOKEN}}
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## [1.9.1] - 2023-03-31
4
+ * [#60] Prevent problems with double slashes on API calls [thanks to [@farhatahmad](https://github.com/farhatahmad)]
5
+
6
+ [#60]: https://github.com/mconf/bigbluebutton-api-ruby/pull/60
7
+ [1.9.1]: https://github.com/mconf/bigbluebutton-api-ruby/compare/v1.9.0...v1.9.1
8
+
3
9
  ## [1.9.0] - 2022-05-03
4
10
  * [#56] Add support for checksum using SHA256
5
11
 
data/Gemfile.lock CHANGED
@@ -7,7 +7,7 @@ GIT
7
7
  PATH
8
8
  remote: .
9
9
  specs:
10
- bigbluebutton-api-ruby (1.9.0)
10
+ bigbluebutton-api-ruby (1.9.1)
11
11
  childprocess (>= 1.0.1)
12
12
  ffi (>= 1.9.24)
13
13
  json (>= 1.8.6)
@@ -2,7 +2,7 @@ $:.push File.expand_path("../lib", __FILE__)
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "bigbluebutton-api-ruby"
5
- s.version = "1.9.0"
5
+ s.version = "1.9.1"
6
6
  s.licenses = ["MIT"]
7
7
  s.extra_rdoc_files = ["README.md", "LICENSE", "LICENSE_003", "CHANGELOG.md"]
8
8
  s.summary = "BigBlueButton integration for ruby"
@@ -73,7 +73,7 @@ module BigBlueButton
73
73
  # sha256:: Flag to use sha256 when hashing url contents for checksum
74
74
  def initialize(url, secret, version=nil, logger=nil, sha256=false)
75
75
  @supported_versions = ['0.8', '0.81', '0.9', '1.0']
76
- @url = url
76
+ @url = url.chomp('/')
77
77
  @secret = secret
78
78
  @timeout = 10 # default timeout for api requests
79
79
  @request_headers = {} # http headers sent in all requests
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bigbluebutton-api-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mconf
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-05-03 00:00:00.000000000 Z
12
+ date: 2023-03-31 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: childprocess
@@ -122,6 +122,7 @@ extra_rdoc_files:
122
122
  - LICENSE_003
123
123
  - CHANGELOG.md
124
124
  files:
125
+ - ".github/workflows/publish-gem-on-tag-push.yml"
125
126
  - ".gitignore"
126
127
  - ".rspec"
127
128
  - ".ruby-version"
@@ -199,7 +200,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
199
200
  - !ruby/object:Gem::Version
200
201
  version: '0'
201
202
  requirements: []
202
- rubygems_version: 3.0.3
203
+ rubygems_version: 3.3.5
203
204
  signing_key:
204
205
  specification_version: 4
205
206
  summary: BigBlueButton integration for ruby