Skip to content

Commit 5194087

Browse files
authored
chore: support ruby 4 (#70)
1 parent b94eb1e commit 5194087

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.10
1+
4.0.1

Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ gem 'ostruct'
3535
# Until Fastlane suports Ruby 3.5 oficially and includes gems below directly.
3636
gem 'logger'
3737

38+
# CFPropertyList uses it.
39+
gem 'nkf'
40+
3841
gemspec
3942

4043
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')

fastlane-plugin-create_simulator_devices.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
1717
spec.require_paths = ['lib']
1818
spec.metadata['rubygems_mfa_required'] = 'true'
1919

20-
spec.required_ruby_version = Gem::Version.new(File.read(File.join(__dir__, '.ruby-version')).chomp).approximate_recommendation
20+
spec.required_ruby_version = '>= 3.3'
2121

2222
# Don't add a dependency to fastlane or fastlane_re
2323
# since this would cause a circular dependency

lib/fastlane/plugin/create_simulator_devices/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Fastlane
44
module CreateSimulatorDevices
5-
VERSION = '0.0.22'
5+
VERSION = '0.0.23'
66
end
77
end

0 commit comments

Comments
 (0)