rocco-obb 0.6 → 0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/rocco.rb +8 -4
  2. data/rocco.gemspec +1 -1
  3. metadata +3 -3
data/lib/rocco.rb CHANGED
@@ -108,7 +108,11 @@ class Rocco
108
108
  elsif @options[:language] != defaults[:language]
109
109
  @options[:comment_chars] = generate_comment_chars()
110
110
  end
111
- @comment_pattern = Regexp.new("^\\s*#{@options[:comment_chars]}\s?")
111
+ if !@options[:comment_chars][:single].kind_of?(String)
112
+ @comment_pattern = Regexp.new("^\\s*#{@options[:comment_chars][:single]}\s?")
113
+ else
114
+ @comment_pattern = Regexp.new("#{@options[:comment_chars][:single]}|#{@options[:comment_chars][:multi]}")
115
+ end
112
116
 
113
117
  @sections = highlight(split(parse(@data)))
114
118
  end
@@ -173,15 +177,15 @@ class Rocco
173
177
  "cpp" => { :single => "//", :multi => { :start => "/**", :middle => "*", :end => "*/" } },
174
178
  "java" => { :single => "//", :multi => { :start => "/**", :middle => "*", :end => "*/" } },
175
179
  "js" => { :single => "//", :multi => { :start => "/**", :middle => "*", :end => "*/" } },
176
- "php" => { :single => "\/\*[^*]*\*+([^\/*][^*]*\*+)*\/|^\s*\/\/ ?", :multi => { :start => "/**", :middle => "*", :end => "*/" } },
180
+ "php" => { :single => "\s\/\/([^\n]*)", :multi => "\/\*\*(.*?)\*{1,2}\/" },
177
181
  "lua" => { :single => "--", :multi => nil },
178
182
  "python" => { :single => "#", :multi => { :start => '"""', :middle => nil, :end => '"""' } },
179
183
  "ruby" => { :single => "#", :multi => nil },
180
184
  "scheme" => { :single => ";;", :multi => nil },
181
185
  }
182
-
186
+
183
187
  if comment_styles[language]
184
- comment_styles[language][:single]
188
+ comment_styles[language]
185
189
  else
186
190
  @options[:comment_chars]
187
191
  end
data/rocco.gemspec CHANGED
@@ -3,7 +3,7 @@ Gem::Specification.new do |s|
3
3
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
4
4
 
5
5
  s.name = 'rocco-obb'
6
- s.version = '0.6'
6
+ s.version = '0.7'
7
7
  s.date = '2010-09-10'
8
8
 
9
9
  s.description = "Docco in Ruby"
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rocco-obb
3
3
  version: !ruby/object:Gem::Version
4
- hash: 7
4
+ hash: 5
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 6
9
- version: "0.6"
8
+ - 7
9
+ version: "0.7"
10
10
  platform: ruby
11
11
  authors:
12
12
  - Ryan Tomayko