Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,11 @@ jobs:
fail-fast: false
matrix:
cfg:
- {os: ubuntu-24.04, ruby: '3.2'}
- {os: ubuntu-24.04, ruby: '3.3'}
- {os: ubuntu-24.04, ruby: '3.4'}
- {os: ubuntu-24.04, ruby: '4.0'}
- {os: ubuntu-24.04, ruby: 'jruby-9.4.8.0'}
- {os: ubuntu-24.04, ruby: 'jruby-9.4.14.0'}
- {os: windows-2025, ruby: '3.2'}
- {os: ubuntu-24.04, ruby: 'jruby-10.0.5.0'}
- {os: ubuntu-24.04, ruby: 'jruby-10.1.0.0'}
- {os: windows-2025, ruby: '3.3'}
- {os: windows-2025, ruby: '3.4'}
- {os: windows-2025, ruby: '4.0'}
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins:

# without excluding the vendor dirs below, rubocop will load all rubocop config files from installed gems ¯\_(ツ)_/¯
AllCops:
TargetRubyVersion: 3.1
TargetRubyVersion: 3.3
Include:
- 'lib/**/*.rb'
- 'ext/**/*.rb'
Expand Down
1 change: 0 additions & 1 deletion lib/puppet/graph/simple_graph.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

require_relative '../../puppet/external/dot'
require_relative '../../puppet/relationship'
require 'set'

# A hopefully-faster graph class to replace the use of GRATR.
class Puppet::Graph::SimpleGraph
Expand Down
1 change: 0 additions & 1 deletion lib/puppet/module_tool/metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
require_relative '../../puppet/network/format_support'
require 'uri'
require_relative '../../puppet/util/json'
require 'set'

module Puppet::ModuleTool
# This class provides a data structure representing a module's metadata.
Expand Down
1 change: 0 additions & 1 deletion lib/puppet/provider/package/pacman.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# frozen_string_literal: true

require_relative '../../../puppet/provider/package'
require 'set'
require 'uri'

Puppet::Type.type(:package).provide :pacman, :parent => Puppet::Provider::Package do
Expand Down
1 change: 0 additions & 1 deletion lib/puppet/settings/base_setting.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# frozen_string_literal: true

require 'set'
require_relative '../../puppet/settings/errors'

# The base setting type
Expand Down
1 change: 0 additions & 1 deletion lib/puppet/transaction.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
require_relative '../puppet/util/skip_tags'
require_relative '../puppet/application'
require 'digest/sha1'
require 'set'

# the class that actually walks our resource/property tree, collects the changes,
# and performs them
Expand Down
1 change: 0 additions & 1 deletion lib/puppet/util/tag_set.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# frozen_string_literal: true

require 'set'
require_relative '../../puppet/network/format_support'

class Puppet::Util::TagSet < Set
Expand Down
2 changes: 1 addition & 1 deletion openvox.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
spec.licenses = ['Apache-2.0']

spec.required_rubygems_version = Gem::Requirement.new("> 1.3.1")
spec.required_ruby_version = Gem::Requirement.new(">= 3.1.0")
spec.required_ruby_version = Gem::Requirement.new(">= 3.3.0")
spec.authors = ["OpenVox Project"]
spec.date = "2012-08-17"
spec.description = <<~EOF
Expand Down
Loading