Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/technicalpickles/deliciousr
Ruby library for the del.icio.us API
https://github.com/technicalpickles/deliciousr
Last synced: about 1 month ago
JSON representation
Ruby library for the del.icio.us API
- Host: GitHub
- URL: https://github.com/technicalpickles/deliciousr
- Owner: technicalpickles
- Created: 2008-04-04T23:34:33.000Z (over 16 years ago)
- Default Branch: master
- Last Pushed: 2010-02-20T09:27:33.000Z (almost 15 years ago)
- Last Synced: 2024-10-14T21:52:56.304Z (3 months ago)
- Language: Ruby
- Homepage:
- Size: 105 KB
- Stars: 5
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
- Changelog: History.txt
Awesome Lists containing this project
README
deliciousr
by Josh Nichols
http://technicalpickles.com== Description:
An attempt at a reasonable rubyeque wrapper around the del.icio.us API== Usage
@user = Deliciousr::User.new('you', 'topsekrit')
@user.tags.each do |tag|
puts "#{tag.name} has been added to #{tag.count} post(s)"
unless tag.name.downcase == tag.name
tag.rename_all_to! tag.name.downcase
end
end== Install:
* gem install deliciousr
== License:
(The MIT License)
Copyright (c) 2007 Josh Nichols
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.