Sha256: 47cd05e7acf989758cca4623724f18e5af8ac350c949d4ba9765e3029446413a
Contents?: true
Size: 373 Bytes
Versions: 20
Compression:
Stored size: 373 Bytes
Contents
# frozen_string_literal: true desc "Set data about friends" command :set do |set| set.desc "Set a friend's location" set.arg_name "NAME LOCATION" set.command :location do |set_location| set_location.action do |_, _, args| @introvert.set_location(name: args.first, location_name: args[1]) @dirty = true # Mark the file for cleaning. end end end
Version data entries
20 entries across 20 versions & 1 rubygems