twat 0.2.4 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README +27 -10
  2. data/lib/twat.rb +1 -1
  3. metadata +6 -6
data/README CHANGED
@@ -1,19 +1,36 @@
1
- = Twatterator
1
+ = Twat
2
2
 
3
- this is the tweety thing I used for the Singularity Summit
4
-
5
- I plan to extend it into (yet another) basic cli tweet app that supports
6
- multiple accounts so that I can harass the world relentlessly (basically use a
7
- twitter feed to replace my code/cheat/ files)
8
-
9
- Also as an excuse to learn more ruby in my spare time
3
+ Twat is a barebones cli interface to twitter, to let me tweet from my shell,
4
+ where I do nearly everything. If it's useful to one person other than me then
5
+ it's far exceeded my expectations.
10
6
 
11
7
  == Release status
12
8
 
13
- Ok, so it's less pre-alpha now. I've pushed it to Rubygems and it seems to work
14
- in the limited testing that I've done.
9
+ Features are implemented pretty much as I see need for them, and I still
10
+ haven't put together a test suite so changes may or may not leave the code in
11
+ an inconsistent state.
12
+
13
+ Twat is feature complete enough to allow a user to send tweets without editing
14
+ a config file, but much of it's interface is missing/counterintuitive. Support
15
+ for sites other than twitter (identi.ca, for example) is planned but not
16
+ implemented.
15
17
 
16
18
  == Credits and thanks
17
19
 
18
20
  I used a lot the structure from codeplane to work out how to structure it. It's
19
21
  obviously not as neat, but the gemspec was shamelessly adapted from codeplane
22
+
23
+ the oauth and Twitter gems saved me from actually having to do much work.
24
+
25
+ == Contact
26
+
27
+ I'm reachable at richo@psych0tik.net, and I contribute to a blog at
28
+ http://blog.psych0tik.net
29
+
30
+ == License
31
+
32
+ Twat is released under the WTFPL ( sam.zoy.org/wtfpl/ ), or, at your option the
33
+ GPLv2.
34
+
35
+ I do request that any useful changes are passed back to me so that I may
36
+ incorporate them/see what people are doing with it though.
@@ -13,7 +13,7 @@ end
13
13
  module Twat
14
14
  VERSION_MAJOR = 0
15
15
  VERSION_MINOR = 2
16
- VERSION_PATCH = 4
16
+ VERSION_PATCH = 5
17
17
 
18
18
  VERSION = "#{VERSION_MAJOR}.#{VERSION_MINOR}.#{VERSION_PATCH}"
19
19
  class Twat
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-08-27 00:00:00.000000000Z
12
+ date: 2011-08-29 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: twitter
16
- requirement: &24036500 !ruby/object:Gem::Requirement
16
+ requirement: &72461730 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *24036500
24
+ version_requirements: *72461730
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: oauth
27
- requirement: &24033520 !ruby/object:Gem::Requirement
27
+ requirement: &72461490 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *24033520
35
+ version_requirements: *72461490
36
36
  description: Command line tool for tweeting and whatnot
37
37
  email:
38
38
  - richo@psych0tik.net