]> gitweb.michael.orlitzky.com - mailshears.git/blob - lib/common/exit_codes.rb
mailshears.gemspec: update the version to 0.0.5.
[mailshears.git] / lib / common / exit_codes.rb
1 # Command-line exit codes. In other words, what you'll see if you
2 # <tt>echo $?</tt> after running the executable on the command-line.
3 module ExitCodes
4 # Everything went better than expected.
5 SUCCESS = 0
6
7 # The command-line arguments were not what we expected.
8 BAD_COMMAND_LINE = 1
9 end