Module: LoggingHelpers

Defined in:
lib/coursegen/course/helpers/logging_helpers.rb

Instance Method Summary collapse

Instance Method Details

#compiling(item) ⇒ Object



11
12
13
# File 'lib/coursegen/course/helpers/logging_helpers.rb', line 11

def compiling item
	#puts "* compiling #{item[:title]}"
end

#log_item_infoObject



2
3
4
5
6
7
8
9
# File 'lib/coursegen/course/helpers/logging_helpers.rb', line 2

def log_item_info
	puts
	puts "*** ITEM Info: #{item.identifier}"
	puts "Parent = #{item.parent}"
	puts "Children = #{item.children}"
	puts "Reps = #{item.reps}"
	pp item.attributes
end