jobshop 0.0.7 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +9 -6
- data/lib/jobshop/templates/quick_install.rb +2 -2
- data/lib/jobshop/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2bd0bcde3a6f36b79899a911d0499199482ba12a
|
4
|
+
data.tar.gz: 333ab400a210b72dc40aa7c854298ff0dbf42245
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
24
|
-
to a production server or create a local development instance, a few
|
25
|
-
considerations will need to be made. There are no guides yet but pull
|
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
|
-
[
|
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.
|
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.
|
data/lib/jobshop/version.rb
CHANGED