An open API service indexing awesome lists of open source software.

https://github.com/muhammadawaisshaikh/web-srcrapper-ror

Web Scrapper using Ruby
https://github.com/muhammadawaisshaikh/web-srcrapper-ror

nokogiri pry ruby

Last synced: over 1 year ago
JSON representation

Web Scrapper using Ruby

Awesome Lists containing this project

README

          

# web-srcrapper-ror

# creating new app
rails new web-srcrapper-ror

# adding GEMS
gem "nokogiri"
gem "pry"

# show responce in terminal by typing:
ruby main.rb

# refrence
https://medium.com/@jonwu_/scraping-with-nokogiri-without-blowing-your-brains-out-da3137082370

# gem 'sinatra'
Sinatra is a DSL for quickly creating web applications in Ruby with minimal effort

# passing data to view
<% @data.each do |item| %>

<%= item %>


<% end %>

# starting sinatra server
ruby main.rb