Sha256: c5d7c1544c306638c4485026466047d552adfa28849d1aa86a76be0db104e3cb
Contents?: true
Size: 1.37 KB
Versions: 2
Compression:
Stored size: 1.37 KB
Contents
[](https://codeclimate.com/github/frankjmattia/jobshop) # Jobshop This README is also [available in a friendly, navigable format](http://jobshop.frankjmattia.documentup.com). ## Getting Started _Jobshop is being actively developed with Rails 5. Patches which add support for Rails 4+ are more than welcome._ Start by adding Jobshop to your Gemfile: ```ruby gem "jobshop", "~> 0.0.1" ``` Run the `bundle` command to install it. Once Jobshop has been installed you can configure it by running the generator: ```console % rails generate jobshop:config ``` The generator will install an initializer which describes ALL of Jobshop's configuration options. Add Jobshop to your model using the generator: ```console % rails generate jobshop MODEL ``` Replace MODEL with the class name used for the application’s users (it’s frequently `User` but could also be `Person` or even `Employee`). This will create a model (if one does not exist) and configure it. The generator also configures your `config/routes.rb` file to point to the Jobshop engine. ## Bug Reports If you discover a problem with Jobshop, we would like to know about it. https://github.com/frankjmattia/jobshop/issues If you discover a security related bug, please do NOT use the GitHub issue tracker. Send an email to frankjmattia@jobshop.io
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jobshop-0.0.1 | README.md |
jobshop-0.0.0 | README.md |