jobshop 0.0.7 → 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 141840179f9b9bb786e75da043b78bccb91458ec
4
- data.tar.gz: f421d587ede766d3ebe25a393f7f0c1d65cb3e81
3
+ metadata.gz: 2bd0bcde3a6f36b79899a911d0499199482ba12a
4
+ data.tar.gz: 333ab400a210b72dc40aa7c854298ff0dbf42245
5
5
  SHA512:
6
- metadata.gz: 25fd122aedfd97182632133dea5adfac6f4a44aac989d1f9863ee929281c2aa240711f3c044cc6b5376a60d8e46e1553fbd2c0640c787295d290975283e03b6b
7
- data.tar.gz: 797eb299ae0721f1e31f5babdd33db3ea58c964111472652dcfd27ab1baa7506fa93d8f782ce039fc7df8795bc78824760b3966145cd8d1d429d3e84914dba15
6
+ metadata.gz: a92b671c57a17332ede5cdc3aaf19485cf2c40eb0434d20f893809e727cbd1ef0ad9a6210ebe3aeaeaa92a6cc5f233f19142d7729a35d5187c3fe880d605196b
7
+ data.tar.gz: a8b51203f51fc9a4ce1a59936c624b0766f720c91fea0d1ed9643d6b2e084d0d840b7458245787149ad9587b62ba8709e5a5caa71b2ac94f1a77b4d0c1abbab3
data/README.md CHANGED
@@ -20,12 +20,15 @@ Jobshop only requires a few things:
20
20
 
21
21
  The Quick Installation is designed to get you up and running a local Jobshop
22
22
  server with minimum effort. This instance will be ideal for evaluating Jobshop
23
- on a small number of stations within your organization. If would like to deploy
24
- to a production server or create a local development instance, a few extra
25
- considerations will need to be made. There are no guides yet but pull requests
26
- are always welcome.
27
-
28
- First, generate a new rails app and target the PostgreSQL adapter.
23
+ on a small number of stations within your organization. If you would like to
24
+ deploy to a production server or create a local development instance, a few
25
+ extra considerations will need to be made. There are no guides yet but pull
26
+ requests are always welcome.
27
+
28
+ First, generate a new rails app and target the PostgreSQL adapter. The provided
29
+ application template does all the heavy lifting. It adds Jobshop to your
30
+ `Gemfile`, defines reasonable defaults in `config/secrets.yml` and a adds aroute
31
+ for the `Jobshop::Engine` to `config/routes.rb`.
29
32
 
30
33
  ```console
31
34
  $ rails new my_jobshop --database=postgresql -m https://templates.jobshop.io/quick_install.rb
@@ -1,9 +1,9 @@
1
1
  def source_paths
2
- [ File.expand_path(File.dirname(__FILE__)) ]
2
+ [ "https://raw.githubusercontent.com/jobshop/jobshop/master/lib/jobshop/templates/" ]
3
3
  end
4
4
 
5
5
  # Add jobshop to the application `Gemfile`.
6
- gem "jobshop", "~> 0.0.7"
6
+ gem "jobshop", "~> 0.0.9"
7
7
 
8
8
  # The generated config/secrets.yml file uses hardcoded values for
9
9
  # test/development environments. Generate secrets pragmatically.
@@ -6,7 +6,7 @@ module Jobshop
6
6
  module VERSION
7
7
  MAJOR = 0
8
8
  MINOR = 0
9
- TINY = 7
9
+ TINY = 9
10
10
  PRE = nil
11
11
 
12
12
  CODE_NAME = "bump it up".freeze
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jobshop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Frank J. Mattia