This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ERB_TEMPLATE = <<~HEREDOC | |
guard :shell do | |
<% all_tasks.each do |t, files| %> | |
watch(%r{^(<%= files.join('|') %>)$}) do |m| | |
system("rake <%= t %>") | |
end | |
<% end %> | |
end | |
HEREDOC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
</head> | |
<body> | |
<div id="screenshot"> | |
<video autoplay></video> | |
<img src="" download="new-image-name.webp"> | |
<canvas style="display:none;"></canvas> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'json' | |
j = JSON.load_file('.jb/manifest.template.json') | |
j['interactives'] = [] | |
j['assets'] = [] | |
j.delete('thumbnailCode') | |
File.write('.jb/manifest.template.json',JSON.pretty_generate(j)) |
OlderNewer