Method: Rake::TaskArguments#inspect
- Defined in:
- lib/rake/task_arguments.rb
#inspect ⇒ Object
:nodoc:
79 80 81 82 83 84 85 |
# File 'lib/rake/task_arguments.rb', line 79 def inspect # :nodoc: inspection = @hash.map do |k,v| "#{k.to_s}: #{v.to_s}" end.join(", ") "#<#{self.class} #{inspection}>" end |