chmeee-twitter-fusefs 0.2.0 → 0.2.1
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.markdown +24 -12
- data/VERSION +1 -1
- data/bin/twitter-fusefs +1 -1
- metadata +1 -1
data/README.markdown
CHANGED
@@ -22,24 +22,33 @@ When 'read' from users' files will output his/her timeline, when 'written to' us
|
|
22
22
|
|
23
23
|
## Install and Use
|
24
24
|
|
25
|
-
|
25
|
+
### Install
|
26
26
|
|
27
|
-
1
|
28
|
-
2. Install [Ruby FuseFS][1] (as far as I know, there's no ruby gem)
|
29
|
-
3. Download twitter-fusefs, uncompress
|
30
|
-
4. Create a directory ~/.twitter with
|
27
|
+
First of all, install [Ruby FuseFS][1] (as far as I know, there's no ruby gem). There's a debian/ubuntu package though.
|
31
28
|
|
32
|
-
|
33
|
-
password: yourcomplexpassword
|
29
|
+
[1]: http://rubyforge.org/projects/fusefs
|
34
30
|
|
35
|
-
|
36
|
-
6. `./bin/twitter-fusefs yourdirectory`
|
31
|
+
There's a ruby gem now, you should be able to get it if you have the github repository just doing `sudo gem install chmeee-twitter-fusefs`. This should install the twitter gem as well.
|
37
32
|
|
38
|
-
|
33
|
+
Otherwise, if you don't want to use a ruby gem you can do the following
|
34
|
+
|
35
|
+
* Install the twitter gem: `sudo gem install twitter`
|
36
|
+
* Download twitter-fusefs, uncompress
|
37
|
+
|
38
|
+
### Use
|
39
|
+
|
40
|
+
1. Create a directory ~/.twitter with
|
41
|
+
|
42
|
+
`email: yourtwitteraccountmail`
|
43
|
+
|
44
|
+
`password: yourcomplexpassword`
|
45
|
+
|
46
|
+
2. `mkdir` a directory where you want to mount
|
47
|
+
3. `twitter-fusefs yourdirectory`
|
39
48
|
|
40
49
|
Please, note that this script does not require rubygems, as you may not be using it. If you do you'll have to tell ruby so. The best way I think is through
|
41
50
|
|
42
|
-
|
51
|
+
export RUBYOPT="rubygems"
|
43
52
|
|
44
53
|
## TO-DO
|
45
54
|
|
@@ -52,8 +61,11 @@ twitter-fusefs is still in design and development. I'm still thinking about some
|
|
52
61
|
* Block with rm on /followers
|
53
62
|
* Reformat the output of tweets and add more information (like time, app, in respond to, etc.)
|
54
63
|
* Access to Twitter trends (whatever that is)
|
55
|
-
*
|
64
|
+
* A way to finish the program gracely
|
65
|
+
* **DONE** Produce a ruby-gem
|
56
66
|
* Make a github page for the project
|
67
|
+
* Make tests!!! (I don't know how yet)
|
68
|
+
* Make rdoc comments
|
57
69
|
|
58
70
|
## Note on Patches/Pull Requests
|
59
71
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
data/bin/twitter-fusefs
CHANGED