twat 0.2.4 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +27 -10
- data/lib/twat.rb +1 -1
- metadata +6 -6
data/README
CHANGED
|
@@ -1,19 +1,36 @@
|
|
|
1
|
-
=
|
|
1
|
+
= Twat
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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
|
-
|
|
14
|
-
|
|
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.
|
data/lib/twat.rb
CHANGED
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
|
+
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-
|
|
12
|
+
date: 2011-08-29 00:00:00.000000000Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: twitter
|
|
16
|
-
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: *
|
|
24
|
+
version_requirements: *72461730
|
|
25
25
|
- !ruby/object:Gem::Dependency
|
|
26
26
|
name: oauth
|
|
27
|
-
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: *
|
|
35
|
+
version_requirements: *72461490
|
|
36
36
|
description: Command line tool for tweeting and whatnot
|
|
37
37
|
email:
|
|
38
38
|
- richo@psych0tik.net
|