从markdown标签执行ruby代码

时间:2018-04-25 14:35:31

标签: ruby markdown middleman

我被要求测试我在降价文档中提供的示例(使用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请求......

1 个答案:

答案 0 :(得分:1)

尝试以下方法:

content = File.read('../_example.md')
matches = content.match(/```ruby(.+)```/m)

code = matches[1] # matches[0] contains the code and the ```ruby``` part
eval(code)

希望它有所帮助!