This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| so what we do | |
| is have multiple repos, some public some private | |
| you can add private repos to a "meta-waffle” (the repo that sorta holds all others underneath it for waffle’s purposes) | |
| and then it will show up for YOU (and others with permissions) but not for OTHERS | |
| Waffle instructions for managing multiple repos in a single waffle: https://github.com/waffleio/waffle.io/wiki/FAQs#multirepo | |
| so what i’d do is create a new repo (public) called something like “kansas-city-fellows” or somesuch | |
| then that can be the “meta waffle” and you can configure it per the above link by adding additional project-specific repos |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'httparty' | |
| require 'nokogiri' | |
| require 'pry' | |
| page = HTTParty.get("http://lafayette.granicus.com/ViewPublisher.php?view_id=3").body | |
| parsed_page = Nokogiri::HTML(page) | |
| all_agenda_link_elements = parsed_page.css("a").select { |link| link.children.text == "Agenda" } | |
| first_agenda = HTTParty.get all_agenda_link_elements[1].attributes["href"].value | |
| binding.pry |
OlderNewer