burn 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.md +8 -6
- data/lib/burn/config/server.rb +1 -1
- data/lib/burn/version.rb +1 -1
- metadata +2 -2
data/README.md
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
# Burn - a handy toolkit to
|
1
|
+
# Burn - a handy toolkit to make 8-bit flavored applications from Ruby DSLs
|
2
2
|
|
3
|
-
|
3
|
+
Burn is a .nes rom file compiler in Ruby. For example, a .nes application below is written in less than 500 lines of Ruby DSL code, including graphic and sound resources.([code](https://github.com/remore/burn/blob/master/example/rubima_wars/main.rb) / [online demo](http://k.swd.cc/burn/resource/example/rubima-wars/emulator.html))
|
4
4
|
|
5
5
|

|
6
6
|
|
7
|
-
|
7
|
+
Burn works as a telnet application server too. Assuming you write this simple Ruby DSL:
|
8
8
|
|
9
9
|
```ruby
|
10
10
|
declare do
|
@@ -49,6 +49,8 @@ Just like Recipe and Cookbook are DSLs for the Chef rubygem, this dead simple DS
|
|
49
49
|
|
50
50
|
Imagine 8-bit application like [ascii starwars movie](http://lifehacker.com/373571/watch-star-wars-in-text-via-telnet) can be created in seconds, seriously. Now is the time to go back and start to develop primitive, low-end application.
|
51
51
|
|
52
|
+

|
53
|
+
|
52
54
|
## Table Of Contents
|
53
55
|
|
54
56
|
* [Introduction](#introduction)
|
@@ -68,7 +70,7 @@ Imagine 8-bit application like [ascii starwars movie](http://lifehacker.com/3735
|
|
68
70
|
|
69
71
|
### How It Works
|
70
72
|
|
71
|
-
Burn have two modes, `:rom` mode
|
73
|
+
Burn have two modes, `:rom` mode and `:telnet` mode.
|
72
74
|
|
73
75
|
For `:rom` mode, Burn uses cc65 executables embedded in its gemfile for compilation. The main workflow is as follows.
|
74
76
|
|
@@ -115,7 +117,7 @@ Currently example code are definitely the best reference. As to documentation, p
|
|
115
117
|
|
116
118
|
[Reference for :nes mode](https://github.com/remore/burn/blob/master/FUEL-ROM.md)
|
117
119
|
|
118
|
-
Reference for :
|
120
|
+
Reference for :telnet mode(coming soon)
|
119
121
|
|
120
122
|
...and there is many TBDs(articles about #show, #sprite, #rand and #is_pressed are coming very soon)
|
121
123
|
|
@@ -129,7 +131,7 @@ Secondarily, to get back a lost love to video game programming. Having high-spec
|
|
129
131
|
|
130
132
|
### Discussions and Conference Talks
|
131
133
|
|
132
|
-
A quick discussion at [Reddit.com](http://www.reddit.com/r/programming/comments/226vf0/build_your_own_nes_rom_file_with_ruby/)
|
134
|
+
A quick discussion at [Reddit.com](http://www.reddit.com/r/programming/comments/226vf0/build_your_own_nes_rom_file_with_ruby/) and [HackerNews](https://news.ycombinator.com/item?id=8222322)
|
133
135
|
|
134
136
|
[A Talk at RubyKaigi 2014](http://rubykaigi.org/2014/presentation/S-KeiSawada)
|
135
137
|
|
data/lib/burn/config/server.rb
CHANGED
data/lib/burn/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: burn
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-09-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: thor
|