{"id":20460963,"url":"https://github.com/ericgj/portera","last_synced_at":"2025-03-05T11:27:23.835Z","repository":{"id":2521200,"uuid":"3497206","full_name":"ericgj/portera","owner":"ericgj","description":"Group event coordination","archived":false,"fork":false,"pushed_at":"2012-03-11T23:36:27.000Z","size":132,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-16T00:35:19.859Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ericgj.png","metadata":{"files":{"readme":"README.rdoc","changelog":"CHANGELOG.markdown","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-02-20T19:56:47.000Z","updated_at":"2019-10-01T04:14:39.000Z","dependencies_parsed_at":"2022-09-16T22:12:47.343Z","dependency_job_id":null,"html_url":"https://github.com/ericgj/portera","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericgj%2Fportera","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericgj%2Fportera/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericgj%2Fportera/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericgj%2Fportera/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ericgj","download_url":"https://codeload.github.com/ericgj/portera/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242017413,"owners_count":20058424,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-15T12:22:39.510Z","updated_at":"2025-03-05T11:27:23.810Z","avatar_url":"https://github.com/ericgj.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"= portera\r\n\r\n== DESCRIPTION:\r\n\r\nAn application for determining the best time to conduct meetings.\r\n\r\nAdapted from Gordon Thiesfeld's {rmu-scheduler}[https://github.com/vertiginous/rmu-scheduler]\r\n\r\n\r\n== SYNOPSIS:\r\n\r\n==== Basic usage\r\n\r\n    schedule = Portera::Event.new do \r\n    \r\n      week_of       Date.civil(2010,11,21)\r\n      duration      90\r\n\r\n    end\r\n    \r\n    schedule.participants \u003c\u003c \r\n      Portera::Participant.new('Malcolm Reynolds').available do\r\n        on(:monday,    :from =\u003e \"15:00\", :to =\u003e \"18:00\" )\r\n        on(:wednesday, :from =\u003e \"20:00\", :to =\u003e \"23:00\" )\r\n        on(:friday,    :from =\u003e \"16:00\", :to =\u003e \"19:00\" )\r\n      end\r\n\r\n    schedule.participants \u003c\u003c\r\n      Portera::Participant.new('Hoban Washburne').available do\r\n        on(:monday,    :from =\u003e \"15:00\", :to =\u003e \"18:00\" )\r\n        on(:wednesday, :from =\u003e \"20:00\", :to =\u003e \"23:00\" )\r\n        on(:thursday,  :from =\u003e \"15:00\", :to =\u003e \"18:30\" )\r\n      end\r\n\r\n    schedule.participants \u003c\u003c\r\n      Portera::Participant.new('Jayne Cobb').available do\r\n        weekdays(:from =\u003e \"15:00\", :to =\u003e \"18:00\" )\r\n      end\r\n\r\n    schedule.participants \u003c\u003c\r\n      Portera::Participant.new('Zoe Washburne').available do\r\n        on([:monday, :tuesday, :thursday], :from =\u003e \"15:00\", :to =\u003e \"18:00\" )\r\n      end\r\n\r\n    schedule.participants \u003c\u003c\r\n      Portera::Participant.new('Inara Serra').available do\r\n        on([:monday, :tuesday, :thursday])\r\n      end\r\n       \r\n    puts Portera.view(:simple, schedule)\r\n\r\n==== Output\r\n\r\n    Monday 15:00-18:00 +00:00\r\n      Hoban Washburne\r\n      Inara Serra\r\n      Jayne Cobb\r\n      Malcolm Reynolds\r\n      Zoe Washburne\r\n    Thursday 15:00-18:00 +00:00\r\n      Hoban Washburne\r\n      Inara Serra\r\n      Jayne Cobb\r\n      Zoe Washburne\r\n    Tuesday 15:00-18:00 +00:00\r\n      Inara Serra\r\n      Jayne Cobb\r\n      Zoe Washburne\r\n\r\n    \r\n== REQUIREMENTS:\r\n\r\n* {tempr}[https://github.com/ericgj/tempr]\r\n* {tilt}[https://github.com/rtomayko/tilt]\r\n* {erubis}[http://www.kuwata-lab.com/erubis/]\r\n\r\n== INSTALL:\r\n\r\n* git clone \r\n\r\n== LICENSE:\r\n\r\n(The MIT License)\r\n\r\nCopyright (c) 2012 Eric Gjertsen\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n'Software'), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\r\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\r\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\r\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\r\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericgj%2Fportera","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fericgj%2Fportera","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericgj%2Fportera/lists"}