beaker-rspec 8.1.0 → 8.3.0

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: baa473925f13a9aaf3a8798494f6d1f4265914412077017e4f5af95f134c68eb
4
- data.tar.gz: f268cc99394abe1874426b4ea2ff6140384c3a3aa5dcd2a1719cbdbf148f7f44
3
+ metadata.gz: 8d0a7f04c69a6173d2ce221249d63d8cc7f89921c60b150625c2a07d2d959bd8
4
+ data.tar.gz: 0634aaf5431a951b2c9a8b2114471aa8f997392edfc5b3895fa0d46a6d5a00fd
5
5
  SHA512:
6
- metadata.gz: '004909731c8373146773879cf7e57412547ffa04a2b6a2722c8d139f02cbfb45fbfda4a7dfa9b63eb263a8d006d2d328154c62fc0a8595e6a2501a44cdb79ccd'
7
- data.tar.gz: 45acad2d91b9185f109693ea538843ec27f475b732f84177a301f2270012ee2e91bab477ce6fcd905a5977a3286100502f978927d21b6242e5e265b9cadbb36f
6
+ metadata.gz: 1767b40fff985cc37a7c13ad032bf908d76e9a3829ddb29f01cd61c6048b7151bcfa573998434d2f40bf73ae11f8cec67fb9153546591cfb75c843b36651d089
7
+ data.tar.gz: 17732231fb3ed5fb615b74c45b83eaa7e7af4ce85bb8826612d06f5e215d22ce30e6062ec1a9c8d30cdb8f02bb31c299b95f30bb9a9ae762b570416ad9f21bfa
@@ -7,14 +7,14 @@ on:
7
7
 
8
8
  jobs:
9
9
  release:
10
- runs-on: ubuntu-latest
10
+ runs-on: ubuntu-24.04
11
11
  if: github.repository_owner == 'voxpupuli'
12
12
  steps:
13
- - uses: actions/checkout@v3
14
- - name: Install Ruby 3.2
13
+ - uses: actions/checkout@v4
14
+ - name: Install Ruby 3.4
15
15
  uses: ruby/setup-ruby@v1
16
16
  with:
17
- ruby-version: '3.2'
17
+ ruby-version: '3.4'
18
18
  bundler: 'none'
19
19
  - name: Build gem
20
20
  run: gem build --strict --verbose *.gemspec
@@ -1,3 +1,4 @@
1
+ ---
1
2
  name: Test
2
3
 
3
4
  on:
@@ -11,30 +12,32 @@ env:
11
12
  BEAKER_HYPERVISOR: docker
12
13
 
13
14
  jobs:
14
- rubocop:
15
- runs-on: ubuntu-latest
15
+ rubocop_and_matrix:
16
+ runs-on: ubuntu-24.04
17
+ outputs:
18
+ ruby: ${{ steps.ruby.outputs.versions }}
16
19
  steps:
17
- - uses: actions/checkout@v3
20
+ - uses: actions/checkout@v4
18
21
  - name: Install Ruby ${{ matrix.ruby }}
19
22
  uses: ruby/setup-ruby@v1
20
23
  with:
21
- ruby-version: "3.2"
24
+ ruby-version: "3.4"
22
25
  bundler-cache: true
23
26
  - name: Run Rubocop
24
27
  run: bundle exec rake rubocop
28
+ - id: ruby
29
+ uses: voxpupuli/ruby-version@v1
30
+
25
31
  build:
26
- runs-on: ubuntu-latest
32
+ runs-on: ubuntu-24.04
33
+ needs: rubocop_and_matrix
27
34
  strategy:
28
35
  fail-fast: false
29
36
  matrix:
30
- ruby:
31
- - "2.7"
32
- - "3.0"
33
- - "3.1"
34
- - "3.2"
37
+ ruby: ${{ fromJSON(needs.rubocop_and_matrix.outputs.ruby) }}
35
38
  name: Ruby ${{ matrix.ruby }}
36
39
  steps:
37
- - uses: actions/checkout@v3
40
+ - uses: actions/checkout@v4
38
41
  - name: Install Ruby ${{ matrix.ruby }}
39
42
  uses: ruby/setup-ruby@v1
40
43
  with:
@@ -47,7 +50,7 @@ jobs:
47
50
 
48
51
  tests:
49
52
  needs:
50
- - rubocop
53
+ - rubocop_and_matrix
51
54
  - build
52
55
  runs-on: ubuntu-latest
53
56
  name: Test suite
