Sha256: 16d555c2d0681652d157f8e4506764cb048164fc8c3886acde6f57884c13dd76

Contents?: true

Size: 976 Bytes

Versions: 7

Compression:

Stored size: 976 Bytes

Contents

#!/usr/bin/env ruby
# encoding: UTF-8

$:.unshift File.expand_path('../../lib', __FILE__)

require 'image_optim'

README_FILE = File.expand_path('../../README.markdown', __FILE__)
BEGIN_MARKER = '<!---<worker-options>-->'
END_MARKER = '<!---</worker-options>-->'

def worker_options
  io = StringIO.new

  ImageOptim::Worker.klasses.each_with_index do |klass, i|
    unless klass.option_definitions.empty?
      io.puts "### #{klass.bin_sym}"
      klass.option_definitions.each do |option_definition|
        io.puts "* `:#{option_definition.name}` — #{option_definition.description} *(defaults to #{option_definition.default})*"
      end
      io.puts
    end
  end

  io.string
end

readme = File.read(README_FILE)

if readme.sub!(/#{Regexp.escape(BEGIN_MARKER)}.*#{Regexp.escape(END_MARKER)}/m, "#{BEGIN_MARKER}\n\n#{worker_options.strip}\n\n#{END_MARKER}")
  File.open(README_FILE, 'w') do |f|
    f.write readme
  end
else
  abort "Did not update worker options"
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
image_optim-0.12.0 script/update_worker_options_in_readme
image_optim-0.11.2 script/update_worker_options_in_readme
image_optim-0.11.1 script/update_worker_options_in_readme
image_optim-0.11.0 script/update_worker_options_in_readme
image_optim-0.10.2 script/update_worker_options_in_readme
image_optim-0.10.1 script/update_worker_options_in_readme
image_optim-0.10.0 script/update_worker_options_in_readme