roflbalt 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +43 -13
- metadata +1 -1
data/README.md
CHANGED
@@ -3,20 +3,59 @@ ROFLBALT
|
|
3
3
|
|
4
4
|
A Canabalt-inspired sidescroller in ASCII (with ANSI color!) for your console.
|
5
5
|
|
6
|
-
|
6
|
+
|
7
|
+
WTF?
|
8
|
+
----
|
9
|
+
|
10
|
+
It's built by [Paul Annesley][1] ([@pda][2])
|
11
|
+
and [Dennis Hotson][3] ([@dennishotson][4])
|
12
|
+
with < 500 lines of Ruby, no dependencies;
|
13
|
+
it just uses `print` and raw xterm-256color escape codes.
|
14
|
+
|
15
|
+
[1]: http://paul.annesley.cc/
|
16
|
+
[2]: https://twitter.com/pda
|
17
|
+
[3]: http://dhotson.tumblr.com/
|
18
|
+
[4]: https://twitter.com/dennishotson
|
19
|
+
|
20
|
+
|
21
|
+
Requirements
|
22
|
+
------------
|
23
|
+
|
24
|
+
**Ruby 1.9**. It doesn't work with Ruby 1.8, but I'm sure somebody could easily fix that...
|
25
|
+
|
26
|
+
You'll need a terminal with 256 color support and at least 120 columns by 40 rows of text.
|
27
|
+
|
28
|
+
* For Mac OS X we highly recommend [iTerm2](http://www.iterm2.com/),
|
29
|
+
but if you're running Lion (or newer?) you can use the default Terminal.app.
|
30
|
+
* For Windows, I imagine [PuTTY](http://www.chiark.greenend.org.uk/~sgtatham/putty/)
|
31
|
+
is still the thing to use.
|
32
|
+
* For GNU/Linux etc, use xterm!
|
33
|
+
|
7
34
|
|
8
35
|
Instructions
|
9
36
|
------------
|
10
37
|
|
11
|
-
|
38
|
+
```shell
|
39
|
+
# install:
|
40
|
+
gem install roflbalt
|
41
|
+
|
42
|
+
# using rbenv? it rocks.
|
43
|
+
rbenv rehash
|
44
|
+
|
45
|
+
# LOL
|
46
|
+
roflbalt
|
47
|
+
```
|
12
48
|
|
13
|
-
|
14
|
-
|
49
|
+
Press any key to jump! If you can't find the any key, try the spacebar.
|
50
|
+
|
51
|
+
And of course, ctrl-c to exit.
|
15
52
|
|
16
53
|
|
17
54
|
"Screenshot"
|
18
55
|
------------
|
19
56
|
|
57
|
+
(or [check out the video](http://www.youtube.com/watch?v=VoHmJfXqwbM))
|
58
|
+
|
20
59
|
Score: 23432
|
21
60
|
|
22
61
|
ROFL:ROFL:LoL:ROFL:ROFL
|
@@ -36,15 +75,6 @@ With Ruby 1.9 installed, run:
|
|
36
75
|
::::::::::::::::::::: ::: :: :: :: ::
|
37
76
|
:: :: :: ::: :: :: :: ::
|
38
77
|
|
39
|
-
WTF?
|
40
|
-
----
|
41
|
-
|
42
|
-
This was made by [Dennis Hotson][1] and [Paul Annesley][2] at [Rails Camp X][3] in Adelaide.
|
43
|
-
|
44
|
-
[1]: http://dhotson.tumblr.com/
|
45
|
-
[2]: http://paul.annesley.cc/
|
46
|
-
[3]: http://railscamps.com/
|
47
|
-
|
48
78
|
|
49
79
|
License
|
50
80
|
-------
|