diff --git a/Gemfile.lock b/Gemfile.lock index 045b9b2..b88a91c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1371,6 +1371,7 @@ GEM PLATFORMS aarch64-linux-musl + ruby x86_64-linux-musl DEPENDENCIES diff --git a/rspec.xml b/rspec.xml deleted file mode 100644 index e69de29..0000000 diff --git a/spec/sample_spec.rb b/spec/sample_spec.rb new file mode 100644 index 0000000..a18f6b9 --- /dev/null +++ b/spec/sample_spec.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +RSpec.describe 'Sample spec' do + it 'succeeds' do + expect(true).to eq(true) + end +end