vote up 2 vote down star
2

I want to read only the first line of a file using Ruby in the fastest, simplest, most idiomatic way possible. What's the best approach?

(Specifically: I want to read the git commit UUID out of the REVISION file in my latest Capistrano-deployed Rails directory, and then output that to my tag. This will let me see at an http-glance what version is deployed to my server. If there's an entirely different & better way to do this, please let me know.)

flag

5 Answers

vote up 10 vote down check

This will read exactly one line and ensure that the file is properly closed immediately after.

File.open('somefile.txt') {|f| f.readline}
link|flag
vote up 1 vote down
first_line = open("filename").gets
link|flag
vote up 1 vote down

You can try this:

File.foreach('path_to_file').first
link|flag
LocalJumpError: no block given – klochner Sep 29 at 1:43
@klochner: Your Ruby is old. This works fine in 1.8.7 and above. – Chuck Sep 29 at 1:55
Sorry Vincent, I can't remove downvote unless you make some minor edit. – klochner Sep 29 at 2:09
Sorry guys. Chuck answer is the right one. – Vincent Sep 29 at 2:34
I upvoted this one because I like the "first"ness of it. Unfortunately, my Rails host (DreamHost) is only on 1.8.5, so it isn't the "correct" one for me. :-\ – Craig Walker Sep 29 at 3:33
show 1 more comment
vote up 3 vote down

How to read the first line in a ruby file:

commit_hash = File.open("filename.txt").first

Alternatively you could just do a git-log from inside your application:

commit_hash = `git log -1 --pretty=format:"%H"`

The %H tells the format to print the full commit hash. There are also modules which allow you to access your local git repo from inside a Rails app in a more ruby-ish manner although I have never used them.

link|flag
vote up 1 vote down

I think the jkupferman suggestion of investigating the git --pretty options makes the most sense, however yet another approach would be the head command e.g.

ruby -e 'puts head -n 1 filename' #(backtick before head and after filename)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.