-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added CLI gems as install dependencies.
- Loading branch information
1 parent
66dd997
commit 52af6fd
Showing
6 changed files
with
17 additions
and
9 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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
* import from .twitter | ||
* check if there is a current account before any methods that use that account | ||
* either add CLI gems as dependencies or separate CLI into a second gem that requires the api part | ||
* add timeout so it doesn't hang forever like it does now if twitter is down | ||
* add progress indicator for timeline and replies as posting has for more visual indication that work is happening |
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
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
Gem::Specification.new do |s| | ||
s.name = %q{twitter} | ||
s.version = "0.3.1" | ||
s.version = "0.3.2" | ||
s.specification_version = 2 if s.respond_to? :specification_version= | ||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.authors = ["John Nunemaker"] | ||
s.date = %q{2008-07-23} | ||
s.date = %q{2008-07-26} | ||
s.default_executable = %q{twitter} | ||
s.description = %q{a command line interface for twitter, also a library which wraps the twitter api} | ||
s.email = %q{[email protected]} | ||
|
@@ -18,6 +18,10 @@ Gem::Specification.new do |s| | |
s.rubyforge_project = %q{twitter} | ||
s.rubygems_version = %q{1.1.1} | ||
s.summary = %q{a command line interface for twitter, also a library which wraps the twitter api} | ||
s.add_dependency(%q<hpricot>, [">= 0"]) | ||
s.add_dependency(%q<activesupport>, [">= 0"]) | ||
s.add_dependency(%q<hpricot>, [">= 0.6"]) | ||
s.add_dependency(%q<activesupport>, [">= 2.1"]) | ||
s.add_dependency(%q<main>, [">= 2.8.2"]) | ||
s.add_dependency(%q<highline>, [">= 1.4.0"]) | ||
s.add_dependency(%q<activerecord>, [">= 2.1"]) | ||
s.add_dependency(%q<sqlite3-ruby>, [">= 1.2.2"]) | ||
end |