Postmodern
Postmodern
I've also tried `\#{{ var.id }}` and `\##{{{ var.id }}}`, can't seem to output `#foo`.
Trying to generate a bunch of `describe` blocks, with specs inside, using a list of `id` names and `Class` names. https://github.com/postmodern/v4l2.cr/blob/5f2e6882f510af86a3ff646f1321a9845ae21c9d/spec/device_spec.cr#L50-L64 With RSpec you'd either use a [shared_example with input...
I get the same error when trying to use `receive(:run) { ... }`. ```crystal expect(Process).to(receive(:run) { |command,shell,output| }) ``` ``` Showing last frame. Use --error-trace for full trace. There was...
Guessing it's because there are two [Process.run](https://crystal-lang.org/api/1.5.0/Process.html#run(command:String,args=nil,env:Env=nil,clear_env:Bool=false,shell:Bool=false,input:Stdio=Redirect::Close,output:Stdio=Redirect::Close,error:Stdio=Redirect::Close,chdir:Path|String?=nil):Process::Status-class-method) methods, one that accepts a block and one that doesn't but instead returns a `Process::Status` value?
Going to hold this back from 1.0.0. Not feeling it.
Had to confirm locally: ```ruby source 'https://rubygems.org/' # `dnf install wkhtmltopdf` / `apt install wkhtmltopdf` gem 'pdfkit', '~> 0.8.7' gem 'webrick' gem 'sinatra' ``` ```ruby require 'bundler/setup' require 'pdfkit' PDFKit.new("http://localhost:3000/?home=$HOME").to_pdf...
Now waiting for the maintainer to review https://github.com/pdfkit/pdfkit/pull/519
Marked `>= 0.8.7.2` as patched.
If I rename `lib/foo/bar/other_module.rb` to `lib/foo/bar/baz.rb`, the documentation for `Foo::Bar` in `lib/foo/bar/old_file.rb` suddenly appears, which implies the order of the files within `lib/foo/bar/` matter.
Will delay this _after_ we've removed all of the unwanted legacy code.