reru 0.0.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 243d309430f62465164a084aa7a2ab478e200168
4
+ data.tar.gz: a8a5a79dc9e4f5703aff04a1bc205f088d11ce71
5
+ SHA512:
6
+ metadata.gz: 072a3060dc1700f3a0cd31c880db9a7bd734706c08d3336e66d6a1e42ef43c96f0894175717fc5e7277592f96692cebef35443ccbf4c2d9bae25ba1cdc60b443
7
+ data.tar.gz: f509f7d351e39817ff6ef8b4af8cb614ac94f679b466b6f60357ca932462c16266c7322cf7e06bf306335730785cc97199d809e61c7f2fc4fb78f3e6d74f3a7a
data/.gitignore ADDED
@@ -0,0 +1,17 @@
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
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in reru.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Andrey Subbotin
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.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Reru
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'reru'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install reru
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/lib/reru.rb ADDED
@@ -0,0 +1,16 @@
1
+ require 'reru/version'
2
+
3
+ module Reru ; end
4
+
5
+ require 'reru/enumerable_stream'
6
+ require 'reru/core_ext'
7
+ require 'reru/dispatcher'
8
+ require 'reru/eos'
9
+ require 'reru/eos_event'
10
+ require 'reru/event'
11
+ require 'reru/log'
12
+ require 'reru/map'
13
+ require 'reru/next'
14
+ require 'reru/select'
15
+ require 'reru/stream'
16
+ require 'reru/stream_consumer'
@@ -0,0 +1,3 @@
1
+ module Reru::CoreExt ; end
2
+
3
+ require 'reru/core_ext/enumerable'
@@ -0,0 +1,15 @@
1
+ require 'active_support'
2
+
3
+ require 'reru/enumerable_stream'
4
+
5
+ module Reru::CoreExt::Enumerable
6
+ extend ActiveSupport::Concern
7
+
8
+ included do
9
+ def as_stream
10
+ Reru::EnumerableStream.new(self)
11
+ end
12
+ end
13
+ end
14
+
15
+ Enumerable.send :include, Reru::CoreExt::Enumerable
@@ -0,0 +1,31 @@
1
+ class Reru::Dispatcher
2
+ def initialize(*sources)
3
+ @sources = sources
4
+ end
5
+
6
+ def each(&sink)
7
+ @sink = sink
8
+ subscribe(*@sources)
9
+ end
10
+
11
+ def subscribe(*sources)
12
+ sources.each do |source|
13
+ @sources << source
14
+ source.add_observer(self)
15
+ end
16
+ end
17
+
18
+ def update(source, event)
19
+ @sink.call(event)
20
+ shutdown(source) if event.eos?
21
+ end
22
+
23
+ def shutdown(source)
24
+ unsubscribe(source)
25
+ end
26
+
27
+ def unsubscribe(source)
28
+ source.delete_observer(self)
29
+ @sources.delete(source)
30
+ end
31
+ end
@@ -0,0 +1,14 @@
1
+ require 'reru/eos'
2
+ require 'reru/next'
3
+ require 'reru/stream'
4
+
5
+ class Reru::EnumerableStream < Reru::Stream
6
+ def initialize(enumerable)
7
+ @enumerable = enumerable
8
+ end
9
+
10
+ def run
11
+ @enumerable.each { |value| emit(Reru::Next.new(value)) }
12
+ emit(Reru::EOS)
13
+ end
14
+ end
data/lib/reru/eos.rb ADDED
@@ -0,0 +1,5 @@
1
+ require 'reru/eos_event'
2
+
3
+ module Reru
4
+ EOS = Reru::EOSEvent.new.freeze
5
+ end
@@ -0,0 +1,6 @@
1
+ require 'reru/event'
2
+
3
+ class Reru::EOSEvent < Reru::Event
4
+ def eos? ; true ; end
5
+ def to_s ; '<Reru::EOS>' ; end
6
+ end
data/lib/reru/event.rb ADDED
@@ -0,0 +1,5 @@
1
+ class Reru::Event
2
+ def eos? ; false ; end
3
+ def next? ; false ; end
4
+ def value? ; false ; end
5
+ end
data/lib/reru/log.rb ADDED
@@ -0,0 +1,8 @@
1
+ require 'reru/stream'
2
+
3
+ class Reru::Log < Reru::Stream
4
+ def emit(event)
5
+ puts event
6
+ super event
7
+ end
8
+ end
data/lib/reru/map.rb ADDED
@@ -0,0 +1,17 @@
1
+ require 'reru/next'
2
+ require 'reru/stream'
3
+
4
+ class Reru::Map < Reru::Stream
5
+ def initialize(source, &block)
6
+ super(source)
7
+ @block = block
8
+ end
9
+
10
+ def emit(event)
11
+ if event.value?
12
+ super Reru::Next.new(@block.call(event.value)) if @block.call(event.value)
13
+ else
14
+ super
15
+ end
16
+ end
17
+ end
data/lib/reru/next.rb ADDED
@@ -0,0 +1,14 @@
1
+ require 'reru/event'
2
+
3
+ class Reru::Next < Reru::Event
4
+ attr_reader :value
5
+
6
+ def initialize(value)
7
+ @value = value
8
+ end
9
+
10
+ def next? ; true ; end
11
+ def value? ; true ; end
12
+
13
+ def to_s ; @value.to_s ; end
14
+ end
@@ -0,0 +1,16 @@
1
+ require 'reru/stream'
2
+
3
+ class Reru::Select < Reru::Stream
4
+ def initialize(source, &block)
5
+ super(source)
6
+ @block = block
7
+ end
8
+
9
+ def emit(event)
10
+ if event.value?
11
+ super if @block.call(event.value)
12
+ else
13
+ super
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,50 @@
1
+ require 'observer'
2
+
3
+ # before we require all of the subclasses, we need to have Stream defined
4
+ class Reru::Stream
5
+ end
6
+
7
+ require 'reru/dispatcher'
8
+ require 'reru/log'
9
+ require 'reru/map'
10
+ require 'reru/select'
11
+ require 'reru/stream_consumer'
12
+
13
+ class Reru::Stream
14
+ include Observable
15
+
16
+ def initialize(*sources)
17
+ Reru::Dispatcher.new(*sources).each { |event| dispatch(event) }
18
+ end
19
+
20
+ def to_es ; self ; end
21
+
22
+ def dispatch(event)
23
+ emit(event)
24
+ end
25
+
26
+ def emit(event)
27
+ changed
28
+ notify_observers(self, event)
29
+ end
30
+
31
+ def merge(right)
32
+ Reru::Stream.new(self, right)
33
+ end
34
+
35
+ def consume(&block)
36
+ Reru::StreamConsumer.new(self, &block)
37
+ end
38
+
39
+ def select(&block)
40
+ Reru::Select.new(self, &block)
41
+ end
42
+
43
+ def map(&block)
44
+ Reru::Map.new(self, &block)
45
+ end
46
+
47
+ def log
48
+ Reru::Log.new(self)
49
+ end
50
+ end
@@ -0,0 +1,11 @@
1
+ class Reru::StreamConsumer
2
+ def initialize(source, &block)
3
+ @block = block
4
+ source.add_observer(self)
5
+ end
6
+
7
+ def update(source, event)
8
+ return if event.eos?
9
+ @block.call(event.value)
10
+ end
11
+ end
@@ -0,0 +1,3 @@
1
+ module Reru
2
+ VERSION = "0.0.1"
3
+ end
data/reru.gemspec ADDED
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'reru/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "reru"
8
+ spec.version = Reru::VERSION
9
+ spec.authors = ["Andrey Subbotin"]
10
+ spec.email = ["andrey@subbotin.me"]
11
+ spec.description = %q{A gem to easily do the Functional Reactive Programming voodoo.}
12
+ spec.summary = %q{A gem to easily do the Functional Reactive Programming voodoo.}
13
+ spec.homepage = "http://github.com/eploko/reru"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
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.3"
22
+ spec.add_development_dependency "rake"
23
+
24
+ spec.add_runtime_dependency "activesupport", "~> 4.0.0rc1"
25
+ end
metadata ADDED
@@ -0,0 +1,107 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: reru
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Andrey Subbotin
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-05-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.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
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: activesupport
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: 4.0.0rc1
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: 4.0.0rc1
55
+ description: A gem to easily do the Functional Reactive Programming voodoo.
56
+ email:
57
+ - andrey@subbotin.me
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - .gitignore
63
+ - Gemfile
64
+ - LICENSE.txt
65
+ - README.md
66
+ - Rakefile
67
+ - lib/reru.rb
68
+ - lib/reru/core_ext.rb
69
+ - lib/reru/core_ext/enumerable.rb
70
+ - lib/reru/dispatcher.rb
71
+ - lib/reru/enumerable_stream.rb
72
+ - lib/reru/eos.rb
73
+ - lib/reru/eos_event.rb
74
+ - lib/reru/event.rb
75
+ - lib/reru/log.rb
76
+ - lib/reru/map.rb
77
+ - lib/reru/next.rb
78
+ - lib/reru/select.rb
79
+ - lib/reru/stream.rb
80
+ - lib/reru/stream_consumer.rb
81
+ - lib/reru/version.rb
82
+ - reru.gemspec
83
+ homepage: http://github.com/eploko/reru
84
+ licenses:
85
+ - MIT
86
+ metadata: {}
87
+ post_install_message:
88
+ rdoc_options: []
89
+ require_paths:
90
+ - lib
91
+ required_ruby_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - '>='
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ required_rubygems_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - '>='
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ requirements: []
102
+ rubyforge_project:
103
+ rubygems_version: 2.0.3
104
+ signing_key:
105
+ specification_version: 4
106
+ summary: A gem to easily do the Functional Reactive Programming voodoo.
107
+ test_files: []