event-bus 0.2.1 → 0.2.2
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 +4 -4
- data/.simplecov +2 -0
- data/CONTRIBUTING.md +1 -1
- data/Gemfile +13 -12
- data/History.md +15 -0
- data/README.md +5 -5
- data/Rakefile +4 -1
- data/event-bus.gemspec +1 -1
- data/lib/event/bus/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 875ea2c2c7e10d5b8504687362859b1b1008b0cd
|
|
4
|
+
data.tar.gz: 7e8862de73f525538eca112dea69200755818f56
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba8201d93b3192db25462258219c21f09b94bc21170493d7cf91b7b62ae673c62a56d554b8115c1db297c888c163900d48c600e5c445da5fb77f4a1f0d17c777
|
|
7
|
+
data.tar.gz: efc1bce29b98e0e0822106ab7a6c9bca1bbdf6f297bc4dc1c7d81f58ec0415e9ba90344e8aef90be054cbfbacb858b1ee9d993b0c3ffade6863facb0eb65c255
|
data/.simplecov
CHANGED
data/CONTRIBUTING.md
CHANGED
data/Gemfile
CHANGED
|
@@ -26,14 +26,14 @@ group :development, :test do
|
|
|
26
26
|
gem 'pry', '~>0.9.12'
|
|
27
27
|
end
|
|
28
28
|
|
|
29
|
-
gem 'aruba', '~>0.11.
|
|
29
|
+
gem 'aruba', '~>0.11.2'
|
|
30
30
|
|
|
31
31
|
# Run development tasks
|
|
32
|
-
gem 'rake', '~> 10.4.2'
|
|
32
|
+
gem 'rake', '~> 10.4.2', require: false
|
|
33
33
|
|
|
34
34
|
if RUBY_VERSION >= '2.0.0'
|
|
35
35
|
# Lint travis yaml
|
|
36
|
-
gem 'travis-yaml'
|
|
36
|
+
gem 'travis-yaml', require: false
|
|
37
37
|
|
|
38
38
|
# Reporting
|
|
39
39
|
gem 'bcat', '~> 0.6.2'
|
|
@@ -41,38 +41,39 @@ group :development, :test do
|
|
|
41
41
|
end
|
|
42
42
|
|
|
43
43
|
# Code Coverage
|
|
44
|
-
gem 'simplecov', '~> 0.10'
|
|
44
|
+
gem 'simplecov', '~> 0.10', require: false
|
|
45
45
|
|
|
46
46
|
# Test api
|
|
47
|
-
gem 'rspec', '~> 3.4'
|
|
48
|
-
gem 'fuubar', '~> 2.0.0'
|
|
47
|
+
gem 'rspec', '~> 3.4', require: false
|
|
48
|
+
gem 'fuubar', '~> 2.0.0', require: false
|
|
49
|
+
gem 'coveralls', '~> 0.8.10', require: false
|
|
49
50
|
|
|
50
51
|
# using platform for this make bundler complain about the same gem given
|
|
51
52
|
# twice
|
|
52
53
|
if RUBY_VERSION < '1.9.3'
|
|
53
|
-
gem 'cucumber', '~> 1.3.20'
|
|
54
|
+
gem 'cucumber', '~> 1.3.20', require: false
|
|
54
55
|
else
|
|
55
|
-
gem 'cucumber', '~> 2.0'
|
|
56
|
+
gem 'cucumber', '~> 2.0', require: false
|
|
56
57
|
end
|
|
57
58
|
|
|
58
59
|
if RUBY_VERSION >= '1.9.3'
|
|
59
60
|
# Make aruba compliant to ruby community guide
|
|
60
|
-
gem 'rubocop', '~> 0.32.0'
|
|
61
|
+
gem 'rubocop', '~> 0.32.0', require: false
|
|
61
62
|
end
|
|
62
63
|
|
|
63
64
|
gem 'cucumber-pro', '~> 0.0' if RUBY_VERSION >= '1.9.3'
|
|
64
65
|
|
|
65
66
|
if RUBY_VERSION >= '1.9.3'
|
|
66
67
|
# License compliance
|
|
67
|
-
gem 'license_finder', '~> 2.0.4'
|
|
68
|
+
gem 'license_finder', '~> 2.0.4', require: false
|
|
68
69
|
end
|
|
69
70
|
|
|
70
71
|
if RUBY_VERSION >= '1.9.3'
|
|
71
72
|
# Upload documentation
|
|
72
|
-
gem 'relish', '~> 0.7.1'
|
|
73
|
+
gem 'relish', '~> 0.7.1', require: false
|
|
73
74
|
end
|
|
74
75
|
|
|
75
|
-
gem 'minitest', '~> 5.8.0'
|
|
76
|
+
gem 'minitest', '~> 5.8.0', require: false
|
|
76
77
|
end
|
|
77
78
|
|
|
78
79
|
platforms :rbx do
|
data/History.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
## [v0.2.2](https:///github.com/dg-ratiodata/aruba/compare/v0.2.1...v0.2.2)
|
|
2
|
+
|
|
3
|
+
* Update links to point to the correct source repository
|
|
4
|
+
|
|
5
|
+
## [v0.2.1](https:///github.com/dg-ratiodata/aruba/compare/v0.2.0...v0.2.1)
|
|
6
|
+
|
|
7
|
+
* Make `event-bus` compatible with ruby `< 1.9.3`
|
|
8
|
+
|
|
9
|
+
## [v0.2.0](https:///github.com/dg-ratiodata/aruba/compare/v0.1.0...v0.2.0)
|
|
10
|
+
|
|
11
|
+
* Register a handler to multiple events at once
|
|
12
|
+
|
|
13
|
+
## [v0.1.0]()
|
|
14
|
+
|
|
15
|
+
* Initial Release
|
data/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Event Bus
|
|
2
2
|
|
|
3
|
-
[](https://travis-ci.org/dg-ratiodata/event-bus)
|
|
4
|
+
[](https://codeclimate.com/github/dg-ratiodata/event-bus)
|
|
5
|
+
[](https://coveralls.io/r/dg-ratiodata/event-bus?branch=master)
|
|
6
6
|
[](http://badge.fury.io/rb/proxy_pac_rb)
|
|
7
7
|
[](http://rubygems.org/gems/proxy_pac_rb)
|
|
8
8
|
|
|
@@ -27,7 +27,7 @@ Or install it yourself as:
|
|
|
27
27
|
|
|
28
28
|
## Usage
|
|
29
29
|
|
|
30
|
-
Please have a look at [features/bus.feature](https
|
|
30
|
+
Please have a look at [features/bus.feature](https:///github.com/dg-ratiodata/event-bus/blob/master/features/bus.feature) for an
|
|
31
31
|
example application.
|
|
32
32
|
|
|
33
33
|
## Development
|
|
@@ -41,7 +41,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
41
41
|
## Contributing
|
|
42
42
|
|
|
43
43
|
Bug reports and pull requests are welcome on GitHub at
|
|
44
|
-
https
|
|
44
|
+
https:///github.com/dg-ratiodata/event-bus. This project is intended to be a
|
|
45
45
|
safe, welcoming space for collaboration, and contributors are expected to
|
|
46
46
|
adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
|
|
47
47
|
|
data/Rakefile
CHANGED
|
@@ -7,6 +7,9 @@ namespace :gem do
|
|
|
7
7
|
require 'bundler/gem_tasks'
|
|
8
8
|
end
|
|
9
9
|
|
|
10
|
+
require 'coveralls/rake/task'
|
|
11
|
+
Coveralls::RakeTask.new
|
|
12
|
+
|
|
10
13
|
require 'cucumber/rake/task'
|
|
11
14
|
|
|
12
15
|
Cucumber::Rake::Task.new do |t|
|
|
@@ -53,6 +56,6 @@ else
|
|
|
53
56
|
end
|
|
54
57
|
|
|
55
58
|
desc 'Run tests, both RSpec and Cucumber'
|
|
56
|
-
task :test => ['travis:lint', :rubocop, :spec, :cucumber, :cucumber_wip]
|
|
59
|
+
task :test => ['travis:lint', :rubocop, :spec, :cucumber, :cucumber_wip, 'coveralls:push']
|
|
57
60
|
|
|
58
61
|
task :default => :test
|
data/event-bus.gemspec
CHANGED
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
|
|
12
12
|
spec.summary = 'Notify subscribers about event'
|
|
13
13
|
spec.description = 'This gem notifies subscribers about event'
|
|
14
|
-
spec.homepage = 'https://github.com/
|
|
14
|
+
spec.homepage = 'https://github.com/dg-ratiodata/event-bus'
|
|
15
15
|
spec.license = 'MIT'
|
|
16
16
|
|
|
17
17
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
data/lib/event/bus/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: event-bus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dennis Günnewig
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-01-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -39,6 +39,7 @@ files:
|
|
|
39
39
|
- CODE_OF_CONDUCT.md
|
|
40
40
|
- CONTRIBUTING.md
|
|
41
41
|
- Gemfile
|
|
42
|
+
- History.md
|
|
42
43
|
- LICENSE
|
|
43
44
|
- LICENSE.txt
|
|
44
45
|
- README.md
|
|
@@ -60,7 +61,7 @@ files:
|
|
|
60
61
|
- script/console
|
|
61
62
|
- script/setup
|
|
62
63
|
- script/test
|
|
63
|
-
homepage: https://github.com/
|
|
64
|
+
homepage: https://github.com/dg-ratiodata/event-bus
|
|
64
65
|
licenses:
|
|
65
66
|
- MIT
|
|
66
67
|
metadata: {}
|