从 markdown 标签执行 ruby 代码
Execute ruby code from markdown tag
我被要求测试我在降价文档(使用 Middleman 创建的网站)中提供的示例。
我需要测试我建议的 API 请求的示例是否正确。
所以在我的例子中我有:
_example.md
```ruby
uri = URI.parse("http://localhost:3000/oauth/token")
request = Net::HTTP::Post.new(uri)
request.content_type = "application/x-www-form-urlencoded; charset=utf-8"
request.set_form_data(
"client_id" => "id",
"client_secret" => "secret",
"grant_type" => "password",
"password" => "password",
"username" => "user@example.com"
)
req_options = {
use_ssl: uri.scheme == "https"
}
response = Net::HTTP.start(uri.hostname, uri.port, req_options) do |http|
http.request(request)
end
response.code
```
想法是输入 mardown 文件并在 ```ruby ```
标签之间读取
在我的测试文件中
test.rb
def run_http_request
File.open('../_example.md').each_line do |line|
next if line.start_with? '```'
line
end
end
我想要这个方法来执行 http 请求...
尝试以下操作:
content = File.read('../_example.md')
matches = content.match(/```ruby(.+)```/m)
code = matches[1] # matches[0] contains the code and the ```ruby``` part
eval(code)
希望对您有所帮助!
我被要求测试我在降价文档(使用 Middleman 创建的网站)中提供的示例。
我需要测试我建议的 API 请求的示例是否正确。
所以在我的例子中我有:
_example.md
```ruby
uri = URI.parse("http://localhost:3000/oauth/token")
request = Net::HTTP::Post.new(uri)
request.content_type = "application/x-www-form-urlencoded; charset=utf-8"
request.set_form_data(
"client_id" => "id",
"client_secret" => "secret",
"grant_type" => "password",
"password" => "password",
"username" => "user@example.com"
)
req_options = {
use_ssl: uri.scheme == "https"
}
response = Net::HTTP.start(uri.hostname, uri.port, req_options) do |http|
http.request(request)
end
response.code
```
想法是输入 mardown 文件并在 ```ruby ```
标签之间读取
在我的测试文件中
test.rb
def run_http_request
File.open('../_example.md').each_line do |line|
next if line.start_with? '```'
line
end
end
我想要这个方法来执行 http 请求...
尝试以下操作:
content = File.read('../_example.md')
matches = content.match(/```ruby(.+)```/m)
code = matches[1] # matches[0] contains the code and the ```ruby``` part
eval(code)
希望对您有所帮助!