rx 0.0.2 → 0.0.3
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/.travis.yml +3 -0
 - data/Gemfile +1 -1
 - data/examples/aggregate.rb +3 -3
 - data/examples/amb.rb +4 -4
 - data/examples/ambproto.rb +3 -3
 - data/examples/and.rb +4 -4
 - data/examples/as_observable.rb +2 -2
 - data/examples/average.rb +3 -3
 - data/examples/buffer_with_count.rb +3 -3
 - data/examples/buffer_with_time.rb +3 -3
 - data/examples/case.rb +5 -5
 - data/examples/catch.rb +4 -4
 - data/examples/catchproto.rb +5 -5
 - data/examples/combine_latest.rb +4 -4
 - data/examples/combine_latestproto.rb +3 -3
 - data/examples/concat.rb +4 -4
 - data/examples/concat_all.rb +3 -3
 - data/examples/concat_map.rb +4 -4
 - data/examples/concat_map_observer.rb +5 -5
 - data/examples/concatproto.rb +3 -3
 - data/examples/connect.rb +3 -3
 - data/examples/contains.rb +3 -3
 - data/examples/count.rb +3 -3
 - data/examples/create.rb +4 -4
 - data/examples/debounce.rb +3 -3
 - data/examples/default_if_empty.rb +3 -3
 - data/examples/defer.rb +3 -3
 - data/examples/delay.rb +3 -3
 - data/examples/delay_with_selector.rb +6 -6
 - data/examples/dematerialize.rb +4 -4
 - data/examples/disposable.rb +3 -3
 - data/examples/distinct.rb +3 -3
 - data/examples/distinct_until_changed.rb +3 -3
 - data/examples/do.rb +4 -4
 - data/examples/empty.rb +2 -2
 - data/examples/for.rb +3 -3
 - data/examples/fork_join.rb +6 -6
 - data/examples/from.rb +7 -7
 - data/examples/from_array.rb +2 -2
 - data/examples/from_callback.rb +2 -2
 - data/examples/generate.rb +2 -2
 - data/examples/group_join.rb +5 -5
 - data/examples/if.rb +6 -6
 - data/examples/intervals.rb +2 -2
 - data/examples/merge.rb +4 -4
 - data/examples/merge_all.rb +3 -3
 - data/examples/multicast.rb +4 -4
 - data/examples/never.rb +2 -2
 - data/examples/of.rb +2 -2
 - data/examples/on_error_resume_next.rb +5 -5
 - data/examples/pairs.rb +2 -2
 - data/examples/publish.rb +5 -5
 - data/examples/range.rb +2 -2
 - data/examples/reduce.rb +2 -2
 - data/examples/repeat.rb +2 -2
 - data/examples/return.rb +2 -2
 - data/examples/scan.rb +3 -3
 - data/examples/start.rb +3 -3
 - data/examples/throw.rb +3 -3
 - data/examples/time_intervals.rb +2 -2
 - data/examples/timer.rb +2 -2
 - data/examples/timestamp.rb +2 -2
 - data/examples/to_a.rb +2 -2
 - data/examples/to_async.rb +2 -2
 - data/examples/using.rb +3 -3
 - data/examples/when.rb +4 -4
 - data/examples/while.rb +3 -3
 - data/examples/window_with_time.rb +3 -3
 - data/examples/zip.rb +3 -3
 - data/examples/zip_array.rb +3 -3
 - data/lib/core_ext/enumerable.rb +3 -3
 - data/lib/{rx_ruby.rb → rx.rb} +11 -11
 - data/lib/{rx_ruby → rx}/concurrency/async_lock.rb +1 -1
 - data/lib/{rx_ruby → rx}/concurrency/current_thread_scheduler.rb +6 -6
 - data/lib/{rx_ruby → rx}/concurrency/default_scheduler.rb +8 -8
 - data/lib/{rx_ruby → rx}/concurrency/historical_scheduler.rb +3 -3
 - data/lib/{rx_ruby → rx}/concurrency/immediate_scheduler.rb +4 -4
 - data/lib/{rx_ruby → rx}/concurrency/local_scheduler.rb +3 -3
 - data/lib/{rx_ruby → rx}/concurrency/periodic_scheduler.rb +1 -1
 - data/lib/{rx_ruby → rx}/concurrency/scheduled_item.rb +2 -2
 - data/lib/{rx_ruby → rx}/concurrency/scheduler.rb +1 -1
 - data/lib/{rx_ruby → rx}/concurrency/virtual_time_scheduler.rb +4 -4
 - data/lib/{rx_ruby → rx}/core/async_lock_observer.rb +4 -4
 - data/lib/{rx_ruby → rx}/core/auto_detach_observer.rb +4 -4
 - data/lib/{rx_ruby → rx}/core/checked_observer.rb +2 -2
 - data/lib/{rx_ruby → rx}/core/notification.rb +3 -3
 - data/lib/{rx_ruby → rx}/core/observable.rb +6 -6
 - data/lib/{rx_ruby → rx}/core/observe_on_observer.rb +2 -2
 - data/lib/{rx_ruby → rx}/core/observer.rb +1 -1
 - data/lib/{rx_ruby → rx}/core/scheduled_observer.rb +3 -3
 - data/lib/{rx_ruby → rx}/core/synchronized_observer.rb +3 -3
 - data/lib/{rx_ruby → rx}/core/time_interval.rb +1 -1
 - data/lib/{rx_ruby → rx}/internal/priority_queue.rb +1 -1
 - data/lib/{rx_ruby → rx}/internal/util.rb +1 -1
 - data/lib/{rx_ruby → rx}/joins/active_plan.rb +1 -1
 - data/lib/{rx_ruby → rx}/joins/join_observer.rb +1 -1
 - data/lib/{rx_ruby → rx}/joins/pattern.rb +1 -1
 - data/lib/{rx_ruby → rx}/joins/plan.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/connectable_observable.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/_observable_timer_date_and_period.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/_observable_timer_time_span.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/_observable_timer_time_span_and_period.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/aggregate.rb +2 -2
 - data/lib/{rx_ruby → rx}/linq/observable/and.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/case.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/concat_all.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/concat_map.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/concat_map_observer.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/contains.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/debounce.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/delay.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/delay_with_selector.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/do.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/for.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/fork_join.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/from.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/group_join.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/if.rb +1 -1
 - data/lib/rx/linq/observable/interval.rb +5 -0
 - data/lib/{rx_ruby → rx}/linq/observable/multicast.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/of.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/pairs.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/pluck.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/publish.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/start.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/time_interval.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/timer.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/timestamp.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/to_async.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/when.rb +1 -1
 - data/lib/{rx_ruby → rx}/linq/observable/while.rb +1 -1
 - data/lib/{rx_ruby → rx}/operators/aggregates.rb +31 -31
 - data/lib/{rx_ruby → rx}/operators/creation.rb +6 -6
 - data/lib/{rx_ruby → rx}/operators/multiple.rb +22 -23
 - data/lib/{rx_ruby → rx}/operators/single.rb +14 -14
 - data/lib/{rx_ruby → rx}/operators/standard_query_operators.rb +6 -6
 - data/lib/{rx_ruby → rx}/operators/synchronization.rb +8 -8
 - data/lib/{rx_ruby → rx}/operators/time.rb +12 -12
 - data/lib/{rx_ruby → rx}/subjects/async_subject.rb +4 -4
 - data/lib/{rx_ruby → rx}/subjects/behavior_subject.rb +3 -3
 - data/lib/{rx_ruby → rx}/subjects/replay_subject.rb +5 -5
 - data/lib/{rx_ruby → rx}/subjects/subject.rb +4 -4
 - data/lib/{rx_ruby → rx}/subjects/subject_extensions.rb +3 -3
 - data/lib/{rx_ruby → rx}/subscriptions/composite_subscription.rb +1 -1
 - data/lib/{rx_ruby → rx}/subscriptions/ref_count_subscription.rb +2 -2
 - data/lib/{rx_ruby → rx}/subscriptions/scheduled_subscription.rb +1 -1
 - data/lib/{rx_ruby → rx}/subscriptions/serial_subscription.rb +1 -1
 - data/lib/{rx_ruby → rx}/subscriptions/single_assignment_subscription.rb +1 -1
 - data/lib/{rx_ruby → rx}/subscriptions/subscription.rb +1 -1
 - data/lib/{rx_ruby → rx}/testing/cold_observable.rb +4 -4
 - data/lib/{rx_ruby → rx}/testing/hot_observable.rb +4 -4
 - data/lib/{rx_ruby → rx}/testing/mock_observer.rb +4 -4
 - data/lib/{rx_ruby → rx}/testing/reactive_test.rb +3 -3
 - data/lib/{rx_ruby → rx}/testing/recorded.rb +1 -1
 - data/lib/{rx_ruby → rx}/testing/test_scheduler.rb +8 -8
 - data/lib/{rx_ruby → rx}/testing/test_subscription.rb +1 -1
 - data/lib/rx/version.rb +3 -0
 - data/readme.md +19 -19
 - data/{rx_ruby.gemspec → rx.gemspec} +2 -2
 - data/test/{rx_ruby → rx}/concurrency/helpers/historical_virtual_scheduler_helper.rb +0 -0
 - data/test/{rx_ruby → rx}/concurrency/helpers/immediate_local_scheduler_helper.rb +0 -0
 - data/test/{rx_ruby → rx}/concurrency/test_async_lock.rb +1 -1
 - data/test/{rx_ruby → rx}/concurrency/test_current_thread_scheduler.rb +3 -3
 - data/test/{rx_ruby → rx}/concurrency/test_default_scheduler.rb +1 -1
 - data/test/{rx_ruby → rx}/concurrency/test_historical_scheduler.rb +3 -3
 - data/test/{rx_ruby → rx}/concurrency/test_immediate_scheduler.rb +2 -2
 - data/test/{rx_ruby → rx}/concurrency/test_local_scheduler.rb +2 -2
 - data/test/{rx_ruby → rx}/concurrency/test_periodic_scheduler.rb +1 -1
 - data/test/{rx_ruby → rx}/concurrency/test_scheduled_item.rb +4 -4
 - data/test/{rx_ruby → rx}/concurrency/test_scheduler.rb +2 -2
 - data/test/{rx_ruby → rx}/concurrency/test_virtual_time_scheduler.rb +2 -2
 - data/test/{rx_ruby → rx}/core/test_notification.rb +20 -20
 - data/test/{rx_ruby → rx}/core/test_observable_creation.rb +220 -63
 - data/test/{rx_ruby → rx}/core/test_observer.rb +39 -39
 - data/test/{rx_ruby → rx}/internal/test_priority_queue.rb +6 -6
 - data/test/{rx_ruby → rx}/subscriptions/test_composite_subscription.rb +20 -20
 - data/test/{rx_ruby → rx}/subscriptions/test_serial_subscription.rb +9 -9
 - data/test/{rx_ruby → rx}/subscriptions/test_singleassignment_subscription.rb +8 -8
 - data/test/{rx_ruby → rx}/subscriptions/test_subscription.rb +3 -3
 - data/test/test_helper.rb +1 -1
 - metadata +129 -129
 - data/lib/rx_ruby/linq/observable/interval.rb +0 -5
 - data/lib/rx_ruby/version.rb +0 -3
 