data/.rubocop_todo.yml CHANGED
@@ -1,16 +1,11 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2023-03-27 16:58:25 UTC using RuboCop version 1.48.1.
3
+ # on 2025-05-27 12:15:34 UTC using RuboCop version 1.75.7.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
7
7
  # versions of RuboCop, may require this file to be generated again.
8
8
 
9
- # Offense count: 3
10
- Lint/UselessAssignment:
11
- Exclude:
12
- - 'lib/beaker-rspec/helpers/serverspec.rb'
13
-
14
9
  # Offense count: 1
15
10
  Naming/AccessorMethodName:
16
11
  Exclude:
@@ -22,6 +17,7 @@ Naming/AccessorMethodName:
22
17
  # AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
23
18
  Naming/FileName:
24
19
  Exclude:
20
+ - 'Rakefile.rb'
25
21
  - 'lib/beaker-rspec.rb'
26
22
 
27
23
  # Offense count: 1
@@ -31,14 +27,6 @@ Naming/MethodParameterName:
31
27
  Exclude:
32
28
  - 'lib/beaker-rspec/beaker_shim.rb'
33
29
 
34
- # Offense count: 1
35
- # This cop supports safe autocorrection (--autocorrect).
36
- # Configuration parameters: EnforcedStyle.
37
- # SupportedStyles: be_a, be_kind_of
38
- RSpec/ClassCheck:
39
- Exclude:
40
- - 'spec/acceptance/example_spec.rb'
41
-
42
30
  # Offense count: 3
43
31
  # Configuration parameters: Prefixes, AllowedPatterns.
44
32
  # Prefixes: when, with, without
@@ -72,10 +60,12 @@ Style/AndOr:
72
60
  Exclude:
73
61
  - 'lib/beaker-rspec/helpers/serverspec.rb'
74
62
 
75
- # Offense count: 7
63
+ # Offense count: 6
76
64
  # This cop supports unsafe autocorrection (--autocorrect-all).
77
- # Configuration parameters: EnforcedStyle.
65
+ # Configuration parameters: EnforcedStyle, EnforcedStyleForClasses, EnforcedStyleForModules.
78
66
  # SupportedStyles: nested, compact
67
+ # SupportedStylesForClasses: ~, nested, compact
68
+ # SupportedStylesForModules: ~, nested, compact
79
69
  Style/ClassAndModuleChildren:
80
70
  Exclude:
81
71
  - 'lib/beaker-rspec/helpers/serverspec.rb'
@@ -85,7 +75,7 @@ Style/ClassVars:
85
75
  Exclude:
86
76
  - 'lib/beaker-rspec/helpers/serverspec.rb'
87
77
 
88
- # Offense count: 10
78
+ # Offense count: 9
89
79
  # Configuration parameters: AllowedConstants.
90
80
  Style/Documentation:
91
81
  Exclude:
@@ -94,23 +84,6 @@ Style/Documentation:
94
84
  - 'lib/beaker-rspec.rb'
95
85
  - 'lib/beaker-rspec/helpers/serverspec.rb'
96
86
 
97
- # Offense count: 10
98
- # This cop supports unsafe autocorrection (--autocorrect-all).
99
- # Configuration parameters: EnforcedStyle.
100
- # SupportedStyles: always, always_true, never
101
- Style/FrozenStringLiteralComment:
102
- Exclude:
103
- - 'Gemfile'
104
- - 'beaker-rspec.gemspec'
105
- - 'lib/beaker-rspec.rb'
106
- - 'lib/beaker-rspec/beaker_shim.rb'
107
- - 'lib/beaker-rspec/helpers/serverspec.rb'
108
- - 'lib/beaker-rspec/rake_task.rb'
109
- - 'lib/beaker-rspec/spec_helper.rb'
110
- - 'lib/beaker-rspec/version.rb'
111
- - 'spec/acceptance/example_spec.rb'
112
- - 'spec/spec_helper.rb'
113
-
114
87
  # Offense count: 1
115
88
  Style/MissingRespondToMissing:
116
89
  Exclude:
