class Build

Aggregates top-level targets

Public Class Methods

new(*targets) click to toggle source
# File lib/reggae.rb, line 17
def initialize(*targets)
  @targets = targets
end

Public Instance Methods

jsonify() click to toggle source
# File lib/reggae.rb, line 25
def jsonify
  @targets.map { |t| t.jsonify }
end
to_json() click to toggle source
# File lib/reggae.rb, line 21
def to_json
  jsonify.to_json
end