| 
         @@ -5,7 +5,7 @@ require 'test_helper' 
     | 
|
| 
       5 
5 
     | 
    
         
             
            class TestSerialSubscription < Minitest::Test
         
     | 
| 
       6 
6 
     | 
    
         | 
| 
       7 
7 
     | 
    
         
             
                def test_ctor
         
     | 
| 
       8 
     | 
    
         
            -
                    d =  
     | 
| 
      
 8 
     | 
    
         
            +
                    d = Rx::SerialSubscription.new
         
     | 
| 
       9 
9 
     | 
    
         
             
                    assert_nil d.subscription
         
     | 
| 
       10 
10 
     | 
    
         
             
                end
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -13,13 +13,13 @@ class TestSerialSubscription < Minitest::Test 
     | 
|
| 
       13 
13 
     | 
    
         
             
                    disp1 = false
         
     | 
| 
       14 
14 
     | 
    
         
             
                    disp2 = false
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
     | 
    
         
            -
                    m =  
     | 
| 
       17 
     | 
    
         
            -
                    d1 =  
     | 
| 
      
 16 
     | 
    
         
            +
                    m = Rx::SerialSubscription.new
         
     | 
| 
      
 17 
     | 
    
         
            +
                    d1 = Rx::Subscription.create { disp1 = true }
         
     | 
