asciidoctor / asciidoctor-gradle-examples

A collection of example projects that demonstrates how to use the Asciidoctor Gradle plugin
http://asciidoctor.github.io/asciidoctor-gradle-examples
Other
147 stars 136 forks source link

revealjs example doesnt work anymore #36

Closed mariogarcia closed 7 years ago

mariogarcia commented 7 years ago

I've recently cloned this repository and tried to create slides with no luck. Failure message says:

bind argument must be an instance of Tilt::CompiledTemplates

BTW: I know there's a ruby gem for asciidoctor-revealjs. Would it be possible to use it as gem dependency and make it work ?

mariogarcia commented 7 years ago

Sorry it seems I change something in the configuration :( It is working!

benignbala commented 7 years ago

It is failing with the exact same error for me now.

@mariogarcia Can you please share what was changed so that I can check the same ? Thanks

mariogarcia commented 7 years ago

It's been a while and I don't remember the precise change, but you can take a look to my configuration and figure out what was it. You can find it here https://github.com/mariogarcia/talks/blob/master/2017/03/greach/slides/slides.gradle

BTW It's true that somebody should take the time to do a pull request to do the changes in this repo. Unfortunately I don't have much time now.

I hope this helps

schauder commented 7 years ago

Ever found out what it was? I'm seeing it now on one of my presentations

antonmry commented 6 years ago

It happened to me today, in my case, I was changing the dependency:

    dependsOn jrubyPrepareGems,download, copyTheme

to

    dependsOn jrubyPrepare, download, copyTheme

but I just deleted it the jrubyPrepareGems instead of replace it and the same error happened. Add jrubyPrepare fixed it