jobly 0.2.4 → 0.2.5
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cf08c47fecadf75defd8d0a560c3c8e95f5ba559861bfb1eb86044e3a67bd3a6
|
|
4
|
+
data.tar.gz: 395dfe0c8d754f68ddbf469144b8f37748cd825de226e525c51b07b383858d8b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae2434f84001134c6763c90f1eef5d0c9b00b8755bcf3a9817f2e588ce3e953e6fa23e97d08f207d95ef35db518164d6a322096f9af4eeac644648410b6c9c8d
|
|
7
|
+
data.tar.gz: 5c402c8ef8f2cce341ddf70e6630ef8335db8a067f3de3d07f5a0b64f0525d9e755013ed76b8b694db8818ad80089d40e5259759f1178402f7e2c2150f1267e6
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Configuration can be done by environment variables or by a configuraiton
|
|
2
|
+
# file. If you are using `direnv`, you can copy this file to `.envrc` in
|
|
3
|
+
# order to autoload these values.
|
|
4
|
+
export JOBLY_ENVIRONMENT=development
|
|
5
|
+
export JOBLY_API_URL=http://localhost:3000/do
|
|
6
|
+
export JOBLY_APP_PATH=app
|
|
7
|
+
export JOBLY_CONFIG_PATH=config
|
|
8
|
+
export JOBLY_REDIS_URL=redis://localhost:6379/0
|
|
9
|
+
export JOBLY_STATUS_EXPIRATION=30
|
|
10
|
+
export JOBLY_JOBS_NAMESPACE=Jobs
|
|
11
|
+
export JOBLY_LOG=Jobs
|
|
12
|
+
export JOBLY_AUTH=admin:secret
|
data/lib/jobly/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jobly
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Danny Ben Shitrit
|
|
@@ -201,10 +201,14 @@ files:
|
|
|
201
201
|
- lib/jobly/refinements/to_slug.rb
|
|
202
202
|
- lib/jobly/server.rb
|
|
203
203
|
- lib/jobly/sidekiq.rb
|
|
204
|
+
- lib/jobly/templates/full/Gemfile
|
|
205
|
+
- lib/jobly/templates/full/Procfile
|
|
204
206
|
- lib/jobly/templates/full/app/job.rb
|
|
205
207
|
- lib/jobly/templates/full/config/jobly.rb
|
|
208
|
+
- lib/jobly/templates/full/envrc.example
|
|
206
209
|
- lib/jobly/templates/full/jobs/hello.rb
|
|
207
210
|
- lib/jobly/templates/full/jobs/ping.rb
|
|
211
|
+
- lib/jobly/templates/minimal/Gemfile
|
|
208
212
|
- lib/jobly/templates/minimal/jobs/ping.rb
|
|
209
213
|
- lib/jobly/version.rb
|
|
210
214
|
homepage: https://github.com/dannyben/jobly
|