| 
       18 
18 
     | 
    
         
             
                    m.subscription = d1
         
     | 
| 
       19 
19 
     | 
    
         
             
                    assert_same d1, m.subscription
         
     | 
| 
       20 
20 
     | 
    
         
             
                    refute disp1
         
     | 
| 
       21 
21 
     | 
    
         | 
| 
       22 
     | 
    
         
            -
                    d2 =  
     | 
| 
      
 22 
     | 
    
         
            +
                    d2 = Rx::Subscription.create { disp2 = true }
         
     | 
| 
       23 
23 
     | 
    
         
             
                    m.subscription = d2
         
     | 
| 
       24 
24 
     | 
    
         
             
                    assert_same d2, m.subscription
         
     | 
| 
       25 
25 
     | 
    
         
             
                    assert disp1
         
     | 
| 
         @@ -30,16 +30,16 @@ class TestSerialSubscription < Minitest::Test 
     | 
|
| 
       30 
30 
     | 
    
         
             
                    disp1 = false
         
     | 
| 
       31 
31 
     | 
    
         
             
                    disp2 = false
         
     | 
| 
       32 
32 
     | 
    
         | 
| 
       33 
     | 
    
         
            -
                    m =  
     | 
| 
      
 33 
     | 
    
         
            +
                    m = Rx::SerialSubscription.new
         
     | 
| 
       34 
34 
     | 
    
         
             
                    m.unsubscribe
         
     | 
| 
       35 
35 
     | 
    
         
             
                    assert m.unsubscribed?
         
     | 
| 
       36 
36 
     | 
    
         | 
| 
       37 
     | 
    
         
            -
                    d1 =  
     | 
| 
      
 37 
     | 
    
         
            +
                    d1 = Rx::Subscription.create { disp1 = true }
         
     | 
| 
       38 
38 
     | 
    
         
             
                    m.subscription = d1
         
     | 
| 
       39 
39 
     | 
    
         
             
                    assert_nil m.subscription
         
     | 
| 
       40 
40 
     | 
    
         
             
                    assert disp1
         
     | 
| 
       41 
41 
     | 
    
         | 
| 
       42 
     | 
    
         
            -
                    d2 =  
     | 
| 
      
 42 
     | 
    
         
            +
                    d2 = Rx::Subscription.create { disp2 = true }
         
     | 
| 
       43 
43 
     | 
    
         
             
                    m.subscription = d2
         
     | 
| 
       44 
44 
     | 
    
         
             
                    assert_nil m.subscription
         
     | 
| 
       45 
45 
     | 
    
         
             
                    assert disp2
         
     | 
| 
         @@ -48,8 +48,8 @@ class TestSerialSubscription < Minitest::Test 
     | 
|
| 
       48 
48 
     | 
    
         
             
                def test_dispose
         
     | 
| 
       49 
49 
     | 
    
         
             
                    disp = false
         
     | 
| 
       50 
50 
     | 
    
         | 
| 
       51 
     | 
    
         
            -
                    m =  
     | 
| 
       52 
     | 
    
         
            -
                    d =  
     | 
| 
      
 51 
     | 
    
         
            +
                    m = Rx::SerialSubscription.new
         
     | 
| 
      
 52 
     | 
    
         
            +
                    d = Rx::Subscription.create { disp = true }
         
     | 
| 
       53 
53 
     | 
    
         
             
                    m.subscription = d
         
     | 
| 
       54 
54 
     | 
    
         
             
                    assert_same d, m.subscription
         
     | 
| 
       55 
55 
     | 
    
         
             
                    refute disp
         
     | 
| 
         @@ -5,7 +5,7 @@ require 'test_helper' 
     | 
|
| 
       5 
5 
     | 
    
         
             
            class TestSingleAssignmentSubscription < Minitest::Test
         
     | 
| 
       6 
6 
     | 
    
         | 
| 
       7 
7 
     | 
    
         
             
              def test_subscription_null
         
     | 
| 
       8 
     | 
    
         
            -
                d =  
     | 
| 
      
 8 
     | 
    
         
            +
                d = Rx::SingleAssignmentSubscription.new
         
     | 
| 
       9 
9 
     | 
    
         
             
                d.subscription = nil
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
11 
     | 
    
         
             
                assert_nil d.subscription
         
     | 
| 
         @@ -14,8 +14,8 @@ class TestSingleAssignmentSubscription < Minitest::Test 
     | 
|
| 
       14 
14 
     | 
    
         
             
              def test_dispose_after_set
         
     | 
| 
       15 
15 
     | 
    
         
             
                unsubscribed = false
         
     | 
| 
       16 
16 
     | 
    
         | 
| 
       17 
     | 
    
         
            -
                d =  
     | 
| 
       18 
     | 
    
         
            -
                dd =  
     | 
| 
      
 17 
     | 
    
         
            +
                d = Rx::SingleAssignmentSubscription.new
         
     | 
| 
      
 18 
     | 
    
         
            +
                dd = Rx::Subscription.create { unsubscribed = true }
         
     | 
| 
       19 
19 
     | 
    
         
             
                d.subscription = dd
         
     | 
| 
       20 
20 
     | 
    
         | 
| 
       21 
21 
     | 
    
         
             
                assert_same dd, d.subscription
         
     | 
| 
         @@ -35,8 +35,8 @@ class TestSingleAssignmentSubscription < Minitest::Test 
     | 
|
| 
       35 
