best way for removing comment from ruby program


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting best way for removing comment from ruby program
# 1  
Old 09-01-2009
MySQL best way for removing comment from ruby program

Hi all,

I would want to remove all comments from my ruby/rails program. It may seem like a simple task, but it is not so. Because you need to have your tool implemented as like your language parser which is actually not so easy.

And am in the search of it, to remove comment from ruby/rails. Hoping help from somebody to suggest about proven way to remove all comments from the source file..

I already searched for some options in ruby command, and it is not there. And googled too.. but unable to. So kindly help me out in achieving this..
# 2  
Old 09-01-2009
Can you put some sample code and whts ur expected output
# 3  
Old 09-01-2009
Single line comments:
Code:
grep -v '^#'

For everything else:
Code:
perl -ne 'BEGIN{ $skip=0; } next if /^#[^!]/; if(/^=begin/){$skip=1; next;} if(/^=end/){$skip=0; next;} next if $skip; print' yourfile.rb

# 4  
Old 09-01-2009
If i have not communicated the requirement correctly, let me do it now.

I can write Perl programs to remove the comment, but it is tough to handle all the cases such as,
1. removing single line comment,
2. removing multi line comment,
3. removing comments which are in the side of code

It should not remove the code wrongly, because in ruby,
1. we can access variables using #.
2. A string which can contain # in it.
And lot other cases which i dont know. As i want to use this way for a sensitive application, the implementation which i do should not affect the code.

So i want to know about a proven tool or best method to remove source from ruby/rails program. Where as for php we have two standard ways as -w option, or a function in php can parse and give the tokens.

For perl, removing comment in perl is by"perltidy -dac".

I am searching for such a standard way for ruby/rails. Thanks for your time.
# 5  
Old 09-10-2009
MySQL

When i started to search for a more promising way than implementing it by myself, i got the way as:
Code:
ruby_parser and ruby2ruby gems will do this

It is from a ruby forum, if somebody needy can check out here.
Remove comments from ruby source code? - Ruby Forum

So the right way for removing comment from a programming language is, ask the interpreter/compiler of that language which only can do it exactly !!

Anyway thanks for all your time, Cheers.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Removing PATTERN from txt without removing lines and general text formatting

Hi Everybody! First post! Totally noobie. I'm using the terminal to read a poorly formatted book. The text file contains, in the middle of paragraphs, hyphenation to split words that are supposed to be on multiple pages. It looks ve -- ry much like this. I was hoping to use grep -v " -- "... (5 Replies)
Discussion started by: AxeHandle
5 Replies

2. What is on Your Mind?

Ruby language

Hi All, Could you please suggest books for learning ruby and python language ? Thanks, Pravin (1 Reply)
Discussion started by: pravin27
1 Replies

3. Shell Programming and Scripting

Removing the sas comment line using UNIX

I have tried a lot, Need your help guys. SAS Program: data one ; /* Data step */ Input name $; /*Dec variables*/ I want to remove the commented part(/* Data step */) alone. I have tried using sed command but it is deleting the entire line itself. i need unix command to separate this and... (6 Replies)
Discussion started by: saaisiva
6 Replies

4. Shell Programming and Scripting

Comment/Devbug traverser ruby Script

Hello all, i need some help, having never herd of ruby before i joined my workplace im now saddled with alot of scripts written in ruby and i need to find out how to debug certain things (values of array's hashes etc). What i need is how to view each step in this command in a log file: ... (0 Replies)
Discussion started by: limamichelle
0 Replies

5. Shell Programming and Scripting

sed adding/removing comment in crontab

I have a requirement where I want to add a comment '#' in my crontab, run a process, than remove the '#' I added. Example cron #5,10 * * * * ls -lt /tmp 10,5 * * * * ls -lt /var I would like to be able use sed or awk to add a '#' at the begining of each line. After the command... (4 Replies)
Discussion started by: BeefStu
4 Replies

6. Shell Programming and Scripting

What is Ruby?

Lately there have been a lot of one-liners posted in "ruby" on the apparent assumption that mainstream unix or Linux come with "ruby. They don't. What is "ruby"? What platforms and Operating System versions are supported? The syntax for "ruby" seems remarkably obscure compared with say "awk"... (13 Replies)
Discussion started by: methyl
13 Replies

7. Shell Programming and Scripting

Writing a 'Mad Libs' program using Ruby?

How would I go about writing a 'Mad Libs' type program using Ruby? Any examples would be greatly appreciated. Thanks! (0 Replies)
Discussion started by: greeky
0 Replies

8. Shell Programming and Scripting

best way for removing comment from shell scripts -- bash

Again a comment removal requirement from me, refer my previous problem & solution for removing comment from ruby scripts: https://www.unix.com/shell-programming-scripting/118296-best-way-removing-comment-ruby-program.html This time, it is for stripping of comments from Shell Script. I search for... (2 Replies)
Discussion started by: thegeek
2 Replies
Login or Register to Ask a Question