diff --git a/.rubocop.yaml b/.rubocop.yaml index 24d1ba7..2b9b10e 100644 --- a/.rubocop.yaml +++ b/.rubocop.yaml @@ -2,7 +2,6 @@ require: [chefstyle] AllCops: - TargetRubyVersion: 3.2 Include: - "**/*.rb" Exclude: diff --git a/Gemfile b/Gemfile index b4fb54c..554f2fc 100644 --- a/Gemfile +++ b/Gemfile @@ -5,11 +5,11 @@ source "https://rubygems.org" gemspec group :test do - gem 'bundler' - gem 'rake' - gem 'rspec', '>= 3.2' + gem "bundler" + gem "rake" + gem "rspec", ">= 3.2" end group :chefstyle do - gem 'chefstyle', '>= 2.2.3' + gem "chefstyle", ">= 2.2.3" end diff --git a/spec/version_spec.rb b/spec/version_spec.rb index 154e156..9a64555 100644 --- a/spec/version_spec.rb +++ b/spec/version_spec.rb @@ -17,13 +17,13 @@ # See the License for the specific language governing permissions and # limitations under the License. -require 'spec_helper' -require 'kitchen/driver/version' +require "spec_helper" +require "kitchen/driver/version" describe Kitchen::Driver::WORKFLOW_TESTING_VERSION do - let(:expected_version) { '1.0.0' } # replace with your expected version + let(:expected_version) { "1.0.0" } # replace with your expected version - it 'has the correct version' do + it "has the correct version" do expect(Kitchen::Driver::WORKFLOW_TESTING_VERSION::STRING).to eq(expected_version) end end