35 
     | 
    
         
             
              def test_dispose_before_set
         
     | 
| 
       36 
36 
     | 
    
         
             
                unsubscribed = false
         
     | 
| 
       37 
37 
     | 
    
         | 
| 
       38 
     | 
    
         
            -
                d =  
     | 
| 
       39 
     | 
    
         
            -
                dd =  
     | 
| 
      
 38 
     | 
    
         
            +
                d = Rx::SingleAssignmentSubscription.new
         
     | 
| 
      
 39 
     | 
    
         
            +
                dd = Rx::Subscription.create { unsubscribed = true }
         
     | 
| 
       40 
40 
     | 
    
         | 
| 
       41 
41 
     | 
    
         
             
                refute unsubscribed
         
     | 
| 
       42 
42 
     | 
    
         
             
                d.unsubscribe
         
     | 
| 
         @@ -52,10 +52,10 @@ class TestSingleAssignmentSubscription < Minitest::Test 
     | 
|
| 
       52 
52 
     | 
    
         
             
              end
         
     | 
| 
       53 
53 
     | 
    
         | 
| 
       54 
54 
     | 
    
         
             
              def test_dispose_multiple_times
         
     | 
| 
       55 
     | 
    
         
            -
                d =  
     | 
| 
       56 
     | 
    
         
            -
                d.subscription =  
     | 
| 
      
 55 
     | 
    
         
            +
                d = Rx::SingleAssignmentSubscription.new
         
     | 
| 
      
 56 
     | 
    
         
            +
                d.subscription = Rx::Subscription.empty
         
     | 
| 
       57 
57 
     | 
    
         | 
