Skip to content

Commit fcd7eb1

Browse files
committed
fix: add required Ruby version to Gemspec
and add Ruby version to Gemfile and update `.ruby-version` file
1 parent 568cdaf commit fcd7eb1

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.6.5
1+
3.4.5

Gemfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
source 'http://rubygems.org'
1+
source 'https://rubygems.org'
2+
3+
ruby file: '.ruby-version'
24

35
gemspec
46

Gemfile.lock

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PATH
66
xml-simple (~> 1.1)
77

88
GEM
9-
remote: http://rubygems.org/
9+
remote: https://rubygems.org/
1010
specs:
1111
base64 (0.3.0)
1212
diff-lcs (1.6.2)
@@ -38,5 +38,8 @@ DEPENDENCIES
3838
rake
3939
rspec
4040

41+
RUBY VERSION
42+
ruby 3.4.5p51
43+
4144
BUNDLED WITH
4245
2.6.9

bigbluebutton-api-ruby.gemspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Gem::Specification.new do |s|
1313
s.bindir = "bin"
1414
s.files = `git ls-files`.split("\n")
1515
s.require_paths = ["lib"]
16+
s.required_ruby_version = '>= 3.2.0'
1617

1718
s.add_runtime_dependency('xml-simple', '~> 1.1')
1819
s.add_runtime_dependency('base64', '>= 0.1.0')

0 commit comments

Comments
 (0)