diff --git a/README.txt b/README.txt index f4fe3d98a..571f52f15 100644 --- a/README.txt +++ b/README.txt @@ -45,6 +45,8 @@ sudo gem install twitter will work just fine. For command line use, you'll need == Command Line Use + +Note: If you want to use twitter from the command line be sure that sqlite3 and the sqlite3-ruby gem are installed. I removed the sqlite3-ruby gem as a dependency because you shouldn't need that to just use the API wrapper. Eventually I'll move the CLI interface into another gem. $ twitter diff --git a/config/hoe.rb b/config/hoe.rb index 20369f90d..56500e4ba 100644 --- a/config/hoe.rb +++ b/config/hoe.rb @@ -63,8 +63,7 @@ def extra_deps #p.extra_deps = [] # An array of rubygem dependencies [name, version], e.g. [ ['active_support', '>= 1.3.1'] ] p.extra_deps = [['hpricot', '>= 0.6'], ['activesupport', '>= 2.1'], ['main', '>= 2.8.2'], ['highline', '>= 1.4.0'], - ['activerecord', '>= 2.1'], ['sqlite3-ruby', '>= 1.2.2'], - ['httparty', '>= 0.1.0']] + ['activerecord', '>= 2.1'], ['httparty', '>= 0.1.0']] #p.spec_extras = {} # A hash of extra values to set in the gemspec. end diff --git a/lib/twitter/cli.rb b/lib/twitter/cli.rb index eb8ef8037..36a6cf4d1 100644 --- a/lib/twitter/cli.rb +++ b/lib/twitter/cli.rb @@ -2,7 +2,7 @@ gem 'main', '>= 2.8.2' gem 'highline', '>= 1.4.0' gem 'activerecord', '>= 2.1' -gem 'sqlite3-ruby', '>= 1.2.2' +gem 'sqlite3-ruby', '>= 1.2.1' require 'main' require 'highline/import' require 'activerecord' diff --git a/lib/twitter/version.rb b/lib/twitter/version.rb index 4168e1fe2..6cb30ad69 100644 --- a/lib/twitter/version.rb +++ b/lib/twitter/version.rb @@ -2,7 +2,7 @@ module Twitter #:nodoc: module VERSION #:nodoc: MAJOR = 0 MINOR = 3 - TINY = 4 + TINY = 5 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/twitter.gemspec b/twitter.gemspec index 6db0d10cf..98448d591 100644 --- a/twitter.gemspec +++ b/twitter.gemspec @@ -1,10 +1,10 @@ Gem::Specification.new do |s| s.name = %q{twitter} - s.version = "0.3.4" + s.version = "0.3.5" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["John Nunemaker"] - s.date = %q{2008-08-03} + s.date = %q{2008-08-04} 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{nunemaker@gmail.com} @@ -29,7 +29,6 @@ Gem::Specification.new do |s| s.add_runtime_dependency(%q
, [">= 2.8.2"]) s.add_runtime_dependency(%q, [">= 1.4.0"]) s.add_runtime_dependency(%q, [">= 2.1"]) - s.add_runtime_dependency(%q, [">= 1.2.2"]) s.add_runtime_dependency(%q, [">= 0.1.0"]) else s.add_dependency(%q, [">= 0.6"]) @@ -37,7 +36,6 @@ Gem::Specification.new do |s| s.add_dependency(%q
, [">= 2.8.2"]) s.add_dependency(%q, [">= 1.4.0"]) s.add_dependency(%q, [">= 2.1"]) - s.add_dependency(%q, [">= 1.2.2"]) s.add_dependency(%q, [">= 0.1.0"]) end else @@ -46,7 +44,6 @@ Gem::Specification.new do |s| s.add_dependency(%q
, [">= 2.8.2"]) s.add_dependency(%q, [">= 1.4.0"]) s.add_dependency(%q, [">= 2.1"]) - s.add_dependency(%q, [">= 1.2.2"]) s.add_dependency(%q, [">= 0.1.0"]) end end diff --git a/website/index.html b/website/index.html index c9de2d1e3..570e3f377 100644 --- a/website/index.html +++ b/website/index.html @@ -84,9 +84,11 @@

Search API Examples

Command Line

- +

Terminal Output

+

Note: If you want to use twitter from the command line be sure that sqlite3 and the sqlite3-ruby gem are installed. I removed the sqlite3-ruby gem as a dependency because you shouldn't need that to just use the API wrapper. Eventually I'll move the CLI interface into another gem.

+

The first thing you'll want to do is install the database so your account(s) can be stored.

$ twitter install