summaryrefslogtreecommitdiff
path: root/jni/ruby/sample/ripper/strip-comment.rb
blob: 102387591707fa55e578e085ec46e2872168d190 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# $Id: strip-comment.rb 25189 2009-10-02 12:04:37Z akr $

require 'ripper/filter'

class CommentStripper < Ripper::Filter
  def CommentStripper.strip(src)
    new(src).parse(nil)
  end

  def on_default(event, token, data)
    print token
  end

  def on_comment(token, data)
    puts
  end
end

CommentStripper.strip(ARGF)