Sha256: f5d47381d506ab58fc2724a10eb33d39a5024a46ca96f1978a4f5d610d04dbe5

Contents?: true

Size: 566 Bytes

Versions: 2

Compression:

Stored size: 566 Bytes

Contents

#!/usr/bin/env ruby
require "bundler/setup"
require "breathe_in"

BreatheIn::CLI.new.run

# or:
# require "bundler"
# Bundler.require
# this will clear the load path
# or:
# require_relative '../lib/breathe_in'

# 1. CLI asks for a city.
# 2. city checks if we have that city, if not
#   3. Scrape it and create the instance of that city
# 3. cli has the city

# The cli is just relying on the city classes abilit to find a city.
# City class is relying on the scraper class to get data for itself.

# 1. cli.
# 2. city
# 3. scraper


# cli
# a. scraper
# or b .city

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
breathe_in-0.4.1 bin/breathe_in
breathe_in-0.4.0 bin/breathe_in