wisper-activejob 0.0.2 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.ruby-version +1 -1
- data/.travis.yml +7 -3
- data/README.md +0 -2
- data/gemfiles/activejob-4.0 +10 -0
- data/gemfiles/activejob-5.0 +10 -0
- data/lib/wisper/active_job.rb +1 -2
- data/lib/wisper/active_job/version.rb +1 -1
- data/lib/wisper/active_job_broadcaster.rb +1 -2
- data/spec/configuration_spec.rb +0 -2
- data/spec/integration_spec.rb +0 -2
- data/spec/spec_helper.rb +5 -0
- data/wisper-activejob.gemspec +1 -2
- metadata +10 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3229347ead9bc8634818ae822e3a8b162e9a9f0
|
4
|
+
data.tar.gz: 3877ba7b06492e62be75e573f2720e0317ba13db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31013a4b4a18020928456553c9a34f612d23e8cabfbe71c89abb8639f61ebf67f93345cccacaae4de659bc96216357cb1d39b89e31676db787dfe7dd9b58330f
|
7
|
+
data.tar.gz: aff523a278d6d6c7da2e19cf581580308cb6e15152b5bd2a328b4501217d20c13fc4e0c3ede068e4a97d2188a3d8f962c544a0d04fcfc80a19d3211b5fa31a51
|
data/.gitignore
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.4
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
data/lib/wisper/active_job.rb
CHANGED
data/spec/configuration_spec.rb
CHANGED
data/spec/integration_spec.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
@@ -5,6 +5,11 @@ SimpleCov.formatter = Coveralls::SimpleCov::Formatter
|
|
5
5
|
|
6
6
|
SimpleCov.start
|
7
7
|
|
8
|
+
require 'wisper/active_job'
|
9
|
+
|
10
|
+
puts "Using ActiveJob version #{ActiveJob::VERSION::STRING}"
|
11
|
+
puts
|
12
|
+
|
8
13
|
RSpec.configure do |config|
|
9
14
|
config.expect_with :rspec do |expectations|
|
10
15
|
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
data/wisper-activejob.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wisper-activejob
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kris Leech
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-07-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: wisper
|
@@ -25,19 +25,19 @@ dependencies:
|
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: activejob
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 4.0.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
40
|
+
version: 4.0.0
|
41
41
|
description: Provides Wisper with asynchronous event publishing using ActiveJob
|
42
42
|
email:
|
43
43
|
- kris.leech@gmail.com
|
@@ -53,6 +53,8 @@ files:
|
|
53
53
|
- LICENSE.txt
|
54
54
|
- README.md
|
55
55
|
- Rakefile
|
56
|
+
- gemfiles/activejob-4.0
|
57
|
+
- gemfiles/activejob-5.0
|
56
58
|
- lib/wisper/active_job.rb
|
57
59
|
- lib/wisper/active_job/version.rb
|
58
60
|
- lib/wisper/active_job_broadcaster.rb
|
@@ -81,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
83
|
version: '0'
|
82
84
|
requirements: []
|
83
85
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
86
|
+
rubygems_version: 2.6.8
|
85
87
|
signing_key:
|
86
88
|
specification_version: 4
|
87
89
|
summary: Provides Wisper with asynchronous event publishing using ActiveJob
|