Sha256: 063ef4e2a1a2583dbccae1072c80ed35dc542a277d64445244251c22c566f92e

Contents?: true

Size: 470 Bytes

Versions: 17

Compression:

Stored size: 470 Bytes

Contents

module Relish
  module ErrorMessages
    module_function
  
    def project_blank
      'Please specify a project.' + help
    end
    
    def handle_blank
      'Please specify a new handle.' + help
    end
    
    def version_blank
      'Please specify a version name.' + help
    end
  
    def unknown_command
      'Unknown command.' + help
    end
  
    def help(pad = true)
      (pad ? ' ' : '') + "Run 'relish help' for usage information."
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
relish-0.7.1 lib/relish/error_messages.rb
relish-0.7 lib/relish/error_messages.rb
relish-0.6 lib/relish/error_messages.rb
relish-0.5.3 lib/relish/error_messages.rb
relish-0.5.2 lib/relish/error_messages.rb
relish-0.5.1 lib/relish/error_messages.rb
relish-0.5.0 lib/relish/error_messages.rb
relish-0.4.0 lib/relish/error_messages.rb
relish-0.3.0 lib/relish/error_messages.rb
relish-0.3.0.pre lib/relish/error_messages.rb
relish-0.2.3 lib/relish/error_messages.rb
relish-0.2.2 lib/relish/error_messages.rb
relish-0.2.1 lib/relish/error_messages.rb
relish-0.2.0 lib/relish/error_messages.rb
relish-0.1.6 lib/relish/error_messages.rb
relish-0.1.5 lib/relish/error_messages.rb
relish-0.1.4 lib/relish/error_messages.rb