burn 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,10 +1,10 @@
1
- # Burn - a handy toolkit to homebrew 8-bit flavored applications from Ruby DSLs
1
+ # Burn - a handy toolkit to make 8-bit flavored applications from Ruby DSLs
2
2
 
3
- A .nes application below is compiled 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))
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
  ![rubima wars pic](http://k.swd.cc/burn/resource/screenshot/rubima-wars.png)
6
6
 
7
- Next example is about cross-compilation. Assuming you write this simple Ruby DSL:
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
+ ![system menu example](http://k.swd.cc/burn/resource/screenshot/system-menu.gif)
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 nad `:telnet` 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 :nes mode(coming soon)
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
 
@@ -4,7 +4,7 @@ module Burn
4
4
  def initialize
5
5
  @ip_addr = '127.0.0.1'
6
6
  @port = 60000
7
- @max_clients = 1
7
+ @max_clients = 10
8
8
  end
9
9
  end
10
10
  end
@@ -1,3 +1,3 @@
1
1
  module Burn
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
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.0
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-08-25 00:00:00.000000000 Z
12
+ date: 2014-09-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: thor