Init with c ext

This commit is contained in:
2025-03-14 17:46:02 +00:00
commit d47b8ca684
21 changed files with 414 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
# frozen_string_literal: true
RSpec.describe Mcp do
it "has a version number" do
expect(Mcp::VERSION).not_to be nil
end
it "does something useful" do
expect(false).to eq(true)
end
end
+15
View File
@@ -0,0 +1,15 @@
# frozen_string_literal: true
require "mcp"
RSpec.configure do |config|
# Enable flags like --only-failures and --next-failure
config.example_status_persistence_file_path = ".rspec_status"
# Disable RSpec exposing methods globally on `Module` and `main`
config.disable_monkey_patching!
config.expect_with :rspec do |c|
c.syntax = :expect
end
end