[DRE-commits] [ruby-celluloid] branch master updated (543f8b6 -> 63a06ab)
Cédric Boutillier
boutil at moszumanska.debian.org
Fri Jan 24 00:25:49 UTC 2014
This is an automated email from the git hooks/post-receive script.
boutil pushed a change to branch master
in repository ruby-celluloid.
from 543f8b6 target unstable
adds eb29b6e Imported Upstream version 0.15.2
new 8972da0 Merge tag 'upstream/0.15.2'
new 8178773 refresh patches
new 79c337d do not install CHANGES.md, not shipped by upstream this time
new cf60233 create a log/ dir for the tests and remove it afterwards
new 33e7926 Bump Standards-Version to 3.9.5 (no changes needed)
new 28b0c95 install README
new 63a06ab prepare changelog
The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.coveralls.yml | 1 -
.document | 5 -
.gitignore | 7 -
.rspec | 4 -
.travis.yml | 18 --
CHANGES.md | 259 -----------------
CONTRIBUTING.md | 38 ---
Gemfile | 8 -
Guardfile | 5 -
LICENSE.txt | 20 --
README.md | 8 +-
Rakefile | 5 -
benchmarks/actor.rb | 57 ----
benchmarks/parallel_hash.rb | 15 -
benchmarks/ring.rb | 14 -
benchmarks/uuid.rb | 10 -
celluloid.gemspec | 29 --
checksums.yaml.gz | Bin 0 -> 269 bytes
debian/changelog | 12 +
debian/control | 2 +-
debian/patches/fix_relative_path_rspec.patch | 6 +-
.../remove-rubygems-bundler-coveralls.patch | 14 +-
debian/ruby-celluloid.docs | 3 +-
debian/rules | 5 +-
examples/basic_usage.rb | 49 ----
examples/cigarette_smokers.rb | 323 ---------------------
examples/futures.rb | 38 ---
examples/pool.rb | 39 ---
examples/ring.rb | 63 ----
examples/simple_pmap.rb | 12 -
examples/supervisors_and_registry.rb | 86 ------
examples/timers.rb | 47 ---
lib/celluloid.rb | 202 ++++++-------
lib/celluloid/actor.rb | 135 ++++-----
lib/celluloid/autostart.rb | 2 +-
lib/celluloid/call_chain.rb | 13 +
lib/celluloid/calls.rb | 13 +-
lib/celluloid/condition.rb | 70 ++---
lib/celluloid/cpu_counter.rb | 2 +-
lib/celluloid/evented_mailbox.rb | 17 +-
lib/celluloid/fsm.rb | 2 +-
lib/celluloid/future.rb | 44 ++-
lib/celluloid/internal_pool.rb | 109 +++++--
lib/celluloid/legacy.rb | 38 ---
lib/celluloid/mailbox.rb | 27 +-
lib/celluloid/pool_manager.rb | 3 +-
lib/celluloid/properties.rb | 24 ++
lib/celluloid/proxies/abstract_proxy.rb | 3 +
lib/celluloid/proxies/actor_proxy.rb | 35 +--
lib/celluloid/proxies/async_proxy.rb | 12 +-
lib/celluloid/proxies/future_proxy.rb | 14 +-
lib/celluloid/proxies/sync_proxy.rb | 19 +-
lib/celluloid/rspec.rb | 6 +-
lib/celluloid/signals.rb | 42 +--
lib/celluloid/stack_dump.rb | 87 +++---
lib/celluloid/supervision_group.rb | 11 +-
lib/celluloid/system_events.rb | 1 +
lib/celluloid/task_set.rb | 49 ++++
lib/celluloid/tasks.rb | 119 +++++---
lib/celluloid/tasks/task_fiber.rb | 8 +-
lib/celluloid/tasks/task_thread.rb | 4 +-
lib/celluloid/test.rb | 3 +
lib/celluloid/thread.rb | 74 +----
lib/celluloid/thread_handle.rb | 3 +-
lib/celluloid/version.rb | 4 -
log/.gitignore | 1 -
metadata.yml | 193 ++++++++++++
spec/celluloid/calls_spec.rb | 2 +-
spec/celluloid/condition_spec.rb | 19 +-
spec/celluloid/fsm_spec.rb | 6 +-
spec/celluloid/internal_pool_spec.rb | 21 ++
spec/celluloid/links_spec.rb | 6 +-
spec/celluloid/pool_spec.rb | 7 +
spec/celluloid/properties_spec.rb | 42 +++
spec/celluloid/stack_dump_spec.rb | 25 +-
spec/celluloid/supervision_group_spec.rb | 14 +
spec/celluloid/tasks/task_fiber_spec.rb | 2 +-
spec/celluloid/thread_handle_spec.rb | 4 +
spec/celluloid/uuid_spec.rb | 2 +-
spec/spec_helper.rb | 21 +-
spec/support/actor_examples.rb | 206 ++++++++++---
spec/support/example_actor_class.rb | 8 +
spec/support/mailbox_examples.rb | 18 +-
spec/support/task_examples.rb | 4 +-
tasks/benchmarks.task | 16 -
tasks/rspec.task | 7 -
86 files changed, 1174 insertions(+), 1847 deletions(-)
delete mode 100644 .coveralls.yml
delete mode 100644 .document
delete mode 100644 .gitignore
delete mode 100644 .rspec
delete mode 100644 .travis.yml
delete mode 100644 CHANGES.md
delete mode 100644 CONTRIBUTING.md
delete mode 100644 Gemfile
delete mode 100644 Guardfile
delete mode 100644 LICENSE.txt
delete mode 100644 Rakefile
delete mode 100755 benchmarks/actor.rb
delete mode 100644 benchmarks/parallel_hash.rb
delete mode 100644 benchmarks/ring.rb
delete mode 100644 benchmarks/uuid.rb
delete mode 100644 celluloid.gemspec
create mode 100644 checksums.yaml.gz
delete mode 100644 examples/basic_usage.rb
delete mode 100644 examples/cigarette_smokers.rb
delete mode 100644 examples/futures.rb
delete mode 100644 examples/pool.rb
delete mode 100755 examples/ring.rb
delete mode 100644 examples/simple_pmap.rb
delete mode 100644 examples/supervisors_and_registry.rb
delete mode 100644 examples/timers.rb
create mode 100644 lib/celluloid/call_chain.rb
create mode 100644 lib/celluloid/properties.rb
create mode 100644 lib/celluloid/task_set.rb
create mode 100644 lib/celluloid/test.rb
delete mode 100644 lib/celluloid/version.rb
delete mode 100644 log/.gitignore
create mode 100644 metadata.yml
create mode 100644 spec/celluloid/properties_spec.rb
delete mode 100644 tasks/benchmarks.task
delete mode 100644 tasks/rspec.task
--
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