lazibi 0.1.3 → 0.1.4

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/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.1.4 2007-06-15
2
+
3
+ * Added case syntax support, with test case
4
+
1
5
  == 0.1.3 2007-06-14
2
6
 
3
7
  * Fix last release unusable bug :|
data/README.txt CHANGED
@@ -45,14 +45,7 @@ Even sexier migrations ( with sexy_migration Rails plugin )
45
45
  == Download
46
46
 
47
47
  gem install lazibi
48
- svn checkout http://lazibi.googlecode.com/svn/trunk/real lazibi
49
-
50
- == Install
51
-
52
- If from source
53
-
54
- rake gem
55
- gem install pkg/lazibi-0.1.0.gem
48
+ svn checkout svn://rubyforge.org/var/svn/lazibi/trunk lazibi
56
49
 
57
50
  == Usage
58
51
 
@@ -2,7 +2,7 @@ module Lazibi #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- TINY = 3
5
+ TINY = 4
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/lib/lazibi.rb CHANGED
@@ -239,7 +239,7 @@ module Lazibi
239
239
  end
240
240
 
241
241
  def begin_keys
242
- s = %w( module def class if begin for while unless do )
242
+ s = %w( module def class if begin for while unless do case )
243
243
  m = ['\sdo\s*$|\sdo\s+(\|[^|]+\|)']
244
244
  s.map!{|key| "^#{key}\\b"}
245
245
 
@@ -249,7 +249,7 @@ module Lazibi
249
249
 
250
250
 
251
251
  def middle_keys
252
- s = %w( rescue else ensure elsif )
252
+ s = %w( rescue else ensure elsif when )
253
253
  s.map!{|key| "^#{key}\\b"}
254
254
  Regexp.new(s.join('|'))
255
255
  end
data/website/index.html CHANGED
@@ -33,7 +33,7 @@
33
33
  <h1>Welcome to Lazibi</h1>
34
34
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/lazibi"; return false'>
35
35
  <p>Get Version</p>
36
- <a href="http://rubyforge.org/projects/lazibi" class="numbers">0.1.3</a>
36
+ <a href="http://rubyforge.org/projects/lazibi" class="numbers">0.1.4</a>
37
37
  </div>
38
38
  <p>
39
39
  Lazibi is a meta language which allows you to use Python like syntax (
@@ -87,15 +87,7 @@ Even sexier migrations ( with sexy_migration Rails plugin )
87
87
  <h2>Download</h2>
88
88
  <pre>
89
89
  gem install lazibi
90
- svn checkout http://lazibi.googlecode.com/svn/trunk/real lazibi
91
- </pre>
92
- <h2>Install</h2>
93
- <p>
94
- If from source
95
- </p>
96
- <pre>
97
- rake gem
98
- gem install pkg/lazibi-0.1.0.gem
90
+ svn checkout svn://rubyforge.org/var/svn/lazibi/trunk lazibi
99
91
  </pre>
100
92
  <h2>Usage</h2>
101
93
  <p>
@@ -182,7 +174,7 @@ Released under the MIT license (included)
182
174
  </p>
183
175
 
184
176
  <p class="coda">
185
- <a href="mailto:nfjinjing@gmail.com">Jinjing</a>, 14th June 2007<br>
177
+ <a href="mailto:nfjinjing@gmail.com">Jinjing</a>, 15th June 2007<br>
186
178
  Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
187
179
  </p>
188
180
  </div>
data/website/index.txt CHANGED
@@ -45,14 +45,7 @@ Even sexier migrations ( with sexy_migration Rails plugin )
45
45
  == Download
46
46
 
47
47
  gem install lazibi
48
- svn checkout http://lazibi.googlecode.com/svn/trunk/real lazibi
49
-
50
- == Install
51
-
52
- If from source
53
-
54
- rake gem
55
- gem install pkg/lazibi-0.1.0.gem
48
+ svn checkout svn://rubyforge.org/var/svn/lazibi/trunk lazibi
56
49
 
57
50
  == Usage
58
51
 
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.3
3
3
  specification_version: 1
4
4
  name: lazibi
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.1.3
7
- date: 2007-06-14 00:00:00 +08:00
6
+ version: 0.1.4
7
+ date: 2007-06-15 00:00:00 +08:00
8
8
  summary: Python like syntax for Ruby
9
9
  require_paths:
10
10
  - lib