capsaicin 0.1.3 → 0.1.4

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.
data/Rakefile CHANGED
@@ -40,7 +40,7 @@ begin
40
40
 
41
41
  host = "#{config['username']}@rubyforge.org"
42
42
  remote_dir = "/var/www/gforge-projects/capsaicin/"
43
- local_dir = 'rdoc'
43
+ local_dir = 'doc'
44
44
 
45
45
  Rake::SshDirPublisher.new(host, remote_dir, local_dir).upload
46
46
  end
@@ -55,7 +55,7 @@ end
55
55
  desc "Generate RDoc documentation"
56
56
  Rake::RDocTask.new(:rdoc) do |rdoc|
57
57
  rdoc.options << '--line-numbers' << '--inline-source' <<
58
- '--main' << 'README' <<
58
+ '--main' << 'README.rdoc' <<
59
59
  '--title' << "Capsaicin" <<
60
60
  '--charset' << 'utf-8'
61
61
  rdoc.rdoc_dir = "doc"
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :minor: 1
3
- :patch: 3
3
+ :patch: 4
4
4
  :major: 0
@@ -1,5 +1,6 @@
1
1
  module Capsaicin
2
- module Bundle
2
+
3
+ module Bundle # :nodoc:
3
4
 
4
5
  end
5
6
 
@@ -34,7 +34,8 @@ module Capsaicin
34
34
  "def #{m}(*args, &block)\n send(_via.to_s + '_files').#{m}(*args, &block)\nend"
35
35
  end.join("\n"), __FILE__, __LINE__)
36
36
 
37
- def _via
37
+
38
+ def _via # :nodoc:
38
39
  if LOCAL_RUN_METHODS.include? @config.fetch(:run_method, nil)
39
40
  :local
40
41
  else
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capsaicin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joe Khoobyar