Sha256: 9b62387f79b7f0c53885503fc534551205f4982d8209111ec18cea04eea7b898

Contents?: true

Size: 224 Bytes

Versions: 1

Compression:

Stored size: 224 Bytes

Contents

Ponytail.Models.Command = function() {
  this.args = Array.prototype.slice.call(arguments);
};
Ponytail.Models.Command.prototype = {
  toString: function() {
    return this.args.shift() + " " + this.args.join(", ");
  }
};

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ponytail-0.3.0 app/assets/javascripts/ponytail/models/command.js