Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
* Few minor improvements (see commitlog)
* Breaking change for the pid_dir
  • Loading branch information
brugidou committed Mar 22, 2012
1 parent 5504b3f commit 78d383e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ Two environment variables are used (with defaults):
- `LOBSTER_ENV` is a variable used to handle different environments (default:
development)

You need write permission to `/var/run/lobster/` for pids, this path is
configurable.

- `lobster run` will run in the console
- or `lobster start` as a deamon

Expand Down
7 changes: 5 additions & 2 deletions bin/lobsterize
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ unless File.exist?(schedule)
## Job named my_job
#job 'my_job' do
#
## will just sleep for 5 seconds, this command is run from the
## LOBSTER_DIR directory, so you can use relative paths from here.
## will just sleep for 5 seconds, you can use relative paths
## from the directory defined with the "directory" command
# command 'sleep 5'
#
## the user my_user will be use to run the command, Lobster needs
Expand All @@ -71,6 +71,9 @@ unless File.exist?(schedule)
## Lobster will wait 2 minutes between 2 runs
# delay 2
#
## will run the command from this directory. Defaults to LOBSTER_DIR
# directory '/my_directory/here/'
#
## end of job definition
#end
EOF
Expand Down
2 changes: 1 addition & 1 deletion lib/lobster/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Lobster
VERSION = '0.1.3.wip'
VERSION = '0.2.0'
end

0 comments on commit 78d383e

Please sign in to comment.