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.
Files changed (4) hide show
  1. data/README.markdown +24 -12
  2. data/VERSION +1 -1
  3. data/bin/twitter-fusefs +1 -1
  4. 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
- Until there's a ruby gem you can do the following
25
+ ### Install
26
26
 
27
- 1. Install the twitter gem: `sudo gem install twitter`
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
- email: yourtwitteraccountmail
33
- password: yourcomplexpassword
29
+ [1]: http://rubyforge.org/projects/fusefs
34
30
 
35
- 5. `mkdir` a directory where you want to mount
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
- [1]: http://rubyforge.org/projects/fusefs
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
- export RUBYOPT="rubygems"
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
- * Produce a ruby-gem
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.0
1
+ 0.2.1
data/bin/twitter-fusefs CHANGED
@@ -4,5 +4,5 @@ require File.join(File.dirname(__FILE__), '..', 'lib', 'twitter-fusefs')
4
4
 
5
5
  tfs = TwitterFuseFS.new
6
6
  FuseFS.set_root(tfs)
7
- FuseFS.mount_under ARGV[0] || "/home/jmpavon/Mount/twitter"
7
+ FuseFS.mount_under ARGV[0] || File.join('.', 'Mount', 'twitter')
8
8
  FuseFS.run
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chmeee-twitter-fusefs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - chmeee