celluloid-manager 0.0.0.pre

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 72a9961b348b199da66b544d1e1bd32e26758456
4
+ data.tar.gz: 84d968c1d42e351a230eb269d7c1dfa31eda244b
5
+ SHA512:
6
+ metadata.gz: 4747a0de081f302111df8fcedae0009f9225ab966cb1862b403bfbf1733b48f90d80fc420f5f245c5f29292f6f53ae9061219036ec9526b20e1f95ce53a2eebf
7
+ data.tar.gz: 87817943f8fe8c7d238397a12f4baefd61bc77947dbcf72727f907f948d94f9a364860f98aeac394d22293d3c40636b217ba6ee12ca5dd4ae09f8c39f0712f0a
data/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ Gemfile.lock
2
+ pkg/
3
+ *.pkg
4
+ .DS_Store
data/Gemfile ADDED
@@ -0,0 +1,13 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ #de This duplicate listing alongside the gemspec listing, and yet *after* the gemspec call above
6
+ #de is purely to allow the local-override of this gem ( bundle config local.celluloid /path ),
7
+ #de for purposes of development... otherwise this can be omitted at time of release:
8
+ gem 'celluloid', github: 'celluloid/celluloid', branch: 'master', submodules: true
9
+
10
+ group :test do
11
+ gem 'rake'
12
+ gem 'rspec', '~> 3.2'
13
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Donovan Keme
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # celluloid-manager
2
+
3
+ Auxiliary Actor::System management actor for Celluloid.
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ require "bundler/gem_tasks"
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec) do |spec|
5
+ spec.pattern = 'spec/**/*_spec.rb'
6
+ spec.rspec_opts = ['--color --format documentation']
7
+ end
8
+ task :default => :spec
@@ -0,0 +1,18 @@
1
+ # coding: utf-8
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "celluloid-manager"
5
+ spec.version = "0.0.0.pre"
6
+ spec.authors = ["Donovan Keme"]
7
+ spec.email = ["code@extremist.digital"]
8
+
9
+ spec.summary = "Auxiliary Actor::System management actor for Celluloid."
10
+ spec.description = "Modular system for outfitting an actor who maintains the Actor::System."
11
+ spec.homepage = "http://github.com/celluloid/celluloid-manager"
12
+ spec.license = "MIT"
13
+
14
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|examples|spec|features)/}) }
15
+ spec.require_paths = ["lib"]
16
+
17
+ spec.add_runtime_dependency "celluloid", "~> 0.17.0"
18
+ end
@@ -0,0 +1 @@
1
+ #de TODO: Extract from Celluloid
@@ -0,0 +1 @@
1
+ require 'celluloid/actor/manager'
metadata ADDED
@@ -0,0 +1,66 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: celluloid-manager
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0.pre
5
+ platform: ruby
6
+ authors:
7
+ - Donovan Keme
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-08-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: celluloid
15
+ type: :runtime
16
+ prerelease: false
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - "~>"
20
+ - !ruby/object:Gem::Version
21
+ version: 0.17.0
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.17.0
27
+ description: Modular system for outfitting an actor who maintains the Actor::System.
28
+ email:
29
+ - code@extremist.digital
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".gitignore"
35
+ - Gemfile
36
+ - LICENSE.txt
37
+ - README.md
38
+ - Rakefile
39
+ - celluloid-manager.gemspec
40
+ - lib/celluloid/actor/manager.rb
41
+ - lib/celluloid/manager.rb
42
+ homepage: http://github.com/celluloid/celluloid-manager
43
+ licenses:
44
+ - MIT
45
+ metadata: {}
46
+ post_install_message:
47
+ rdoc_options: []
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">"
58
+ - !ruby/object:Gem::Version
59
+ version: 1.3.1
60
+ requirements: []
61
+ rubyforge_project:
62
+ rubygems_version: 2.4.8
63
+ signing_key:
64
+ specification_version: 4
65
+ summary: Auxiliary Actor::System management actor for Celluloid.
66
+ test_files: []