-
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.
Replaced SQLite database with a Marshal database.
- Loading branch information
Showing
4 changed files
with
57 additions
and
71 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,16 +7,14 @@ begin | |
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings | ||
gem.name = "delicious-cli" | ||
gem.summary = %Q{Delicious.com commandline interface} | ||
gem.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).} | ||
gem.description = %Q{A commandline tool which lets you download all your delicious.com links and search them (with pretty color-coded results).} | ||
gem.email = "[email protected]" | ||
gem.homepage = "http://github.com/epitron/delicious-cli" | ||
gem.authors = ["epitron"] | ||
gem.bindir = 'bin' | ||
gem.files = FileList['lib/**/*.rb'] | ||
gem.add_dependency('sequel') | ||
gem.add_dependency('httparty') | ||
gem.add_dependency('colorize') | ||
gem.add_dependency('sqlite3-ruby') | ||
end | ||
Jeweler::GemcutterTasks.new | ||
rescue LoadError | ||
|
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