Skip to content

Commit ca0874e

Browse files
authored
Fix "TypeError: Rake is not a class" error (#232)
Fixes #231
1 parent d9321e4 commit ca0874e

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 1.35.1 / 2025-06-11
2+
* Fixed:
3+
* `TypeError: Rake is not a class` error (#231)
4+
15
### 1.35.0 / 2024-12-19
26
* Fixed:
37
* Clean up for rubocop

lib/simp/beaker_helpers/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
module Simp; end
55

66
module Simp::BeakerHelpers
7-
VERSION = '1.35.0'
7+
VERSION = '1.35.1'
88
end

lib/simp/rake/beaker.rb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@
66
require 'beaker-rspec/rake_task'
77
require 'puppetlabs_spec_helper/tasks/fixtures'
88

9-
# Simp::Rake namespace
9+
# Simp namespace
1010
module Simp; end
11-
class Simp::Rake; end
11+
# Simp::Rake namespace
12+
module Simp::Rake; end
1213

1314
# Rake tasks for SIMP Beaker testing
1415
class Simp::Rake::Beaker < ::Rake::TaskLib

0 commit comments

Comments
 (0)