railjet-bus 1.0.pre

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 541c471ebea23d302b0f0456df4bccf06aebe3b0
4
+ data.tar.gz: cbd9b353826b67f1483aba2891b578020782a57f
5
+ SHA512:
6
+ metadata.gz: eaf53e27b9616fe61d0e228b269f80252f043d9f1b2262e04b4e966e1fbd271c50f0112610b8ad1158a7bb5da287e404d44886570244437bcc1e01672febe40e
7
+ data.tar.gz: 1b38c2faf7dbaa62e0a65283eb3f57e1fb31bc240f3f8d3fb1e1c57630d496c271ad29b91c599df1f69ab9b9cb769dc26b45ab5d5c38d93b729db65b3993b3c3
data/.gitignore ADDED
@@ -0,0 +1,44 @@
1
+ *.rbc
2
+ capybara-*.html
3
+ /log
4
+ /tmp
5
+ /db/*.sqlite3
6
+ /db/*.sqlite3-journal
7
+ /public/system
8
+ /coverage/
9
+ /spec/tmp
10
+ **.orig
11
+ rerun.txt
12
+ pickle-email-*.html
13
+
14
+ # TODO Comment out these rules if you are OK with secrets being uploaded to the repo
15
+ config/initializers/secret_token.rb
16
+ config/secrets.yml
17
+
18
+ # dotenv
19
+ # TODO Comment out this rule if environment variables can be committed
20
+ .env
21
+
22
+ ## Environment normalization:
23
+ /.bundle
24
+ /vendor/bundle
25
+
26
+ # these should all be checked in to normalize the environment:
27
+ # Gemfile.lock, .ruby-version, .ruby-gemset
28
+
29
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
30
+ .rvmrc
31
+
32
+ # if using bower-rails ignore default bower_components path bower.json files
33
+ /vendor/assets/bower_components
34
+ *.bowerrc
35
+ bower.json
36
+
37
+ # Ignore pow environment settings
38
+ .powenv
39
+
40
+ # Ignore Byebug command history file.
41
+ .byebug_history
42
+
43
+ # we don't need the gems in the repo
44
+ /pkg/*.gem
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --require spec_helper
2
+ --format documentation
data/.ruby-gemset ADDED
@@ -0,0 +1,2 @@
1
+ railjet
2
+ -global
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.3.3
data/.travis.yml ADDED
@@ -0,0 +1,2 @@
1
+ ---
2
+ language: ruby
data/Gemfile ADDED
@@ -0,0 +1,10 @@
1
+ source 'https://rubygems.org'
2
+
3
+ group :test do
4
+ gem "wisper-testing", git: "https://github.com/zlw/wisper-testing.git", branch: "inline_order_fix", ref: "2bfd8aa"
5
+ end
6
+
7
+
8
+ # Specify your gem's dependencies in railjet-bus.gemspec
9
+ gemspec
10
+
data/Gemfile.lock ADDED
@@ -0,0 +1,110 @@
1
+ GIT
2
+ remote: https://github.com/zlw/wisper-testing.git
3
+ revision: 2bfd8aa6b8da2df9dce1eab990590fb3de40968c
4
+ ref: 2bfd8aa
5
+ branch: inline_order_fix
6
+ specs:
7
+ wisper-testing (0.1.0)
8
+ wisper (~> 2.0)
9
+
10
+ PATH
11
+ remote: .
12
+ specs:
13
+ railjet-bus (1.0.pre)
14
+ railjet (~> 2.0.pre2)
15
+ wisper (~> 2.0)
16
+ wisper-sidekiq (~> 0.0.1)
17
+
18
+ GEM
19
+ remote: https://rubygems.org/
20
+ specs:
21
+ activemodel (5.1.4)
22
+ activesupport (= 5.1.4)
23
+ activesupport (5.1.4)
24
+ concurrent-ruby (~> 1.0, >= 1.0.2)
25
+ i18n (~> 0.7)
26
+ minitest (~> 5.1)
27
+ tzinfo (~> 1.1)
28
+ axiom-types (0.1.1)
29
+ descendants_tracker (~> 0.0.4)
30
+ ice_nine (~> 0.11.0)
31
+ thread_safe (~> 0.3, >= 0.3.1)
32
+ coderay (1.1.2)
33
+ coercible (1.0.0)
34
+ descendants_tracker (~> 0.0.1)
35
+ concurrent-ruby (1.0.5)
36
+ connection_pool (2.2.1)
37
+ descendants_tracker (0.0.4)
38
+ thread_safe (~> 0.3, >= 0.3.1)
39
+ diff-lcs (1.3)
40
+ equalizer (0.0.11)
41
+ i18n (0.9.0)
42
+ concurrent-ruby (~> 1.0)
43
+ ice_nine (0.11.2)
44
+ method_source (0.9.0)
45
+ minitest (5.10.3)
46
+ pry (0.11.1)
47
+ coderay (~> 1.1.0)
48
+ method_source (~> 0.9.0)
49
+ rack (2.0.1)
50
+ rack-protection (1.5.3)
51
+ rack
52
+ railjet (2.0.pre2)
53
+ activemodel (> 4)
54
+ activesupport (> 4)
55
+ validates_timeliness (~> 4.0.2)
56
+ virtus (~> 1.0.2)
57
+ rake (11.3.0)
58
+ rake-version (1.0.0)
59
+ rake (~> 11.1)
60
+ redis (3.3.3)
61
+ rspec (3.6.0)
62
+ rspec-core (~> 3.6.0)
63
+ rspec-expectations (~> 3.6.0)
64
+ rspec-mocks (~> 3.6.0)
65
+ rspec-core (3.6.0)
66
+ rspec-support (~> 3.6.0)
67
+ rspec-expectations (3.6.0)
68
+ diff-lcs (>= 1.2.0, < 2.0)
69
+ rspec-support (~> 3.6.0)
70
+ rspec-mocks (3.6.0)
71
+ diff-lcs (>= 1.2.0, < 2.0)
72
+ rspec-support (~> 3.6.0)
73
+ rspec-support (3.6.0)
74
+ sidekiq (4.2.10)
75
+ concurrent-ruby (~> 1.0)
76
+ connection_pool (~> 2.2, >= 2.2.0)
77
+ rack-protection (>= 1.5.0)
78
+ redis (~> 3.2, >= 3.2.1)
79
+ thread_safe (0.3.6)
80
+ timeliness (0.3.8)
81
+ tzinfo (1.2.3)
82
+ thread_safe (~> 0.1)
83
+ validates_timeliness (4.0.2)
84
+ timeliness (~> 0.3.7)
85
+ virtus (1.0.5)
86
+ axiom-types (~> 0.1)
87
+ coercible (~> 1.0)
88
+ descendants_tracker (~> 0.0, >= 0.0.3)
89
+ equalizer (~> 0.0, >= 0.0.9)
90
+ wisper (2.0.0)
91
+ wisper-rspec (0.0.3)
92
+ wisper-sidekiq (0.0.1)
93
+ sidekiq
94
+ wisper
95
+
96
+ PLATFORMS
97
+ ruby
98
+
99
+ DEPENDENCIES
100
+ bundler (~> 1.11)
101
+ pry
102
+ railjet-bus!
103
+ rake (~> 11.0)
104
+ rake-version (~> 1.0)
105
+ rspec (~> 3.0)
106
+ wisper-rspec (~> 0.0.3)
107
+ wisper-testing!
108
+
109
+ BUNDLED WITH
110
+ 1.14.5
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2017 Nedap
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # RailjetBus, Dependency Inversion using Event Bus
2
+
3
+
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'railjet-bus'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install railjet-bus
20
+
21
+ ## Usage
22
+
23
+ ## Development
24
+
25
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
26
+
27
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, run rake task to bump the version "rake version:bump:<major,minor,patch>" and then run "rake release" to release it to rubygems
28
+
29
+ ## Contributing
30
+
31
+ Bug reports and pull requests are welcome on GitHub at [https://github.com/nedap/railjet-bus](https://github.com/nedap/railjet-bus).
32
+
data/Rakefile ADDED
@@ -0,0 +1,17 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ # RSpec rake tasks
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+ task :default => :spec
8
+
9
+ # Version rake tasks
10
+ require 'rake-version'
11
+
12
+ RakeVersion::Tasks.new do |v|
13
+ v.copy 'lib/railjet/bus/version.rb'
14
+ end
15
+
16
+ # Rubygems rake tasks
17
+ require "bundler/gem_tasks"
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 1.0.pre
data/bin/bundler ADDED
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'bundler' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("bundler", "bundler")
data/bin/coderay ADDED
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'coderay' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("coderay", "coderay")
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "railjet-bus"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/htmldiff ADDED
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'htmldiff' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("diff-lcs", "htmldiff")
data/bin/ldiff ADDED
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'ldiff' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("diff-lcs", "ldiff")
data/bin/pry ADDED
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'pry' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("pry", "pry")
data/bin/rake ADDED
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'rake' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("rake", "rake")
data/bin/rspec ADDED
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'rspec' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("rspec-core", "rspec")
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,21 @@
1
+ begin
2
+ require "wisper/testing"
3
+ rescue LoadError
4
+ puts "Railjet::Bus::Testing will only work in test environment"
5
+ end
6
+
7
+ module Railjet
8
+ class Bus
9
+ module Testing
10
+ class << self
11
+ delegate :adapter, to: Bus
12
+ delegate :clear, to: :adapter
13
+ delegate :inline, to: :testing
14
+
15
+ def testing
16
+ adapter::Testing
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,5 @@
1
+ module Railjet
2
+ class Bus
3
+ VERSION = "1.0.pre"
4
+ end
5
+ end
@@ -0,0 +1,35 @@
1
+ module Railjet
2
+ module Publisher
3
+ def self.included(klass)
4
+ raise "Railjet::Bus adapter must be specified" unless Railjet::Bus.adapter
5
+
6
+ klass.__send__(:include, Railjet::Bus.publisher)
7
+ klass.__send__(:include, CustomSubscription)
8
+ end
9
+
10
+ module CustomSubscription
11
+ def subscribe(event, subscriber)
12
+ super(subscriber, on: event, prefix: true)
13
+ end
14
+ end
15
+ end
16
+
17
+ class Bus
18
+ class << self
19
+ attr_accessor :adapter
20
+ delegate :publisher, to: :adapter
21
+ end
22
+
23
+ def initialize(adapter: self.class.adapter)
24
+ @bus = adapter or raise ArgumentError, "Railjet::Bus adapter must be specified"
25
+ end
26
+
27
+ def subscribe(event, subscriber)
28
+ bus.subscribe(subscriber, on: event, prefix: true, async: true)
29
+ end
30
+
31
+ private
32
+
33
+ attr_reader :bus
34
+ end
35
+ end
@@ -0,0 +1,7 @@
1
+ require "railjet"
2
+ require "railjet/bus"
3
+
4
+ require "wisper"
5
+ require "wisper/sidekiq"
6
+
7
+ Railjet::Bus.adapter = Wisper
@@ -0,0 +1,33 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "railjet/bus/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "railjet-bus"
8
+ spec.version = Railjet::Bus::VERSION
9
+ spec.authors = ["Krzysztof Zalewski"]
10
+ spec.email = ["zlw.zalewski@gmail.com"]
11
+
12
+ spec.summary = %q{Event Bus plugin for Railjet}
13
+ spec.description = %q{Let's inverse those dependencies}
14
+ spec.homepage = "https://github.com/nedap/railjet-bus"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_dependency "railjet", "~> 2.0.pre2"
23
+ spec.add_dependency "wisper", "~> 2.0"
24
+ spec.add_dependency "wisper-sidekiq", "~> 0.0.1"
25
+
26
+ spec.add_development_dependency "bundler", "~> 1.11"
27
+ spec.add_development_dependency "rake", "~> 11.0"
28
+ spec.add_development_dependency "rspec", "~> 3.0"
29
+ spec.add_development_dependency "pry"
30
+ spec.add_development_dependency "rake-version", "~> 1.0"
31
+ spec.add_development_dependency "wisper-testing", "~> 0.1.0"
32
+ spec.add_development_dependency "wisper-rspec", "~> 0.0.3"
33
+ end
metadata ADDED
@@ -0,0 +1,209 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: railjet-bus
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.pre
5
+ platform: ruby
6
+ authors:
7
+ - Krzysztof Zalewski
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-11-02 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: railjet
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 2.0.pre2
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 2.0.pre2
27
+ - !ruby/object:Gem::Dependency
28
+ name: wisper
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: wisper-sidekiq
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 0.0.1
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 0.0.1
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.11'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.11'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '11.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '11.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '3.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '3.0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: pry
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rake-version
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '1.0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '1.0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: wisper-testing
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: 0.1.0
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: 0.1.0
139
+ - !ruby/object:Gem::Dependency
140
+ name: wisper-rspec
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: 0.0.3
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: 0.0.3
153
+ description: Let's inverse those dependencies
154
+ email:
155
+ - zlw.zalewski@gmail.com
156
+ executables: []
157
+ extensions: []
158
+ extra_rdoc_files: []
159
+ files:
160
+ - ".gitignore"
161
+ - ".rspec"
162
+ - ".ruby-gemset"
163
+ - ".ruby-version"
164
+ - ".travis.yml"
165
+ - Gemfile
166
+ - Gemfile.lock
167
+ - LICENSE.txt
168
+ - README.md
169
+ - Rakefile
170
+ - VERSION
171
+ - bin/bundler
172
+ - bin/coderay
173
+ - bin/console
174
+ - bin/htmldiff
175
+ - bin/ldiff
176
+ - bin/pry
177
+ - bin/rake
178
+ - bin/rspec
179
+ - bin/setup
180
+ - lib/railjet-bus.rb
181
+ - lib/railjet/bus.rb
182
+ - lib/railjet/bus/testing.rb
183
+ - lib/railjet/bus/version.rb
184
+ - railjet-bus.gemspec
185
+ homepage: https://github.com/nedap/railjet-bus
186
+ licenses:
187
+ - MIT
188
+ metadata: {}
189
+ post_install_message:
190
+ rdoc_options: []
191
+ require_paths:
192
+ - lib
193
+ required_ruby_version: !ruby/object:Gem::Requirement
194
+ requirements:
195
+ - - ">="
196
+ - !ruby/object:Gem::Version
197
+ version: '0'
198
+ required_rubygems_version: !ruby/object:Gem::Requirement
199
+ requirements:
200
+ - - ">"
201
+ - !ruby/object:Gem::Version
202
+ version: 1.3.1
203
+ requirements: []
204
+ rubyforge_project:
205
+ rubygems_version: 2.6.11
206
+ signing_key:
207
+ specification_version: 4
208
+ summary: Event Bus plugin for Railjet
209
+ test_files: []