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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 49272a921e41a3b24399455d18e27cd8f23cb453
4
- data.tar.gz: 0f56f30be1a845251d2a72d3523f1f4c4eba7ded
3
+ metadata.gz: 875ea2c2c7e10d5b8504687362859b1b1008b0cd
4
+ data.tar.gz: 7e8862de73f525538eca112dea69200755818f56
5
5
  SHA512:
6
- metadata.gz: 3251595d6cdbea5754efb77ce8351f70774ffd3ed332886044132ae6949307d566e5921684730292e39474d1a72c21b43b95083c2039e149af687866e292e7d7
7
- data.tar.gz: 83bf7b31c82c8ea5e0b0e0d4080ee52694eb539f949b6da5fe41ec873dc42eb2f6e41c3603932bdcd758da3818963772e5c70dde348186ae93c0a159f5e3b93a
6
+ metadata.gz: ba8201d93b3192db25462258219c21f09b94bc21170493d7cf91b7b62ae673c62a56d554b8115c1db297c888c163900d48c600e5c445da5fb77f4a1f0d17c777
7
+ data.tar.gz: efc1bce29b98e0e0822106ab7a6c9bca1bbdf6f297bc4dc1c7d81f58ec0415e9ba90344e8aef90be054cbfbacb858b1ee9d993b0c3ffade6863facb0eb65c255
data/.simplecov CHANGED
@@ -1,3 +1,5 @@
1
+ require 'coveralls'
2
+
1
3
  SimpleCov.start do
2
4
  add_filter "/features/"
3
5
  add_filter "/spec/"
@@ -17,7 +17,7 @@ Here are some ways *you* can contribute:
17
17
  * by closing [issues][]
18
18
  * by reviewing patches
19
19
 
20
- [issues]: https://github.com/cucumber/event-bus/issues
20
+ [issues]: https:///github.com/dg-ratiodata/event-bus/issues
21
21
 
22
22
  ## Submitting an Issue
23
23
 
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.pre3'
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
@@ -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
- [![Build Status](https://travis-ci.org/cucumber/event-bus.svg?branch=master)](https://travis-ci.org/cucumber/event-bus)
4
- [![Code Climate](https://codeclimate.com/github/cucumber/event-bus.svg)](https://codeclimate.com/github/cucumber/event-bus)
5
- [![Coverage Status](https://coveralls.io/repos/cucumber/event-bus/badge.svg?branch=master)](https://coveralls.io/r/cucumber/event-bus?branch=master)
3
+ [![Build Status](https://travis-ci.org/dg-ratiodata/event-bus.svg?branch=master)](https://travis-ci.org/dg-ratiodata/event-bus)
4
+ [![Code Climate](https://codeclimate.com/github/dg-ratiodata/event-bus.svg)](https://codeclimate.com/github/dg-ratiodata/event-bus)
5
+ [![Coverage Status](https://coveralls.io/repos/dg-ratiodata/event-bus/badge.svg?branch=master)](https://coveralls.io/r/dg-ratiodata/event-bus?branch=master)
6
6
  [![Gem Version](https://badge.fury.io/rb/event-bus.svg)](http://badge.fury.io/rb/proxy_pac_rb)
7
7
  [![Downloads](http://img.shields.io/gem/dt/event-bus.svg?style=flat)](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://github.com/cucumber/event-bus/blob/master/features/bus.feature) for an
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://github.com/cucumber/event-bus. This project is intended to be a
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
@@ -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/cucumber/event-bus'
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)/}) }
@@ -2,6 +2,6 @@
2
2
  module Event
3
3
  # Bus
4
4
  class Bus
5
- VERSION = '0.2.1'
5
+ VERSION = '0.2.2'
6
6
  end
7
7
  end
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.1
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: 2015-11-27 00:00:00.000000000 Z
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/cucumber/event-bus
64
+ homepage: https://github.com/dg-ratiodata/event-bus
64
65
  licenses:
65
66
  - MIT
66
67
  metadata: {}