celluloid_pubsub 0.0.5 → 0.0.6
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/.gitignore +1 -0
- data/.rubocop.yml +1 -1
- data/Guardfile +4 -0
- data/Rakefile +12 -1
- data/bin/inch +16 -0
- data/bin/sparkr +16 -0
- data/celluloid_pubsub.gemspec +2 -1
- data/doc/CelluloidPubsub/Client/PubSubWorker.html +3676 -0
- data/doc/CelluloidPubsub/Client.html +340 -0
- data/doc/CelluloidPubsub/Reactor.html +3502 -0
- data/doc/CelluloidPubsub/Registry.html +234 -0
- data/doc/CelluloidPubsub/VERSION.html +204 -0
- data/doc/CelluloidPubsub/WebServer.html +4275 -0
- data/doc/CelluloidPubsub.html +225 -0
- data/doc/_index.html +184 -0
- data/doc/class_list.html +58 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +57 -0
- data/doc/css/style.css +339 -0
- data/doc/file.README.html +226 -0
- data/doc/file_list.html +60 -0
- data/doc/frames.html +26 -0
- data/doc/index.html +226 -0
- data/doc/js/app.js +219 -0
- data/doc/js/full_list.js +181 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +357 -0
- data/doc/top-level-namespace.html +112 -0
- data/examples/simple_test.rb +3 -1
- data/lib/celluloid_pubsub/client_pubsub.rb +117 -0
- data/lib/celluloid_pubsub/reactor.rb +138 -7
- data/lib/celluloid_pubsub/registry.rb +3 -0
- data/lib/celluloid_pubsub/version.rb +15 -2
- data/lib/celluloid_pubsub/web_server.rb +112 -0
- metadata +41 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1833a05889721cb39fb28fcd4295d724985e301b
|
4
|
+
data.tar.gz: eecc1ed416017585290b9528851b0f0385512569
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e923732287625cde95c8fa87986e880966770a16ffc730281ed0bde28818bcf4358d16f6e7fd48414f05c65cb3c3149799fe32d4834db95da0249300decf4e4e
|
7
|
+
data.tar.gz: 88554a21d3d13ea42efc524440e132c3eefa885b38f1a335628293b785595649b96e5ee4e4fcedf669c9e68b42457fa7b31d75b4a8e8e19ab4f2efc1ab77f0ba
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
data/Guardfile
CHANGED
data/Rakefile
CHANGED
@@ -2,6 +2,7 @@ require 'bundler/setup'
|
|
2
2
|
require 'bundler/gem_tasks'
|
3
3
|
require 'rspec/core/rake_task'
|
4
4
|
require 'coveralls/rake/task'
|
5
|
+
require 'yard'
|
5
6
|
Coveralls::RakeTask.new
|
6
7
|
|
7
8
|
RSpec::Core::RakeTask.new(:spec) do |spec|
|
@@ -16,6 +17,12 @@ end
|
|
16
17
|
# Rake::Task["db:test:prepare"].invoke
|
17
18
|
# end
|
18
19
|
|
20
|
+
YARD::Rake::YardocTask.new do |t|
|
21
|
+
t.files = ['lib/**/*.rb'] # optional
|
22
|
+
t.options = ['--any', '--extra', '--opts'] # optional
|
23
|
+
t.stats_options = ['--list-undoc'] # optional
|
24
|
+
end
|
25
|
+
|
19
26
|
unless ENV['TRAVIS']
|
20
27
|
require 'rvm-tester'
|
21
28
|
RVM::Tester::TesterTask.new(:suite) do |t|
|
@@ -37,6 +44,10 @@ task :all do |_t|
|
|
37
44
|
if ENV['TRAVIS']
|
38
45
|
exec(' bundle exec phare && bundle exec rake spec && bundle exec rake coveralls:push')
|
39
46
|
else
|
40
|
-
exec('
|
47
|
+
exec('bundle exec phare && bundle exec rake spec')
|
41
48
|
end
|
42
49
|
end
|
50
|
+
|
51
|
+
task :docs do
|
52
|
+
exec(' bundle exec rubocop -a . && bundle exec phare && bundle exec inch --pedantic && bundle exec yard')
|
53
|
+
end
|
data/bin/inch
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# This file was generated by Bundler.
|
4
|
+
#
|
5
|
+
# The application 'inch' is installed as part of a gem, and
|
6
|
+
# this file is here to facilitate running it.
|
7
|
+
#
|
8
|
+
|
9
|
+
require 'pathname'
|
10
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
+
Pathname.new(__FILE__).realpath)
|
12
|
+
|
13
|
+
require 'rubygems'
|
14
|
+
require 'bundler/setup'
|
15
|
+
|
16
|
+
load Gem.bin_path('inch', 'inch')
|
data/bin/sparkr
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# This file was generated by Bundler.
|
4
|
+
#
|
5
|
+
# The application 'sparkr' is installed as part of a gem, and
|
6
|
+
# this file is here to facilitate running it.
|
7
|
+
#
|
8
|
+
|
9
|
+
require 'pathname'
|
10
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
+
Pathname.new(__FILE__).realpath)
|
12
|
+
|
13
|
+
require 'rubygems'
|
14
|
+
require 'bundler/setup'
|
15
|
+
|
16
|
+
load Gem.bin_path('sparkr', 'sparkr')
|
data/celluloid_pubsub.gemspec
CHANGED
@@ -35,5 +35,6 @@ Gem::Specification.new do |s|
|
|
35
35
|
s.add_development_dependency 'phare', '~> 0.6', '>= 0.6'
|
36
36
|
s.add_development_dependency 'scss-lint', '~> 0.34', '>= 0.34'
|
37
37
|
s.add_development_dependency 'yard', '~> 0.8.7', '>= 0.8.7'
|
38
|
-
s.add_development_dependency '
|
38
|
+
s.add_development_dependency 'inch', '~> 0.5.10'
|
39
|
+
s.add_development_dependency 'guard-inch', '~> 0.1.0'
|
39
40
|
end
|