data/CHANGELOG.md CHANGED
@@ -2,6 +2,39 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [8.3.0](https://github.com/voxpupuli/beaker-rspec/tree/8.3.0) (2025-05-27)
6
+
7
+ [Full Changelog](https://github.com/voxpupuli/beaker-rspec/compare/8.2.0...8.3.0)
8
+
9
+ **Implemented enhancements:**
10
+
11
+ - Use the backend variable inside the loop [\#145](https://github.com/voxpupuli/beaker-rspec/pull/145) ([ekohl](https://github.com/ekohl))
12
+ - Remove redundant Specinfra::Runner.run definition [\#144](https://github.com/voxpupuli/beaker-rspec/pull/144) ([ekohl](https://github.com/ekohl))
13
+ - Remove unused get\_windows\_cmd method [\#143](https://github.com/voxpupuli/beaker-rspec/pull/143) ([ekohl](https://github.com/ekohl))
14
+ - Add Ruby 3.4 to CI / generate matrix automatically [\#142](https://github.com/voxpupuli/beaker-rspec/pull/142) ([bastelfreak](https://github.com/bastelfreak))
15
+ - Vagrant: Add options to configure memsize/cpu cores [\#139](https://github.com/voxpupuli/beaker-rspec/pull/139) ([bastelfreak](https://github.com/bastelfreak))
16
+
17
+ **Merged pull requests:**
18
+
19
+ - fakefs: Allow 3.x [\#146](https://github.com/voxpupuli/beaker-rspec/pull/146) ([bastelfreak](https://github.com/bastelfreak))
20
+
21
+ ## [8.2.0](https://github.com/voxpupuli/beaker-rspec/tree/8.2.0) (2024-05-28)
22
+
23
+ [Full Changelog](https://github.com/voxpupuli/beaker-rspec/compare/8.1.0...8.2.0)
24
+
25
+ **Implemented enhancements:**
26
+
27
+ - beaker: Allow 6.x [\#137](https://github.com/voxpupuli/beaker-rspec/pull/137) ([bastelfreak](https://github.com/bastelfreak))
28
+ - Add Ruby 3.3 to CI [\#135](https://github.com/voxpupuli/beaker-rspec/pull/135) ([bastelfreak](https://github.com/bastelfreak))
29
+
30
+ **Fixed bugs:**
31
+
32
+ - Correct BEAKER\_debug text that it respects no [\#134](https://github.com/voxpupuli/beaker-rspec/pull/134) ([ekohl](https://github.com/ekohl))
33
+
34
+ **Merged pull requests:**
35
+
36
+ - voxpupuli-rubocop: Require 2.7.0 [\#136](https://github.com/voxpupuli/beaker-rspec/pull/136) ([bastelfreak](https://github.com/bastelfreak))
37
+
5
38
  ## [8.1.0](https://github.com/voxpupuli/beaker-rspec/tree/8.1.0) (2023-07-11)
6
39
 
7
40
  [Full Changelog](https://github.com/voxpupuli/beaker-rspec/compare/8.0.1...8.1.0)
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source ENV['GEM_SOURCE'] || 'https://rubygems.org'
2
4
 
3
5
  def location_for(place, fake_version = nil)
data/README.md CHANGED
@@ -48,7 +48,7 @@ cd .vagrant/beaker_vagrant_files/default.yml ; vagrant destroy --force
48
48
  ### Supported ENV variables
49
49
 
50
50
  * `BEAKER_color`: set to `no` to disable color output
51
- * `BEAKER_debug`: set to any value to enable beaker debug logging
51
+ * `BEAKER_debug`: set to any value other than `no` to enable beaker debug logging
52
52
  * `BEAKER_destroy`: set to `no` to keep the VMs after the test run. Set to `onpass` to keep the VMs around only after a test failure.
53
53
  * `BEAKER_keyfile`: specify alternate SSH key to access the test VMs
54
54
  * `BEAKER_options_file`: set to the file path of the options file to be used as the default options for beaker. Equivalent to the `--options-file` parameter.
data/Rakefile CHANGED
@@ -12,7 +12,7 @@ rescue LoadError
12
12
  else
13
13
  GitHubChangelogGenerator::RakeTask.new :changelog do |config|
14
14
  config.header = "# Changelog\n\nAll notable changes to this project will be documented in this file."
15
- config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog]
15
+ config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog github_actions]
16
16
  config.user = 'voxpupuli'
17
17
  config.project = 'beaker-rspec'
18
18
  config.future_release = Gem::Specification.load("#{config.project}.gemspec").version
data/beaker-rspec.gemspec CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  $:.push File.expand_path('lib', __dir__)
2
4
  require 'beaker-rspec/version'
3
5
 
@@ -18,14 +20,14 @@ Gem::Specification.new do |s|
18
20
  s.require_paths = ['lib']
19
21
 
20
22
  # Testing dependencies
21
- s.add_development_dependency 'fakefs', '>= 0.6', '< 3'
23
+ s.add_development_dependency 'fakefs', '>= 0.6', '< 4'
22
24
  s.add_development_dependency 'minitest', '~> 5.4'
23
25
  s.add_development_dependency 'rake', '~> 13.0'
24
- s.add_development_dependency 'voxpupuli-rubocop', '~> 1.3'
26
+ s.add_development_dependency 'voxpupuli-rubocop', '~> 3.1.0'
25
27
 
26
28
  # Run time dependencies
27
- s.add_runtime_dependency 'beaker', '>= 4.0', '< 6'
28
- s.add_runtime_dependency 'rspec', '~> 3.0'
29
- s.add_runtime_dependency 'serverspec', '~> 2'
30
- s.add_runtime_dependency 'specinfra', '~> 2'
29
+ s.add_dependency 'beaker', '>= 4.0', '< 7'
30
+ s.add_dependency 'rspec', '~> 3.0'
31
+ s.add_dependency 'serverspec', '~> 2'
32
+ s.add_dependency 'specinfra', '~> 2'
31
33
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'beaker'
2
4
 
3
5
  module BeakerRSpec
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'serverspec'
2
4
  require 'specinfra'
3
5
  require 'specinfra/backend/powershell/script_helper'
@@ -79,38 +81,13 @@ module Specinfra::Helper::Os
79
81
  Specinfra::Helper::DetectOs.subclasses.each do |c|
80
82
  res = c.detect
81
83
  if res
82
- res[:arch] ||= Specinfra.backend.run_command('uname -m').stdout.strip
84
+ res[:arch] ||= backend.run_command('uname -m').stdout.strip
83
85
  return res
84
86
  end
85
87
  end
86
88
  end
87
89
  end
88
90
 
89
- class Specinfra::CommandFactory
90
- class << self
91
- # Force creation of a windows command
92
- def get_windows_cmd(meth, *args)
93
- action, resource_type, subaction = breakdown(meth)
94
- method = action
95
- method += "_#{subaction}" if subaction
96
-
97
- common_class = Specinfra::Command
98
- base_class = common_class.const_get(:Base)
99
- os_class = common_class.const_get(:Windows)
100
- version_class = os_class.const_get(:Base)
101
- command_class = version_class.const_get(resource_type.to_camel_case)
102
-
103
- command_class = command_class.create
104
- unless command_class.respond_to?(method)
105
- raise NotImplementedError,
106
- "#{method} is not implemented in #{command_class}"
107
- end
108
-
109
- command_class.send(method, *args)
110
- end
111
- end
112
- end
113
-
114
91
  module Specinfra
115
92
  # Rewrite the runner to use the appropriate backend based upon platform information
116
93
  class Runner
@@ -132,18 +109,6 @@ module Specinfra
132
109
  run(meth, *args)
133
110
  end
134
111
  end
135
-
136
- def self.run(meth, *args)
137
- backend = Specinfra.backend
138
- cmd = Specinfra.command.get(meth, *args)
139
- backend = Specinfra.backend
140
- ret = backend.run_command(cmd)
141
- if meth.to_s.start_with?('check')
142
- ret.success?
143
- else
144
- ret
145
- end
146
- end
147
112
  end
148
113
  end
149
114
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'rspec/core/rake_task'
2
4
 
3
5
  RSpec::Core::RakeTask.new(:beaker) do |c|
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'beaker-rspec/beaker_shim'
2
4
  require 'beaker-rspec/helpers/serverspec'
3
5
  include BeakerRSpec::BeakerShim
@@ -32,6 +34,8 @@ RSpec.configure do |c|
32
34
  debug: ENV['BEAKER_DEBUG'] || ENV['BEAKER_debug'] || ENV.fetch('RS_DEBUG', nil),
33
35
  destroy: ENV['BEAKER_DESTROY'] || ENV['BEAKER_destroy'] || ENV.fetch('RS_DESTROY', nil),
34
36
  optionsfile: ENV['BEAKER_OPTIONS_FILE'] || ENV['BEAKER_options_file'] || ENV.fetch('RS_OPTIONS_FILE', nil),
37
+ vagrant_memsize: ENV.fetch('BEAKER_VAGRANT_MEMSIZE', nil),
38
+ vagrant_cpus: ENV.fetch('BEAKER_VAGRANT_CPUS', nil),
35
39
  }.compact
36
40
  # combine defaults and env_vars to determine overall options
37
41
  options = defaults.merge(env_vars)
@@ -39,10 +43,10 @@ RSpec.configure do |c|
39
43
  # process options to construct beaker command string
40
44
  nodesetdir = options[:nodesetdir] || File.join('spec', 'acceptance', 'nodesets')
41
45
  nodesetfile = options[:nodesetfile] || File.join(nodesetdir, "#{options[:nodeset]}.yml")
42
- fresh_nodes = options[:provision] == 'no' ? '--no-provision' : nil
46
+ fresh_nodes = (options[:provision] == 'no') ? '--no-provision' : nil
43
47
  keyfile = options[:keyfile] ? ['--keyfile', options[:keyfile]] : nil
44
- debug = options[:debug] && options[:debug] != 'no' ? ['--log-level', 'debug'] : nil
45
- color = options[:color] == 'no' ? ['--no-color'] : nil
48
+ debug = (options[:debug] && options[:debug] != 'no') ? ['--log-level', 'debug'] : nil
49
+ color = (options[:color] == 'no') ? ['--no-color'] : nil
46
50
  options_file = options[:optionsfile] ? ['--options-file', options[:optionsfile]] : nil
47
51
 
48
52
  # Configure all nodes in nodeset
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module BeakerRSpec
2
4
  module Version
3
- STRING = '8.1.0'
5
+ STRING = '8.3.0'
4
6
  end
5
7
  end
data/lib/beaker-rspec.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module BeakerRSpec
2
4
  require 'beaker'
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'spec_helper'
2
4
 
3
5
  describe 'ignore' do
@@ -21,7 +23,7 @@ describe 'ignore' do
21
23
  end
22
24
 
23
25
  example 'access the options' do
24
- expect(options).to be_kind_of(Hash)
26
+ expect(options).to be_a(Hash)
25
27
  end
26
28
 
27
29
  example 'create a beaker dsl::step' do
data/spec/spec_helper.rb CHANGED
@@ -1,3 +1,5 @@
1
- ENV['RS_SETFILE'] ||= 'centos8-64'
1
+ # frozen_string_literal: true
2
+
3
+ ENV['RS_SETFILE'] ||= 'centos9-64'
2
4
 
3
5
  require 'beaker-rspec'
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beaker-rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.1.0
4
+ version: 8.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vox Pupuli
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-07-11 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: fakefs
@@ -19,7 +18,7 @@ dependencies:
19
18
  version: '0.6'
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
- version: '3'
21
+ version: '4'
23
22
  type: :development
24
23
  prerelease: false
25
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +28,7 @@ dependencies:
29
28
  version: '0.6'
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
- version: '3'
31
+ version: '4'
33
32
  - !ruby/object:Gem::Dependency
34
33
  name: minitest
35
34
  requirement: !ruby/object:Gem::Requirement
@@ -64,14 +63,14 @@ dependencies:
64
63
  requirements:
65
64
  - - "~>"
66
65
  - !ruby/object:Gem::Version
67
- version: '1.3'
66
+ version: 3.1.0
68
67
  type: :development
69
68
  prerelease: false
70
69
  version_requirements: !ruby/object:Gem::Requirement
71
70
  requirements:
72
71
  - - "~>"
73
72
  - !ruby/object:Gem::Version
74
- version: '1.3'
73
+ version: 3.1.0
75
74
  - !ruby/object:Gem::Dependency
76
75
  name: beaker
77
76
  requirement: !ruby/object:Gem::Requirement
@@ -81,7 +80,7 @@ dependencies:
81
80
  version: '4.0'
82
81
  - - "<"
83
82
  - !ruby/object:Gem::Version
84
- version: '6'
83
+ version: '7'
85
84
  type: :runtime
86
85
  prerelease: false
87
86
  version_requirements: !ruby/object:Gem::Requirement
@@ -91,7 +90,7 @@ dependencies:
91
90
  version: '4.0'
92
91
  - - "<"
93
92
  - !ruby/object:Gem::Version
94
- version: '6'
93
+ version: '7'
95
94
  - !ruby/object:Gem::Dependency
96
95
  name: rspec
97
96
  requirement: !ruby/object:Gem::Requirement
@@ -166,7 +165,6 @@ homepage: https://github.com/voxpupuli/beaker-rspec
166
165
  licenses:
167
166
  - Apache-2.0
168
167
  metadata: {}
169
- post_install_message:
170
168
  rdoc_options: []
171
169
  require_paths:
172
170
  - lib
@@ -184,8 +182,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
184
182
  - !ruby/object:Gem::Version
185
183
  version: '0'
186
184
  requirements: []
187
- rubygems_version: 3.4.10
188
- signing_key:
185
+ rubygems_version: 3.6.7
189
186
  specification_version: 4
190
187
  summary: RSpec bindings for beaker
191
188
  test_files: []