genmachine 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/TODO CHANGED
@@ -1,6 +1,3 @@
1
-
2
- - `<<` always clears the source (doesn't have to literally for `c`) - so no <<<
3
- - Allow `<<b` etc. in statements for throwing away values
4
1
  - highlight `c` specially
5
2
  - Allow `b<<` etc. in statements - implied 'c' source
6
3
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.2.1
data/genmachine.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{genmachine}
8
- s.version = "0.2.0"
8
+ s.version = "0.2.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Joseph Wecker"]
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.2.1
@@ -130,7 +130,7 @@ module <%= @classname %>
130
130
  if nc == 0x0a then getch; c = UString.new("\r\n") end
131
131
  @last_is_newline = true; @line += 1; @pos = 1
132
132
  @leading = true; @indent = 0
133
- when 0x20
133
+ when 0x20,0x09
134
134
  @indent += 1 if @leading
135
135
  @last_is_space = true; @pos += 1
136
136
  else @leading = false; @pos += 1 end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: genmachine
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 0
10
- version: 0.2.0
9
+ - 1
10
+ version: 0.2.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Joseph Wecker