-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Made delicious-cli more user-friendly
* Updated the documentation * Fixed some bug in the DB
- Loading branch information
Showing
7 changed files
with
77 additions
and
60 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env ruby | ||
|
||
$:.unshift File.expand_path(File.dirname(__FILE__)) | ||
|
||
require 'delicious-cli' | ||
main |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
delicious |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,15 +5,14 @@ | |
|
||
Gem::Specification.new do |s| | ||
s.name = %q{delicious-cli} | ||
s.version = "0.1.4" | ||
s.version = "0.2.0" | ||
|
||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.authors = ["epitron"] | ||
s.date = %q{2009-08-29} | ||
s.default_executable = %q{dels} | ||
s.description = %q{A commandline tool which lets you download all your delicious.com links into a local SQLite database and search them (with pretty color-coded results).} | ||
s.date = %q{2009-09-10} | ||
s.description = %q{A commandline tool which lets you download all your delicious.com links and search them (with pretty color-coded results).} | ||
s.email = %q{[email protected]} | ||
s.executables = ["dels"] | ||
s.executables = ["dels", "delicious"] | ||
s.extra_rdoc_files = [ | ||
"LICENSE", | ||
"README.rdoc" | ||
|
@@ -29,7 +28,7 @@ Gem::Specification.new do |s| | |
s.homepage = %q{http://github.com/epitron/delicious-cli} | ||
s.rdoc_options = ["--charset=UTF-8"] | ||
s.require_paths = ["lib"] | ||
s.rubygems_version = %q{1.3.3} | ||
s.rubygems_version = %q{1.3.5} | ||
s.summary = %q{Delicious.com commandline interface} | ||
s.test_files = [ | ||
"test/delicious-cli_test.rb", | ||
|
@@ -41,20 +40,14 @@ Gem::Specification.new do |s| | |
s.specification_version = 3 | ||
|
||
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then | ||
s.add_runtime_dependency(%q<sequel>, [">= 0"]) | ||
s.add_runtime_dependency(%q<httparty>, [">= 0"]) | ||
s.add_runtime_dependency(%q<colorize>, [">= 0"]) | ||
s.add_runtime_dependency(%q<sqlite3-ruby>, [">= 0"]) | ||
else | ||
s.add_dependency(%q<sequel>, [">= 0"]) | ||
s.add_dependency(%q<httparty>, [">= 0"]) | ||
s.add_dependency(%q<colorize>, [">= 0"]) | ||
s.add_dependency(%q<sqlite3-ruby>, [">= 0"]) | ||
end | ||
else | ||
s.add_dependency(%q<sequel>, [">= 0"]) | ||
s.add_dependency(%q<httparty>, [">= 0"]) | ||
s.add_dependency(%q<colorize>, [">= 0"]) | ||
s.add_dependency(%q<sqlite3-ruby>, [">= 0"]) | ||
end | ||
end |
This file contains 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
This file contains 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
This file contains 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