Reputation: 1
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
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
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