beanluc
beanluc

Reputation: 1

How do I use a project source package written in Ruby?

I have just read the Ruby User's Guide at http://www.rubyist.net/~slagell/ruby/getstarted.html, I didn't find what I was looking for... which is, How do I use ruby source which I downloaded? There's a Makefile in it, do I just run GNU make -f like for any other source?

All I am trying to do is build and use whatweb (https://github.com/urbanadventurer/WhatWeb/wiki/Installation) from its source package.

Upvotes: 0

Views: 147

Answers (2)

ayckoster
ayckoster

Reputation: 6837

Please do read READMEs developers provide. The README will point to https://github.com/urbanadventurer/WhatWeb/wiki/Installation which describe the installation process.

There you find that you need to install dependencies. As already stated Ruby is interpreted and does not need to be compiled.

Upvotes: 1

AndreDurao
AndreDurao

Reputation: 5795

....If I understad it well, you shouldn't build it(Ruby is an interpreted language). You just run the script like:

$ ./whatweb slashdot.org reddit.com at "2. Example Usage" from whatweb documentation..

Is that what you need?

Upvotes: 0

Related Questions