renshi 0.1.3 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/renshi/parser.rb +1 -1
  2. data/lib/renshi.rb +1 -1
  3. metadata +1 -1
data/lib/renshi/parser.rb CHANGED
@@ -132,7 +132,7 @@ module Renshi
132
132
  else #$foo
133
133
 
134
134
  #divide with a delimiter for anything which is not a name character - alpa-numeric and underscore
135
- words = text[(idx +1)..-1].split(/[^\w."'{}()+=*\/\-]/)
135
+ words = text[(idx +1)..-1].split(/[^\w."'{}()+=*\/\-@]/)
136
136
  words[0] = "'$'" if words[0] == "$"
137
137
  statement_str = words.first
138
138
  statement = Statement.new(statement_str)
data/lib/renshi.rb CHANGED
@@ -9,7 +9,7 @@ require 'renshi/attribute_expressions'
9
9
  require 'renshi/frameworks'
10
10
 
11
11
  module Renshi
12
- VERSION="0.1.3"
12
+ VERSION="0.1.5"
13
13
 
14
14
  class SyntaxError < StandardError; end
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: renshi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicholas Faiz