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: 8ae475c6e56a6ae45f56aa9443c03310aabdc484ce847a1120e1399813ccc249
4
- data.tar.gz: a7121f335d1af02eaee5e2bbbfcc04c578b93e6fdab51579f88f93bb423e69e1
3
+ metadata.gz: cf08c47fecadf75defd8d0a560c3c8e95f5ba559861bfb1eb86044e3a67bd3a6
4
+ data.tar.gz: 395dfe0c8d754f68ddbf469144b8f37748cd825de226e525c51b07b383858d8b
5
5
  SHA512:
6
- metadata.gz: 760e95ca01b7b218d88d73722b1bfdeaf4e997783f1795daaa2b466cd9cb33890f002a5cbdd6030b07820d5bc314faa83acedf53b1de3117c1c50aa4fe973ce2
7
- data.tar.gz: 01b58bcdbdbbe85bdba0d0a7411125516e4acbc354028d78009730b7321c21ff143c1ab32d47aea590d359fc353f4223489d3259bc80050453c7c067db5b0d0d
6
+ metadata.gz: ae2434f84001134c6763c90f1eef5d0c9b00b8755bcf3a9817f2e588ce3e953e6fa23e97d08f207d95ef35db518164d6a322096f9af4eeac644648410b6c9c8d
7
+ data.tar.gz: 5c402c8ef8f2cce341ddf70e6630ef8335db8a067f3de3d07f5a0b64f0525d9e755013ed76b8b694db8818ad80089d40e5259759f1178402f7e2c2150f1267e6
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem "foreman"
4
+ gem "jobly"
@@ -0,0 +1,2 @@
1
+ web: jobly server
2
+ worker: jobly worker
@@ -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
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem "jobly"
@@ -1,3 +1,3 @@
1
1
  module Jobly
2
- VERSION = "0.2.4"
2
+ VERSION = "0.2.5"
3
3
  end
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
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