jsonapi_publisher 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6ff4c92997af51bd0e3eaa5a8a8066c002d132c9
4
- data.tar.gz: e57ae162843ab4d711533a8441295f0bbd8a18f1
3
+ metadata.gz: 4a4337169bdb63dc171d0dae70afd3dd315d3e02
4
+ data.tar.gz: 4d008e663423bd2165002294c77ccd14061ddd0b
5
5
  SHA512:
6
- metadata.gz: f6516b044d730f8a4787a7cc619a2275cfce148d34bf6ed301df5b405d90a55e9b83f3488498aabe2067ecd42c2b63fe1454acc4ee427cf0c60c403287dfb9bc
7
- data.tar.gz: d33e0cd9a21088a9fd52b988e99d6135a2dbba1ac3cdd2a764b79855298718620e49cfcaea279d7e5603c95873769f0b640d3c9d93e7112290c0c610b940365e
6
+ metadata.gz: 0650e14fa996c14277f545a2917c74f65d1459a77b011178b83ce06442b188566262c87dcecaad14cebc021fd494178d6f4dc48a7a06f559a7ea96df134e0040
7
+ data.tar.gz: 5520b39bbe0612979ce8e18ef7c3d3b5fe60fb57d1eff2889147a39e046aa9e27934afbb812110c48b34f51e2b27c8d314093c45eee2ad7047d88ce48900714d
@@ -1,7 +1,14 @@
1
1
  require 'active_record'
2
- require 'configuration'
3
2
 
4
3
  module JsonapiPublisher
4
+ class Configuration
5
+ attr_accessor :qservice, :avoid_send
6
+
7
+ def initialize
8
+ @qservice = nil
9
+ end
10
+ end
11
+
5
12
  class << self
6
13
  attr_writer :configuration
7
14
  attr_accessor :connection, :channel
@@ -1,3 +1,3 @@
1
1
  module JsonapiPublisher
2
- VERSION = '0.2.7'.freeze
2
+ VERSION = '0.2.8'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jsonapi_publisher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michele Finotto
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-03 00:00:00.000000000 Z
11
+ date: 2018-01-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -118,7 +118,6 @@ files:
118
118
  - MIT-LICENSE
119
119
  - README.md
120
120
  - Rakefile
121
- - lib/configuration.rb
122
121
  - lib/jsonapi_publisher.rb
123
122
  - lib/jsonapi_publisher/version.rb
124
123
  - lib/tasks/jsonapi_publisher_tasks.rake
@@ -1,7 +0,0 @@
1
- class Configuration
2
- attr_accessor :qservice, :avoid_send
3
-
4
- def initialize
5
- @qservice = nil
6
- end
7
- end