[DRE-commits] [ruby-celluloid] 01/05: Merge tag 'upstream/0.17.3'

Praveen Arimbrathodiyil praveen at moszumanska.debian.org
Sun Mar 6 08:08:24 UTC 2016


This is an automated email from the git hooks/post-receive script.

praveen pushed a commit to branch master
in repository ruby-celluloid.

commit 279a991bf9937b05affbcd26fda2bb3a9b74d3f1
Merge: af9460e 1385d8a
Author: Praveen Arimbrathodiyil <praveen at debian.org>
Date:   Sun Mar 6 13:08:21 2016 +0530

    Merge tag 'upstream/0.17.3'
    
    Upstream version 0.17.3
    
    # gpg: Signature made Sunday 06 March 2016 01:08:17 PM IST using RSA key ID 4512C22A
    # gpg: Good signature from "Praveen Arimbrathodiyil (piratepin) <praveen at debian.org>"
    # gpg:                 aka "Pirate Praveen (pirates.org.in) <praveen at onenetbeyond.org>"
    # gpg:                 aka "Pirate Praveen (piratesin) <me at j4v4m4n.in>"
    # gpg:                 aka "Pirate Praveen (PP) <praveen at privacyrequired.com>"
    # gpg:                 aka "Praveen Arimbrathodiyil (j4v4m4n) <pravi.a at gmail.com>"

 CHANGES.md                                         |  394 ++++++
 LICENSE.txt                                        |    2 +-
 README.md                                          |   43 +-
 culture/CONDUCT.md                                 |   28 +
 culture/Gemfile                                    |    9 +
 LICENSE.txt => culture/LICENSE.txt                 |    4 +-
 culture/README.md                                  |   22 +
 culture/Rakefile                                   |    5 +
 culture/SYNC.md                                    |   70 ++
 culture/celluloid-culture.gemspec                  |   18 +
 culture/gems/README.md                             |   39 +
 culture/gems/dependencies.yml                      |   85 ++
 culture/gems/loader.rb                             |  101 ++
 culture/rubocop/README.md                          |   38 +
 culture/rubocop/lint.yml                           |    8 +
 culture/rubocop/metrics.yml                        |   15 +
 culture/rubocop/perf.yml                           |    0
 culture/rubocop/rubocop.yml                        |    5 +
 culture/rubocop/style.yml                          |   57 +
 culture/spec/gems_spec.rb                          |    2 +
 culture/spec/spec_helper.rb                        |    0
 culture/spec/sync_spec.rb                          |    2 +
 culture/sync.rb                                    |   56 +
 culture/tasks/rspec.rake                           |    5 +
 culture/tasks/rubocop.rake                         |    2 +
 examples/basic_usage.rb                            |   49 +
 examples/futures.rb                                |   38 +
 examples/ring.rb                                   |   61 +
 examples/simple_pmap.rb                            |   14 +
 examples/stack.rb                                  |   47 +
 examples/timers.rb                                 |   72 ++
 lib/celluloid.rb                                   |  281 +++--
 lib/celluloid/actor.rb                             |  124 +-
 lib/celluloid/actor/manager.rb                     |    7 +
 lib/celluloid/actor/system.rb                      |  163 +++
 lib/celluloid/actor_system.rb                      |  107 --
 lib/celluloid/autostart.rb                         |    2 +-
 lib/celluloid/backported.rb                        |    2 +
 lib/celluloid/call/async.rb                        |   16 +
 lib/celluloid/call/block.rb                        |   22 +
 lib/celluloid/call/sync.rb                         |   70 ++
 lib/celluloid/call_chain.rb                        |   13 -
 lib/celluloid/calls.rb                             |  138 +--
 lib/celluloid/cell.rb                              |   52 +-
 lib/celluloid/condition.rb                         |   11 +-
 lib/celluloid/core_ext.rb                          |    2 +-
 lib/celluloid/cpu_counter.rb                       |   34 -
 lib/celluloid/current.rb                           |    2 +
 lib/celluloid/debug.rb                             |    1 +
 lib/celluloid/deprecate.rb                         |   21 +
 lib/celluloid/evented_mailbox.rb                   |   73 --
 lib/celluloid/exceptions.rb                        |   38 +-
 lib/celluloid/fiber.rb                             |    6 +-
 lib/celluloid/fsm.rb                               |  186 ---
 lib/celluloid/future.rb                            |   54 +-
 lib/celluloid/group.rb                             |   61 +
 lib/celluloid/group/pool.rb                        |  125 ++
 lib/celluloid/group/spawner.rb                     |   68 ++
 lib/celluloid/handlers.rb                          |   41 -
 lib/celluloid/internal_pool.rb                     |  159 ---
 lib/celluloid/legacy.rb                            |    9 -
 lib/celluloid/links.rb                             |   36 -
 lib/celluloid/logger.rb                            |   93 --
 lib/celluloid/logging.rb                           |   10 +-
 lib/celluloid/logging/incident.rb                  |   21 -
 lib/celluloid/logging/incident_logger.rb           |  129 --
 lib/celluloid/logging/incident_reporter.rb         |   48 -
 lib/celluloid/logging/log_event.rb                 |   20 -
 lib/celluloid/logging/ring_buffer.rb               |   65 -
 lib/celluloid/mailbox.rb                           |   29 +-
 lib/celluloid/mailbox/evented.rb                   |   74 ++
 lib/celluloid/managed.rb                           |    3 +
 lib/celluloid/method.rb                            |   32 -
 lib/celluloid/notices.rb                           |   15 +
 lib/celluloid/notifications.rb                     |   83 --
 lib/celluloid/pool_manager.rb                      |  146 ---
 lib/celluloid/probe.rb                             |   73 --
 lib/celluloid/properties.rb                        |   24 -
 lib/celluloid/proxies.rb                           |   11 +
 lib/celluloid/proxies/abstract_proxy.rb            |   20 -
 lib/celluloid/proxies/actor_proxy.rb               |   38 -
 lib/celluloid/proxies/async_proxy.rb               |   31 -
 lib/celluloid/proxies/block_proxy.rb               |   29 -
 lib/celluloid/proxies/cell_proxy.rb                |   68 --
 lib/celluloid/proxies/future_proxy.rb              |   35 -
 lib/celluloid/proxies/sync_proxy.rb                |   36 -
 lib/celluloid/proxy/abstract.rb                    |   50 +
 lib/celluloid/proxy/actor.rb                       |   37 +
 lib/celluloid/proxy/async.rb                       |   15 +
 lib/celluloid/proxy/block.rb                       |   28 +
 lib/celluloid/proxy/cell.rb                        |   66 +
 lib/celluloid/proxy/future.rb                      |   20 +
 lib/celluloid/proxy/sync.rb                        |   24 +
 lib/celluloid/receivers.rb                         |   63 -
 lib/celluloid/registry.rb                          |   57 -
 lib/celluloid/responses.rb                         |   44 -
 lib/celluloid/rspec.rb                             |   76 +-
 lib/celluloid/rspec/actor_examples.rb              | 1054 ----------------
 lib/celluloid/rspec/mailbox_examples.rb            |   84 --
 lib/celluloid/signals.rb                           |   23 -
 lib/celluloid/stack_dump.rb                        |  133 ---
 lib/celluloid/supervision_group.rb                 |  169 ---
 lib/celluloid/supervisor.rb                        |   22 -
 lib/celluloid/system_events.rb                     |   83 +-
 lib/celluloid/{tasks.rb => task.rb}                |   68 +-
 lib/celluloid/task/fibered.rb                      |   45 +
 lib/celluloid/task/threaded.rb                     |   59 +
 lib/celluloid/task_set.rb                          |   49 -
 lib/celluloid/tasks/task_fiber.rb                  |   43 -
 lib/celluloid/tasks/task_thread.rb                 |   53 -
 lib/celluloid/test.rb                              |    2 +-
 lib/celluloid/thread.rb                            |    7 +-
 lib/celluloid/thread_handle.rb                     |   50 -
 lib/celluloid/uuid.rb                              |   38 -
 lib/celluloid/version.rb                           |    3 +
 metadata.yml                                       |  354 ++++--
 spec/celluloid/actor/system_spec.rb                |   83 ++
 spec/celluloid/actor_spec.rb                       |    4 +-
 spec/celluloid/actor_system_spec.rb                |   69 --
 spec/celluloid/block_spec.rb                       |   75 +-
 spec/celluloid/calls_spec.rb                       |   51 +-
 spec/celluloid/condition_spec.rb                   |   37 +-
 spec/celluloid/cpu_counter_spec.rb                 |   82 --
 spec/celluloid/evented_mailbox_spec.rb             |   32 +-
 spec/celluloid/fsm_spec.rb                         |  107 --
 spec/celluloid/future_spec.rb                      |   27 +-
 spec/celluloid/group/elastic_spec.rb               |    0
 spec/celluloid/group/pool_spec.rb                  |    8 +
 spec/celluloid/group/spawner_spec.rb               |   17 +
 spec/celluloid/internal_pool_spec.rb               |   52 -
 spec/celluloid/links_spec.rb                       |   45 -
 spec/celluloid/logging/ring_buffer_spec.rb         |   38 -
 spec/celluloid/mailbox/evented_spec.rb             |   40 +
 spec/celluloid/mailbox_spec.rb                     |    4 +-
 spec/celluloid/misc/leak_spec.rb                   |   73 ++
 spec/celluloid/notifications_spec.rb               |  120 --
 spec/celluloid/pool_spec.rb                        |   92 --
 spec/celluloid/probe_spec.rb                       |  121 --
 spec/celluloid/properties_spec.rb                  |   42 -
 spec/celluloid/proxy_spec.rb                       |   33 +
 spec/celluloid/registry_spec.rb                    |   64 -
 spec/celluloid/stack_dump_spec.rb                  |   64 -
 spec/celluloid/supervision_group_spec.rb           |   65 -
 spec/celluloid/supervisor_spec.rb                  |  103 --
 spec/celluloid/task/fibered_spec.rb                |    5 +
 spec/celluloid/task/threaded_spec.rb               |    5 +
 spec/celluloid/tasks/task_fiber_spec.rb            |    5 -
 spec/celluloid/tasks/task_thread_spec.rb           |    5 -
 spec/celluloid/thread_handle_spec.rb               |   26 -
 spec/celluloid/timer_spec.rb                       |   30 +-
 spec/celluloid/uuid_spec.rb                        |   11 -
 spec/deprecate/actor_system_spec.rb                |   72 ++
 spec/{celluloid => deprecate}/block_spec.rb        |   16 +-
 spec/deprecate/calls_spec.rb                       |   39 +
 spec/deprecate/evented_mailbox_spec.rb             |   34 +
 spec/deprecate/future_spec.rb                      |   32 +
 spec/deprecate/internal_pool_spec.rb               |    4 +
 spec/shared/actor_examples.rb                      | 1259 ++++++++++++++++++++
 spec/shared/group_examples.rb                      |  121 ++
 spec/shared/mailbox_examples.rb                    |   87 ++
 .../rspec => spec/shared}/task_examples.rb         |   17 +-
 spec/spec_helper.rb                                |   47 +-
 spec/support/configure_rspec.rb                    |   77 ++
 spec/support/coverage.rb                           |    4 +
 spec/support/crash_checking.rb                     |   68 ++
 spec/support/debugging.rb                          |   31 +
 spec/support/env.rb                                |   21 +
 .../support/examples/actor_class.rb                |   23 +-
 spec/support/examples/call_class.rb                |   37 +
 .../examples/evented_mailbox_class.rb}             |    9 +-
 spec/support/includer.rb                           |    6 +
 spec/support/logging.rb                            |   55 +
 spec/support/loose_threads.rb                      |   68 ++
 spec/support/reset_class_variables.rb              |   27 +
 spec/support/sleep_and_wait.rb                     |   14 +
 spec/support/stubbing.rb                           |   14 +
 176 files changed, 5617 insertions(+), 5367 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-celluloid.git



More information about the Pkg-ruby-extras-commits mailing list