{"id":19680114,"url":"https://github.com/drewolson/pipe","last_synced_at":"2025-04-29T04:31:05.522Z","repository":{"id":464096,"uuid":"88611","full_name":"drewolson/pipe","owner":"drewolson","description":"RSS filtering and aggregation","archived":false,"fork":false,"pushed_at":"2008-12-24T03:52:04.000Z","size":99,"stargazers_count":16,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-22T00:28:18.999Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://drewolson.github.com/pipe","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/drewolson.png","metadata":{"files":{"readme":"README.txt","changelog":"History.txt","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":"2008-12-11T02:45:39.000Z","updated_at":"2025-02-21T02:51:06.000Z","dependencies_parsed_at":"2022-08-06T09:15:25.474Z","dependency_job_id":null,"html_url":"https://github.com/drewolson/pipe","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drewolson%2Fpipe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drewolson%2Fpipe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drewolson%2Fpipe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drewolson%2Fpipe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/drewolson","download_url":"https://codeload.github.com/drewolson/pipe/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251432699,"owners_count":21588630,"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-11T18:04:02.609Z","updated_at":"2025-04-29T04:31:05.232Z","avatar_url":"https://github.com/drewolson.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"= pipe\n\n* http://github.com/drewolson/pipe\n\n== DESCRIPTION:\n\nPipe lets you aggregate a bunch of RSS feeds based on filters. Tell\npipe the url of the feed, and then give it a hash of xml tag names\nplus patterns those tags must fit. Use with sinatra, easy as pie.\n\n== FEATURES/PROBLEMS:\n\n* Create an aggregate RSS feed with filters\n\n== SYNOPSIS:\n\n Make a new file called ruby_pipe.rb:\n\n  require 'rubygems'\n  require 'pipe'\n  require 'sinatra'\n\n  get '/' do\n    Pipe.create do\n      feed \"http://news.ycombinator.com/rss\", :title =\u003e /ruby/i\n      feed \"http://reddit.com/r/ruby/.rss\"\n    end\n  end\n\n Now fire up your new pipe:\n\n  ruby ruby_pipe.rb\n\n Now enjoy some RSS goodness personally tailored to you at\n http://localhost:4567\n\n We can get a bit more complicated with pipe in a couple ways. First, if you\n have some information in scope that you want your pipe block to close over,\n you can prevent pipe from doing an instance eval by providing a block\n argument. In this case, the block will yield an instance of the Pipe object:\n\n  get '/' do\n    url = \"http://foo.com/rss\"\n \n    Pipe.create do |p|\n      p.feed url\n    end\n  end\n\n You can also tell pipe to combine your filter criteria with \"or\" logic \n instead of the default \"and\" logic:\n\n  get '/' do\n    Pipe.create do\n      feed \"http://www.foo.com/rss\",\n           :title =\u003e /foo/,\n           :description =\u003e /bar/,\n           :combine_with =\u003e :or\n    end\n  end\n\n Happy piping!\n\n== REQUIREMENTS:\n\n* pipe\n* hpricot\n\n== INSTALL:\n\n* gem source -a http://gems.github.com\n* sudo gem install drewolson-pipe\n\n== LICENSE:\n\n(The MIT License)\n\nCopyright (c) 2008 FIX\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrewolson%2Fpipe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdrewolson%2Fpipe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrewolson%2Fpipe/lists"}