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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3cadbce82ae6b66ea77ba768fe90ec8fbc761bb1
4
- data.tar.gz: ac2d82051f17463fe80dc83950dede59c4e38efa
3
+ metadata.gz: 1833a05889721cb39fb28fcd4295d724985e301b
4
+ data.tar.gz: eecc1ed416017585290b9528851b0f0385512569
5
5
  SHA512:
6
- metadata.gz: f2b707bfc85a7abc10ec2705dbf56dfa971fb44b33616e060520cc989a48fb492062c5ec4979d0b0c07333908e3b8ea81e369c8c5eabfddbc7c43f7e3dd859a3
7
- data.tar.gz: 547377d28faf751328c4304dad0a644fed6239d3ffcb45b083cbbc1d4005bdf395b1957b59c017255100f2a622727db153dd810627dc62b3270fac0dafeca4c5
6
+ metadata.gz: e923732287625cde95c8fa87986e880966770a16ffc730281ed0bde28818bcf4358d16f6e7fd48414f05c65cb3c3149799fe32d4834db95da0249300decf4e4e
7
+ data.tar.gz: 88554a21d3d13ea42efc524440e132c3eefa885b38f1a335628293b785595649b96e5ee4e4fcedf669c9e68b42457fa7b31d75b4a8e8e19ab4f2efc1ab77f0ba
data/.gitignore CHANGED
@@ -14,3 +14,4 @@ tags
14
14
  Gemfile.lock
15
15
  /nbproject/
16
16
  /.git-rewrite/
17
+ .yardoc/
data/.rubocop.yml CHANGED
@@ -5,7 +5,7 @@ AllCops:
5
5
  - Guardfile
6
6
 
7
7
  Documentation:
8
- Enabled: false
8
+ Enabled: true
9
9
 
10
10
  Encoding:
11
11
  Enabled: false
data/Guardfile CHANGED
@@ -10,3 +10,7 @@ guard 'rspec' do
10
10
  end
11
11
 
12
12
  # vim:ft=ruby
13
+
14
+ guard :inch do
15
+ watch(/.+\.rb/)
16
+ end
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(' bundle exec phare && bundle exec rake spec')
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')
@@ -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 'yardstick', '~> 0.9.9', '>= 0.9.9'
38
+ s.add_development_dependency 'inch', '~> 0.5.10'
39
+ s.add_development_dependency 'guard-inch', '~> 0.1.0'
39
40
  end