Skip to content

Easy and safe way to manage your crontab file via CRUD

License

Notifications You must be signed in to change notification settings

lanlhtomosia97/crontab_rb

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

crontab_rb is a Ruby gem that provides easy and safe way to manage your cron jobs unix file via CRUD.

Installation

$ gem install crontab_rb

Or with Bundler in your Gemfile.

gem 'crontab_rb'

Run bundle install to install the backend and crontab_rb gems.

Getting started

How to add a cron jobs

Example: 10 * * * * /bin/bash -l -c 'cd path_to_rails_app && bundle exec rake backup_db'

$ CrontabRb::Cron.create(name: 'Backup database', time: '1', at: '10', command: 'rake backup_db')

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/crontab_rb.

Contribute

Fork Crontab UI and contribute to it. Pull requests are encouraged.

License

MIT

About

Easy and safe way to manage your crontab file via CRUD

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Ruby 98.3%
  • Shell 1.7%