public
Description: Tweet from the command line.
Homepage:
Clone URL: git://github.com/jamesgolick/tweet.git
tweet / tweet.gemspec
100644 17 lines (16 sloc) 0.58 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Gem::Specification.new do |s|
  s.name = "tweet"
  s.version = "0.0.2"
  s.date = "2008-07-28"
  s.summary = "Update your twitter status from the command line."
  s.email = "james@giraffesoft.ca"
  s.homepage = "http://twitter.com"
  s.description = ""
  s.has_rdoc = false
  s.require_path = "lib"
  s.bindir = "bin"
  s.executables = %w(tweet)
  s.authors = ["James Golick"]
  s.files = ["lib/tweet.rb", "bin/tweet", "README.rdoc", "LICENSE", "test/test_helper.rb"]
  s.add_dependency 'technoweenie-rest-client'
end