Ruby で NotionRubyMapping を使って、page を作成するコードを書いてください。

コマンド
Help me write
require 'notion_ruby_mapping' # Connect to Notion NotionRubyMapping.configure do |config| config.token = 'your-token-here' end # Create a new page page = NotionRubyMapping::Page.create( title: 'Hello, world!', body: 'This is a test page.' ) # Save the page to Notion page.save