class Jekyll::Copyr::Task

Attributes

from[RW]
to[RW]

Public Class Methods

new(task_hash = {}) click to toggle source
# File lib/jekyll-copyr/task.rb, line 8
def initialize(task_hash = {})
  @from = task_hash.fetch "from", nil
  @to = task_hash.fetch "to", nil
end