| 
       58 
     | 
    
         
            -
                assert_raises(RuntimeError) { d.subscription =  
     | 
| 
      
 58 
     | 
    
         
            +
                assert_raises(RuntimeError) { d.subscription = Rx::Subscription.empty }
         
     | 
| 
       59 
59 
     | 
    
         
             
              end
         
     | 
| 
       60 
60 
     | 
    
         | 
| 
       61 
61 
     | 
    
         
             
            end
         
     | 
| 
         @@ -5,13 +5,13 @@ require 'test_helper' 
     | 
|
| 
       5 
5 
     | 
    
         
             
            class TestSubscription < Minitest::Test
         
     | 
| 
       6 
6 
     | 
    
         | 
| 
       7 
7 
     | 
    
         
             
              def test_disposable_create
         
     | 
| 
       8 
     | 
    
         
            -
                d =  
     | 
| 
      
 8 
     | 
    
         
            +
                d = Rx::Subscription.create { }
         
     | 
| 
       9 
9 
     | 
    
         
             
                refute_nil d
         
     | 
| 
       10 
10 
     | 
    
         
             
              end
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         
             
              def test_create_dispose
         
     | 
| 
       13 
13 
     | 
    
         
             
                unsubscribed = false
         
     | 
| 
       14 
     | 
    
         
            -
                d =  
     | 
| 
      
 14 
     | 
    
         
            +
                d = Rx::Subscription.create { unsubscribed = true }
         
     | 
| 
       15 
15 
     | 
    
         
             
                refute unsubscribed
         
     | 
| 
       16 
16 
     | 
    
         | 
| 
       17 
17 
     | 
    
         
             
                d.unsubscribe
         
     | 
| 
         @@ -19,7 +19,7 @@ class TestSubscription < Minitest::Test 
     | 
|
| 
       19 
19 
     | 
    
         
             
              end
         
     | 
| 
       20 
20 
     | 
    
         | 
| 
       21 
21 
     | 
    
         
             
              def test_empty
         
     | 
| 
       22 
     | 
    
         
            -
                d =  
     | 
| 
      
 22 
     | 
    
         
            +
                d = Rx::Subscription.empty
         
     | 
| 
       23 
23 
     | 
    
         
             
                refute_nil d
         
     | 
| 
       24 
24 
     | 
    
         
             
                d.unsubscribe
         
     | 
| 
       25 
25 
     | 
    
         
             
              end
         
     | 
    
        data/test/test_helper.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: rx
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.0.3
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Microsoft Open Technologies, Inc.
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2016-03 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2016-04-03 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: rake
         
     | 
| 
         @@ -132,115 +132,115 @@ files: 
     | 
|
| 
       132 
132 
     | 
    
         
             
            - examples/zip.rb
         
     | 
| 
       133 
133 
     | 
    
         
             
            - examples/zip_array.rb
         
     | 
| 
       134 
134 
     | 
    
         
             
            - lib/core_ext/enumerable.rb
         
     | 
| 
       135 
     | 
    
         
            -
            - lib/ 
     | 
| 
       136 
     | 
    
         
            -
            - lib/ 
     | 
| 
       137 
     | 
    
         
            -
            - lib/ 
     | 
| 
       138 
     | 
    
         
            -
            - lib/ 
     | 
| 
       139 
     | 
    
         
            -
            - lib/ 
     | 
| 
       140 
     | 
    
         
            -
            - lib/ 
     | 
| 
       141 
     | 
    
         
            -
            - lib/ 
     | 
| 
       142 
     | 
    
         
            -
            - lib/ 
     | 
| 
       143 
     | 
    
         
            -
            - lib/ 
     | 
| 
       144 
     | 
    
         
            -
            - lib/ 
     | 
| 
       145 
     | 
    
         
            -
            - lib/ 
     | 
| 
       146 
     | 
    
         
            -
            - lib/ 
     | 
| 
       147 
     | 
    
         
            -
            - lib/ 
     | 
| 
       148 
     | 
    
         
            -
            - lib/ 
     | 
| 
       149 
     | 
    
         
            -
            - lib/ 
     | 
| 
       150 
     | 
    
         
            -
            - lib/ 
     | 
| 
       151 
     | 
    
         
            -
            - lib/ 
     | 
| 
       152 
     | 
    
         
            -
            - lib/ 
     | 
| 
       153 
     | 
    
         
            -
            - lib/ 
     | 
| 
       154 
     | 
    
         
            -
            - lib/ 
     | 
| 
       155 
     | 
    
         
            -
            - lib/ 
     | 
| 
       156 
     | 
    
         
            -
            - lib/ 
     | 
| 
       157 
     | 
    
         
            -
            - lib/ 
     | 
| 
       158 
     | 
    
         
            -
            - lib/ 
     | 
| 
       159 
     | 
    
         
            -
            - lib/ 
     | 
| 
       160 
     | 
    
         
            -
            - lib/ 
     | 
| 
       161 
     | 
    
         
            -
            - lib/ 
     | 
| 
       162 
     | 
    
         
            -
            - lib/ 
     | 
| 
       163 
     | 
    
         
            -
            - lib/ 
     | 
| 
       164 
     | 
    
         
            -
            - lib/ 
     | 
| 
       165 
     | 
    
         
            -
            - lib/ 
     | 
| 
       166 
     | 
    
         
            -
            - lib/ 
     | 
| 
       167 
     | 
    
         
            -
            - lib/ 
     | 
| 
       168 
     | 
    
         
            -
            - lib/ 
     | 
| 
       169 
     | 
    
         
            -
            - lib/ 
     | 
| 
       170 
     | 
    
         
            -
            - lib/ 
     | 
| 
       171 
     | 
    
         
            -
            - lib/ 
     | 
| 
       172 
     | 
    
         
            -
            - lib/ 
     | 
| 
       173 
     | 
    
         
            -
            - lib/ 
     | 
| 
       174 
     | 
    
         
            -
            - lib/ 
     | 
| 
       175 
     | 
    
         
            -
            - lib/ 
     | 
| 
       176 
     | 
    
         
            -
            - lib/ 
     | 
| 
       177 
     | 
    
         
            -
            - lib/ 
     | 
| 
       178 
     | 
    
         
            -
            - lib/ 
     | 
| 
       179 
     | 
    
         
            -
            - lib/ 
     | 
| 
       180 
     | 
    
         
            -
            - lib/ 
     | 
| 
       181 
     | 
    
         
            -
            - lib/ 
     | 
| 
       182 
     | 
    
         
            -
            - lib/ 
     | 
| 
       183 
     | 
    
         
            -
            - lib/ 
     | 
| 
       184 
     | 
    
         
            -
            - lib/ 
     | 
| 
       185 
     | 
    
         
            -
            - lib/ 
     | 
| 
       186 
     | 
    
         
            -
            - lib/ 
     | 
| 
       187 
     | 
    
         
            -
            - lib/ 
     | 
| 
       188 
     | 
    
         
            -
            - lib/ 
     | 
| 
       189 
     | 
    
         
            -
            - lib/ 
     | 
| 
       190 
     | 
    
         
            -
            - lib/ 
     | 
| 
       191 
     | 
    
         
            -
            - lib/ 
     | 
| 
       192 
     | 
    
         
            -
            - lib/ 
     | 
| 
       193 
     | 
    
         
            -
            - lib/ 
     | 
| 
       194 
     | 
    
         
            -
            - lib/ 
     | 
| 
       195 
     | 
    
         
            -
            - lib/ 
     | 
| 
       196 
     | 
    
         
            -
            - lib/ 
     | 
| 
       197 
     | 
    
         
            -
            - lib/ 
     | 
| 
       198 
     | 
    
         
            -
            - lib/ 
     | 
| 
       199 
     | 
    
         
            -
            - lib/ 
     | 
| 
       200 
     | 
    
         
            -
            - lib/ 
     | 
| 
       201 
     | 
    
         
            -
            - lib/ 
     | 
| 
       202 
     | 
    
         
            -
            - lib/ 
     | 
| 
       203 
     | 
    
         
            -
            - lib/ 
     | 
| 
       204 
     | 
    
         
            -
            - lib/ 
     | 
| 
       205 
     | 
    
         
            -
            - lib/ 
     | 
| 
       206 
     | 
    
         
            -
            - lib/ 
     | 
| 
       207 
     | 
    
         
            -
            - lib/ 
     | 
| 
       208 
     | 
    
         
            -
            - lib/ 
     | 
| 
       209 
     | 
    
         
            -
            - lib/ 
     | 
| 
       210 
     | 
    
         
            -
            - lib/ 
     | 
| 
       211 
     | 
    
         
            -
            - lib/ 
     | 
| 
       212 
     | 
    
         
            -
            - lib/ 
     | 
| 
       213 
     | 
    
         
            -
            - lib/ 
     | 
| 
       214 
     | 
    
         
            -
            - lib/ 
     | 
| 
       215 
     | 
    
         
            -
            - lib/ 
     | 
| 
       216 
     | 
    
         
            -
            - lib/ 
     | 
| 
       217 
     | 
    
         
            -
            - lib/ 
     | 
| 
       218 
     | 
    
         
            -
            - lib/ 
     | 
| 
       219 
     | 
    
         
            -
            - lib/ 
     | 
| 
       220 
     | 
    
         
            -
            - lib/ 
     | 
| 
      
 135 
     | 
    
         
            +
            - lib/rx.rb
         
     | 
| 
      
 136 
     | 
    
         
            +
            - lib/rx/concurrency/async_lock.rb
         
     | 
| 
      
 137 
     | 
    
         
            +
            - lib/rx/concurrency/current_thread_scheduler.rb
         
     | 
| 
      
 138 
     | 
    
         
            +
            - lib/rx/concurrency/default_scheduler.rb
         
     | 
| 
      
 139 
     | 
    
         
            +
            - lib/rx/concurrency/historical_scheduler.rb
         
     | 
| 
      
 140 
     | 
    
         
            +
            - lib/rx/concurrency/immediate_scheduler.rb
         
     | 
| 
      
 141 
     | 
    
         
            +
            - lib/rx/concurrency/local_scheduler.rb
         
     | 
| 
      
 142 
     | 
    
         
            +
            - lib/rx/concurrency/periodic_scheduler.rb
         
     | 
| 
      
 143 
     | 
    
         
            +
            - lib/rx/concurrency/scheduled_item.rb
         
     | 
| 
      
 144 
     | 
    
         
            +
            - lib/rx/concurrency/scheduler.rb
         
     | 
| 
      
 145 
     | 
    
         
            +
            - lib/rx/concurrency/virtual_time_scheduler.rb
         
     | 
| 
      
 146 
     | 
    
         
            +
            - lib/rx/core/async_lock_observer.rb
         
     | 
| 
      
 147 
     | 
    
         
            +
            - lib/rx/core/auto_detach_observer.rb
         
     | 
| 
      
 148 
     | 
    
         
            +
            - lib/rx/core/checked_observer.rb
         
     | 
| 
      
 149 
     | 
    
         
            +
            - lib/rx/core/notification.rb
         
     | 
| 
      
 150 
     | 
    
         
            +
            - lib/rx/core/observable.rb
         
     | 
| 
      
 151 
     | 
    
         
            +
            - lib/rx/core/observe_on_observer.rb
         
     | 
| 
      
 152 
     | 
    
         
            +
            - lib/rx/core/observer.rb
         
     | 
| 
      
 153 
     | 
    
         
            +
            - lib/rx/core/scheduled_observer.rb
         
     | 
| 
      
 154 
     | 
    
         
            +
            - lib/rx/core/synchronized_observer.rb
         
     | 
| 
      
 155 
     | 
    
         
            +
            - lib/rx/core/time_interval.rb
         
     | 
| 
      
 156 
     | 
    
         
            +
            - lib/rx/internal/priority_queue.rb
         
     | 
| 
      
 157 
     | 
    
         
            +
            - lib/rx/internal/util.rb
         
     | 
| 
      
 158 
     | 
    
         
            +
            - lib/rx/joins/active_plan.rb
         
     | 
| 
      
 159 
     | 
    
         
            +
            - lib/rx/joins/join_observer.rb
         
     | 
| 
      
 160 
     | 
    
         
            +
            - lib/rx/joins/pattern.rb
         
     | 
| 
      
 161 
     | 
    
         
            +
            - lib/rx/joins/plan.rb
         
     | 
| 
      
 162 
     | 
    
         
            +
            - lib/rx/linq/connectable_observable.rb
         
     | 
| 
      
 163 
     | 
    
         
            +
            - lib/rx/linq/observable/_observable_timer_date_and_period.rb
         
     | 
| 
      
 164 
     | 
    
         
            +
            - lib/rx/linq/observable/_observable_timer_time_span.rb
         
     | 
| 
      
 165 
     | 
    
         
            +
            - lib/rx/linq/observable/_observable_timer_time_span_and_period.rb
         
     | 
| 
      
 166 
     | 
    
         
            +
            - lib/rx/linq/observable/aggregate.rb
         
     | 
| 
      
 167 
     | 
    
         
            +
            - lib/rx/linq/observable/and.rb
         
     | 
| 
      
 168 
     | 
    
         
            +
            - lib/rx/linq/observable/case.rb
         
     | 
| 
      
 169 
     | 
    
         
            +
            - lib/rx/linq/observable/concat_all.rb
         
     | 
| 
      
 170 
     | 
    
         
            +
            - lib/rx/linq/observable/concat_map.rb
         
     | 
| 
      
 171 
     | 
    
         
            +
            - lib/rx/linq/observable/concat_map_observer.rb
         
     | 
| 
      
 172 
     | 
    
         
            +
            - lib/rx/linq/observable/contains.rb
         
     | 
| 
      
 173 
     | 
    
         
            +
            - lib/rx/linq/observable/debounce.rb
         
     | 
| 
      
 174 
     | 
    
         
            +
            - lib/rx/linq/observable/delay.rb
         
     | 
| 
      
 175 
     | 
    
         
            +
            - lib/rx/linq/observable/delay_with_selector.rb
         
     | 
| 
      
 176 
     | 
    
         
            +
            - lib/rx/linq/observable/do.rb
         
     | 
| 
      
 177 
     | 
    
         
            +
            - lib/rx/linq/observable/for.rb
         
     | 
| 
      
 178 
     | 
    
         
            +
            - lib/rx/linq/observable/fork_join.rb
         
     | 
| 
      
 179 
     | 
    
         
            +
            - lib/rx/linq/observable/from.rb
         
     | 
| 
      
 180 
     | 
    
         
            +
            - lib/rx/linq/observable/group_join.rb
         
     | 
| 
      
 181 
     | 
    
         
            +
            - lib/rx/linq/observable/if.rb
         
     | 
| 
      
 182 
     | 
    
         
            +
            - lib/rx/linq/observable/interval.rb
         
     | 
| 
      
 183 
     | 
    
         
            +
            - lib/rx/linq/observable/multicast.rb
         
     | 
| 
      
 184 
     | 
    
         
            +
            - lib/rx/linq/observable/of.rb
         
     | 
| 
      
 185 
     | 
    
         
            +
            - lib/rx/linq/observable/pairs.rb
         
     | 
| 
      
 186 
     | 
    
         
            +
            - lib/rx/linq/observable/pluck.rb
         
     | 
| 
      
 187 
     | 
    
         
            +
            - lib/rx/linq/observable/publish.rb
         
     | 
| 
      
 188 
     | 
    
         
            +
            - lib/rx/linq/observable/start.rb
         
     | 
| 
      
 189 
     | 
    
         
            +
            - lib/rx/linq/observable/time_interval.rb
         
     | 
| 
      
 190 
     | 
    
         
            +
            - lib/rx/linq/observable/timer.rb
         
     | 
| 
      
 191 
     | 
    
         
            +
            - lib/rx/linq/observable/timestamp.rb
         
     | 
| 
      
 192 
     | 
    
         
            +
            - lib/rx/linq/observable/to_async.rb
         
     | 
| 
      
 193 
     | 
    
         
            +
            - lib/rx/linq/observable/when.rb
         
     | 
| 
      
 194 
     | 
    
         
            +
            - lib/rx/linq/observable/while.rb
         
     | 
| 
      
 195 
     | 
    
         
            +
            - lib/rx/operators/aggregates.rb
         
     | 
| 
      
 196 
     | 
    
         
            +
            - lib/rx/operators/creation.rb
         
     | 
| 
      
 197 
     | 
    
         
            +
            - lib/rx/operators/multiple.rb
         
     | 
| 
      
 198 
     | 
    
         
            +
            - lib/rx/operators/single.rb
         
     | 
| 
      
 199 
     | 
    
         
            +
            - lib/rx/operators/standard_query_operators.rb
         
     | 
| 
      
 200 
     | 
    
         
            +
            - lib/rx/operators/synchronization.rb
         
     | 
| 
      
 201 
     | 
    
         
            +
            - lib/rx/operators/time.rb
         
     | 
| 
      
 202 
     | 
    
         
            +
            - lib/rx/subjects/async_subject.rb
         
     | 
| 
      
 203 
     | 
    
         
            +
            - lib/rx/subjects/behavior_subject.rb
         
     | 
| 
      
 204 
     | 
    
         
            +
            - lib/rx/subjects/replay_subject.rb
         
     | 
| 
      
 205 
     | 
    
         
            +
            - lib/rx/subjects/subject.rb
         
     | 
| 
      
 206 
     | 
    
         
            +
            - lib/rx/subjects/subject_extensions.rb
         
     | 
| 
      
 207 
     | 
    
         
            +
            - lib/rx/subscriptions/composite_subscription.rb
         
     | 
| 
      
 208 
     | 
    
         
            +
            - lib/rx/subscriptions/ref_count_subscription.rb
         
     | 
| 
      
 209 
     | 
    
         
            +
            - lib/rx/subscriptions/scheduled_subscription.rb
         
     | 
| 
      
 210 
     | 
    
         
            +
            - lib/rx/subscriptions/serial_subscription.rb
         
     | 
| 
      
 211 
     | 
    
         
            +
            - lib/rx/subscriptions/single_assignment_subscription.rb
         
     | 
| 
      
 212 
     | 
    
         
            +
            - lib/rx/subscriptions/subscription.rb
         
     | 
| 
      
 213 
     | 
    
         
            +
            - lib/rx/testing/cold_observable.rb
         
     | 
| 
      
 214 
     | 
    
         
            +
            - lib/rx/testing/hot_observable.rb
         
     | 
| 
      
 215 
     | 
    
         
            +
            - lib/rx/testing/mock_observer.rb
         
     | 
| 
      
 216 
     | 
    
         
            +
            - lib/rx/testing/reactive_test.rb
         
     | 
| 
      
 217 
     | 
    
         
            +
            - lib/rx/testing/recorded.rb
         
     | 
| 
      
 218 
     | 
    
         
            +
            - lib/rx/testing/test_scheduler.rb
         
     | 
| 
      
 219 
     | 
    
         
            +
            - lib/rx/testing/test_subscription.rb
         
     | 
| 
      
 220 
     | 
    
         
            +
            - lib/rx/version.rb
         
     | 
| 
       221 
221 
     | 
    
         
             
            - license.txt
         
     | 
| 
       222 
222 
     | 
    
         
             
            - readme.md
         
     | 
| 
       223 
     | 
    
         
            -
            -  
     | 
| 
       224 
     | 
    
         
            -
            - test/ 
     | 
| 
       225 
     | 
    
         
            -
            - test/ 
     | 
| 
       226 
     | 
    
         
            -
            - test/ 
     | 
| 
       227 
     | 
    
         
            -
            - test/ 
     | 
| 
       228 
     | 
    
         
            -
            - test/ 
     | 
| 
       229 
     | 
    
         
            -
            - test/ 
     | 
| 
       230 
     | 
    
         
            -
            - test/ 
     | 
| 
       231 
     | 
    
         
            -
            - test/ 
     | 
| 
       232 
     | 
    
         
            -
            - test/ 
     | 
| 
       233 
     | 
    
         
            -
            - test/ 
     | 
| 
       234 
     | 
    
         
            -
            - test/ 
     | 
| 
       235 
     | 
    
         
            -
            - test/ 
     | 
| 
       236 
     | 
    
         
            -
            - test/ 
     | 
| 
       237 
     | 
    
         
            -
            - test/ 
     | 
| 
       238 
     | 
    
         
            -
            - test/ 
     | 
| 
       239 
     | 
    
         
            -
            - test/ 
     | 
| 
       240 
     | 
    
         
            -
            - test/ 
     | 
| 
       241 
     | 
    
         
            -
            - test/ 
     | 
| 
       242 
     | 
    
         
            -
            - test/ 
     | 
| 
       243 
     | 
    
         
            -
            - test/ 
     | 
| 
      
 223 
     | 
    
         
            +
            - rx.gemspec
         
     | 
| 
      
 224 
     | 
    
         
            +
            - test/rx/concurrency/helpers/historical_virtual_scheduler_helper.rb
         
     | 
| 
      
 225 
     | 
    
         
            +
            - test/rx/concurrency/helpers/immediate_local_scheduler_helper.rb
         
     | 
| 
      
 226 
     | 
    
         
            +
            - test/rx/concurrency/test_async_lock.rb
         
     | 
| 
      
 227 
     | 
    
         
            +
            - test/rx/concurrency/test_current_thread_scheduler.rb
         
     | 
| 
      
 228 
     | 
    
         
            +
            - test/rx/concurrency/test_default_scheduler.rb
         
     | 
| 
      
 229 
     | 
    
         
            +
            - test/rx/concurrency/test_historical_scheduler.rb
         
     | 
| 
      
 230 
     | 
    
         
            +
            - test/rx/concurrency/test_immediate_scheduler.rb
         
     | 
| 
      
 231 
     | 
    
         
            +
            - test/rx/concurrency/test_local_scheduler.rb
         
     | 
| 
      
 232 
     | 
    
         
            +
            - test/rx/concurrency/test_periodic_scheduler.rb
         
     | 
| 
      
 233 
     | 
    
         
            +
            - test/rx/concurrency/test_scheduled_item.rb
         
     | 
| 
      
 234 
     | 
    
         
            +
            - test/rx/concurrency/test_scheduler.rb
         
     | 
| 
      
 235 
     | 
    
         
            +
            - test/rx/concurrency/test_virtual_time_scheduler.rb
         
     | 
| 
      
 236 
     | 
    
         
            +
            - test/rx/core/test_notification.rb
         
     | 
| 
      
 237 
     | 
    
         
            +
            - test/rx/core/test_observable_creation.rb
         
     | 
| 
      
 238 
     | 
    
         
            +
            - test/rx/core/test_observer.rb
         
     | 
| 
      
 239 
     | 
    
         
            +
            - test/rx/internal/test_priority_queue.rb
         
     | 
| 
      
 240 
     | 
    
         
            +
            - test/rx/subscriptions/test_composite_subscription.rb
         
     | 
| 
      
 241 
     | 
    
         
            +
            - test/rx/subscriptions/test_serial_subscription.rb
         
     | 
| 
      
 242 
     | 
    
         
            +
            - test/rx/subscriptions/test_singleassignment_subscription.rb
         
     | 
| 
      
 243 
     | 
    
         
            +
            - test/rx/subscriptions/test_subscription.rb
         
     | 
| 
       244 
244 
     | 
    
         
             
            - test/test_helper.rb
         
     | 
| 
       245 
245 
     | 
    
         
             
            homepage: https://github.com/ReactiveX/RxRuby
         
     | 
| 
       246 
246 
     | 
    
         
             
            licenses:
         
     | 
| 
         @@ -268,24 +268,24 @@ specification_version: 4 
     | 
|
| 
       268 
268 
     | 
    
         
             
            summary: This is an implementation of the Reactive Extensions for Ruby. Note that
         
     | 
| 
       269 
269 
     | 
    
         
             
              this is an early prototype, but contributions are welcome.
         
     | 
| 
       270 
270 
     | 
    
         
             
            test_files:
         
     | 
| 
       271 
     | 
    
         
            -
            - test/ 
     | 
| 
       272 
     | 
    
         
            -
            - test/ 
     | 
| 
       273 
     | 
    
         
            -
            - test/ 
     | 
| 
       274 
     | 
    
         
            -
            - test/ 
     | 
| 
       275 
     | 
    
         
            -
            - test/ 
     | 
| 
       276 
     | 
    
         
            -
            - test/ 
     | 
| 
       277 
     | 
    
         
            -
            - test/ 
     | 
| 
       278 
     | 
    
         
            -
            - test/ 
     | 
| 
       279 
     | 
    
         
            -
            - test/ 
     | 
| 
       280 
     | 
    
         
            -
            - test/ 
     | 
| 
       281 
     | 
    
         
            -
            - test/ 
     | 
| 
       282 
     | 
    
         
            -
            - test/ 
     | 
| 
       283 
     | 
    
         
            -
            - test/ 
     | 
| 
       284 
     | 
    
         
            -
            - test/ 
     | 
| 
       285 
     | 
    
         
            -
            - test/ 
     | 
| 
       286 
     | 
    
         
            -
            - test/ 
     | 
| 
       287 
     | 
    
         
            -
            - test/ 
     | 
| 
       288 
     | 
    
         
            -
            - test/ 
     | 
| 
       289 
     | 
    
         
            -
            - test/ 
     | 
| 
       290 
     | 
    
         
            -
            - test/ 
     | 
| 
      
 271 
     | 
    
         
            +
            - test/rx/concurrency/helpers/historical_virtual_scheduler_helper.rb
         
     | 
| 
      
 272 
     | 
    
         
            +
            - test/rx/concurrency/helpers/immediate_local_scheduler_helper.rb
         
     | 
| 
      
 273 
     | 
    
         
            +
            - test/rx/concurrency/test_async_lock.rb
         
     | 
| 
      
 274 
     | 
    
         
            +
            - test/rx/concurrency/test_current_thread_scheduler.rb
         
     | 
| 
      
 275 
     | 
    
         
            +
            - test/rx/concurrency/test_default_scheduler.rb
         
     | 
| 
      
 276 
     | 
    
         
            +
            - test/rx/concurrency/test_historical_scheduler.rb
         
     | 
| 
      
 277 
     | 
    
         
            +
            - test/rx/concurrency/test_immediate_scheduler.rb
         
     | 
| 
      
 278 
     | 
    
         
            +
            - test/rx/concurrency/test_local_scheduler.rb
         
     | 
| 
      
 279 
     | 
    
         
            +
            - test/rx/concurrency/test_periodic_scheduler.rb
         
     | 
| 
      
 280 
     | 
    
         
            +
            - test/rx/concurrency/test_scheduled_item.rb
         
     | 
| 
      
 281 
     | 
    
         
            +
            - test/rx/concurrency/test_scheduler.rb
         
     | 
| 
      
 282 
     | 
    
         
            +
            - test/rx/concurrency/test_virtual_time_scheduler.rb
         
     | 
| 
      
 283 
     | 
    
         
            +
            - test/rx/core/test_notification.rb
         
     | 
| 
      
 284 
     | 
    
         
            +
            - test/rx/core/test_observable_creation.rb
         
     | 
| 
      
 285 
     | 
    
         
            +
            - test/rx/core/test_observer.rb
         
     | 
| 
      
 286 
     | 
    
         
            +
            - test/rx/internal/test_priority_queue.rb
         
     | 
| 
      
 287 
     | 
    
         
            +
            - test/rx/subscriptions/test_composite_subscription.rb
         
     | 
| 
      
 288 
     | 
    
         
            +
            - test/rx/subscriptions/test_serial_subscription.rb
         
     | 
| 
      
 289 
     | 
    
         
            +
            - test/rx/subscriptions/test_singleassignment_subscription.rb
         
     | 
| 
      
 290 
     | 
    
         
            +
            - test/rx/subscriptions/test_subscription.rb
         
     | 
| 
       291 
291 
     | 
    
         
             
            - test/test_helper.rb
         
     | 
    
        data/lib/rx_ruby/version.rb
    DELETED