eventador 1.0.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 68588a681356589d5e647e535ced1dae50b9e577
4
+ data.tar.gz: 15f21a68add35277f591658193075a6be86c71e8
5
+ SHA512:
6
+ metadata.gz: 962e7f55ec30bf361df0a9883da183a1ab78088b7ad2bddf2053c7a567c4ada1060fe9d6e4237e8ccb0b9fc417b550fe2ababe58a9d4831035fd3364560518a9
7
+ data.tar.gz: be624d69695f2b5dac592c6cde25cdf72a83e1e2977e05ecd2b2ede1487cb7bb8c363b24d8f70f4281e15f2fd70fc4dcffaf4d7f0a030ffe831a56b63d75c9d0
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
@@ -0,0 +1,9 @@
1
+ language: ruby
2
+ before_install: gem install bundler
3
+ rvm:
4
+ - ree
5
+ - 1.9.3
6
+ - jruby-18mode # JRuby in 1.8 mode
7
+ - jruby-19mode # JRuby in 1.9 mode
8
+ - rbx-2.2.6
9
+ - 1.8.7
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in eventador.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Daniel Huckstep
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,45 @@
1
+ # Eventador
2
+
3
+ Simple callbacks/lightweight events on procs.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'eventador'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install eventador
18
+
19
+ ## Usage
20
+
21
+ def thing(&block)
22
+ if ok?
23
+ block.callback(:ok, data)
24
+ else
25
+ block.callback(:error)
26
+ end
27
+ end
28
+
29
+ thing do |on|
30
+ on.ok do |payload|
31
+ ...
32
+ end
33
+
34
+ on.error do
35
+ ...
36
+ end
37
+ end
38
+
39
+ ## Contributing
40
+
41
+ 1. Fork it ( https://github.com/[my-github-username]/eventador/fork )
42
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
43
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
44
+ 4. Push to the branch (`git push origin my-new-feature`)
45
+ 5. Create a new Pull Request
@@ -0,0 +1,10 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rake/testtask'
3
+
4
+ Rake::TestTask.new do |t|
5
+ t.libs << 'spec'
6
+ t.pattern = 'spec/*_spec.rb'
7
+ end
8
+
9
+
10
+ task :default => :test
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'eventador/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "eventador"
8
+ spec.version = Eventador::VERSION
9
+ spec.authors = ['Daniel Huckstep']
10
+ spec.email = ['darkhelmet@darkhelmetlive.com']
11
+ spec.summary = %q{Simple callbacks/lightweight events on procs.}
12
+ spec.description = %q{Simple callbacks/lightweight events on procs.}
13
+ spec.homepage = ''
14
+ spec.license = 'MIT'
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ['lib']
20
+
21
+ spec.add_development_dependency 'bundler', '~> 1.6'
22
+ spec.add_development_dependency 'rake'
23
+ spec.add_development_dependency 'minitest', '~> 5.0'
24
+ end
@@ -0,0 +1,28 @@
1
+ require 'eventador/version'
2
+
3
+ module Eventador
4
+ Callback = Struct.new(:args) do
5
+ def method_missing(method, *args, &block)
6
+ false
7
+ end
8
+ end
9
+
10
+ def callback(callable, *rest)
11
+ ret = nil
12
+ @callbacks ||= ::Hash.new do |h, method_name|
13
+ h[method_name] = Class.new(Callback) do
14
+ define_method(method_name) do |&block|
15
+ ret = block.nil? ? true : block.call(*args)
16
+ end
17
+ define_method("#{method_name}?") { true }
18
+ define_method(:to_s) { "Callback(#{method_name})" }
19
+ end
20
+ end
21
+ call(@callbacks[callable].new(rest))
22
+ ret
23
+ end
24
+ end
25
+
26
+ class Proc
27
+ include Eventador
28
+ end
@@ -0,0 +1,3 @@
1
+ module Eventador
2
+ VERSION = '1.0.0'
3
+ end
@@ -0,0 +1,61 @@
1
+ require 'spec_helper'
2
+
3
+ describe Proc do
4
+ before do
5
+ @flag = Minitest::Mock.new
6
+ @flag.expect(:notify, :ok)
7
+ end
8
+
9
+ after do
10
+ @flag.verify
11
+ end
12
+
13
+ def cb(&block)
14
+ block.callback(:test)
15
+ end
16
+
17
+ it 'should callback' do
18
+ cb do |on|
19
+ on.test { @flag.notify }
20
+ end
21
+ end
22
+
23
+ def cba(a, &block)
24
+ block.callback(:test, a)
25
+ end
26
+
27
+ it 'should callback with args' do
28
+ a = Object.new
29
+ cba(a) do |on|
30
+ on.test do |arg|
31
+ @flag.notify
32
+ arg.must_equal(a)
33
+ end
34
+ end
35
+ end
36
+
37
+ def cbu(&block)
38
+ block.callback(:test)
39
+ block.callback(:unused)
40
+ end
41
+
42
+ it 'should not worry about unhandled callbacks' do
43
+ cbu do |on|
44
+ on.test { @flag.notify }
45
+ end
46
+ end
47
+
48
+ def cbr(a, &block)
49
+ block.callback(:add, a)
50
+ end
51
+
52
+ it 'should return values' do
53
+ ret = cbr(1) do |on|
54
+ on.add do |a|
55
+ @flag.notify
56
+ a + 1
57
+ end
58
+ end
59
+ ret.must_equal(2)
60
+ end
61
+ end
@@ -0,0 +1,3 @@
1
+ require 'minitest/autorun'
2
+ require 'minitest/mock'
3
+ require 'eventador'
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: eventador
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Daniel Huckstep
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-04-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ description: Simple callbacks/lightweight events on procs.
56
+ email:
57
+ - darkhelmet@darkhelmetlive.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".travis.yml"
64
+ - Gemfile
65
+ - LICENSE.txt
66
+ - README.md
67
+ - Rakefile
68
+ - eventador.gemspec
69
+ - lib/eventador.rb
70
+ - lib/eventador/version.rb
71
+ - spec/proc_spec.rb
72
+ - spec/spec_helper.rb
73
+ homepage: ''
74
+ licenses:
75
+ - MIT
76
+ metadata: {}
77
+ post_install_message:
78
+ rdoc_options: []
79
+ require_paths:
80
+ - lib
81
+ required_ruby_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ requirements: []
92
+ rubyforge_project:
93
+ rubygems_version: 2.2.2
94
+ signing_key:
95
+ specification_version: 4
96
+ summary: Simple callbacks/lightweight events on procs.
97
+ test_files:
98
+ - spec/proc_spec.rb
99
+ - spec/spec_helper.rb