Nathan Standiford
2012-Jun-19 16:51 UTC
[Ironruby-core] Problem with using OpenStruct and ERB
I am using OpenStructs and ERB for template generation. In this simple
example, ruby 1.8.6 runs this fine:
require "erb"
require "ostruct"
puts ERB.new("<%=foo%>", 0,
"%<>").result(OpenStruct.new({ :foo => "bar"
}).send(:binding))
However, it generates the following error when I run this in IronRuby
1.1.3.0 on .NET 4.0.30319.269:
(erb):2: undefined method `foo'' for main:Object (NoMethodError)
Does anyone know how to get this to behave correctly in IronRuby?
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://rubyforge.org/pipermail/ironruby-core/attachments/20120619/ea28bbb2/attachment.html>
I notice that in your example, you don''t declare the local variable foo
anywhere:
If I run it verbatim, both MRI and IronRuby fail with undefined method foo
(and fair enough, foo isn''t defined).
When I declare foo as a local variable, both MRI and IronRuby work fine
for me.
______________________________________________________
Orion Edwards | Technical Leader
PHONE +64 7 838 9800 | FAX +64 7 838 9801 |
EMAIL orion.edwards at gallagher.co | WEB www.gallagher.co
From: Nathan Standiford <nstandif at live.com>
To: <ironruby-core at rubyforge.org>
Date: 20/06/2012 04:55 a.m.
Subject: [Ironruby-core] Problem with using OpenStruct and ERB
Sent by: ironruby-core-bounces at rubyforge.org
I am using OpenStructs and ERB for template generation. In this simple
example, ruby 1.8.6 runs this fine:
require "erb"
require "ostruct"
puts ERB.new("<%=foo%>", 0,
"%<>").result(OpenStruct.new({ :foo => "bar"
}).send(:binding))
However, it generates the following error when I run this in IronRuby
1.1.3.0 on .NET 4.0.30319.269:
(erb):2: undefined method `foo'' for main:Object (NoMethodError)
Does anyone know how to get this to behave correctly in IronRuby?
_______________________________________________
Ironruby-core mailing list
Ironruby-core at rubyforge.org
http://rubyforge.org/mailman/listinfo/ironruby-core
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://rubyforge.org/pipermail/ironruby-core/attachments/20120620/70d23bba/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/gif
Size: 3465 bytes
Desc: not available
URL:
<http://rubyforge.org/pipermail/ironruby-core/attachments/20120620/70d23bba/attachment-0001.gif>
Nathan Standiford
2012-Jun-19 22:55 UTC
[Ironruby-core] Problem with using OpenStruct and ERB
I am trying to send the binding of the OpenStruct object not the binding of
main. I have been using this with MRI 1.8.6 for some time and works fine.
From: ironruby-core-bounces at rubyforge.org
[mailto:ironruby-core-bounces at rubyforge.org] On Behalf Of Orion Edwards
Sent: Tuesday, June 19, 2012 2:23 PM
To: ironruby-core at rubyforge.org
Subject: Re: [Ironruby-core] Problem with using OpenStruct and ERB
I notice that in your example, you don''t declare the local variable foo
anywhere:
If I run it verbatim, both MRI and IronRuby fail with undefined method foo
(and fair enough, foo isn''t defined).
When I declare foo as a local variable, both MRI and IronRuby work fine for
me.
______________________________________________________
Orion Edwards | Technical Leader
PHONE +64 7 838 9800 | FAX +64 7 838 9801 |
EMAIL orion.edwards at gallagher.co | WEB <http://www.gallagher.co/>
www.gallagher.co
From: Nathan Standiford <nstandif at live.com>
To: <ironruby-core at rubyforge.org>
Date: 20/06/2012 04:55 a.m.
Subject: [Ironruby-core] Problem with using OpenStruct and ERB
Sent by: ironruby-core-bounces at rubyforge.org
_____
I am using OpenStructs and ERB for template generation. In this simple
example, ruby 1.8.6 runs this fine:
require "erb"
require "ostruct"
puts ERB.new("<%=foo%>", 0,
"%<>").result(OpenStruct.new({ :foo => "bar"
}).send(:binding))
However, it generates the following error when I run this in IronRuby
1.1.3.0 on .NET 4.0.30319.269:
(erb):2: undefined method `foo'' for main:Object (NoMethodError)
Does anyone know how to get this to behave correctly in IronRuby?
_______________________________________________
Ironruby-core mailing list
Ironruby-core at rubyforge.org
<http://rubyforge.org/mailman/listinfo/ironruby-core>
http://rubyforge.org/mailman/listinfo/ironruby-core
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://rubyforge.org/pipermail/ironruby-core/attachments/20120619/33d3b76a/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image001.gif
Type: image/gif
Size: 3465 bytes
Desc: not available
URL:
<http://rubyforge.org/pipermail/ironruby-core/attachments/20120619/33d3b76a/attachment.gif>
Ahh I see.
I don''t have a copy of 1.8.6 handy to test on, but this definitely
fails
for MRI 1.9.
It seems like getting the binding of an ostruct in 1.9 doesn''t work for
evaluating local variables. Perhaps they changed ostruct?
Here''s what happens for me:
irb(main):020:0> ostruct = OpenStruct.new({:foo =>
''bar''})
=> #<OpenStruct foo="bar">
irb(main):021:0> ostruct_binding = ostruct.send(:binding)
=> #<Binding:0x2545dd0>
irb(main):022:0> eval("foo", ostruct_binding)
NameError: undefined local variable or method `foo'' for main:Object
IronRuby 1.1 aims for compatibility with ruby 1.9 (and ships standard
libraries such as ostruct from 1.9 also), so it is designed to fail with
the same errors as MRI 1.9
I''m not sure what you can do to work around it, all the best.
______________________________________________________
Orion Edwards | Technical Leader
PHONE +64 7 838 9800 | FAX +64 7 838 9801 |
EMAIL orion.edwards at gallagher.co | WEB www.gallagher.co
From: Nathan Standiford <nstandif at live.com>
To: <ironruby-core at rubyforge.org>
Date: 20/06/2012 10:53 a.m.
Subject: Re: [Ironruby-core] Problem with using OpenStruct and ERB
Sent by: ironruby-core-bounces at rubyforge.org
I am trying to send the binding of the OpenStruct object not the binding
of main. I have been using this with MRI 1.8.6 for some time and works
fine.
From: ironruby-core-bounces at rubyforge.org [
mailto:ironruby-core-bounces at rubyforge.org] On Behalf Of Orion Edwards
Sent: Tuesday, June 19, 2012 2:23 PM
To: ironruby-core at rubyforge.org
Subject: Re: [Ironruby-core] Problem with using OpenStruct and ERB
I notice that in your example, you don''t declare the local variable foo
anywhere:
If I run it verbatim, both MRI and IronRuby fail with undefined method foo
(and fair enough, foo isn''t defined).
When I declare foo as a local variable, both MRI and IronRuby work fine
for me.
______________________________________________________
Orion Edwards | Technical Leader
PHONE +64 7 838 9800 | FAX +64 7 838 9801 |
EMAIL orion.edwards at gallagher.co | WEB www.gallagher.co
From: Nathan Standiford <nstandif at live.com>
To: <ironruby-core at rubyforge.org>
Date: 20/06/2012 04:55 a.m.
Subject: [Ironruby-core] Problem with using OpenStruct and ERB
Sent by: ironruby-core-bounces at rubyforge.org
I am using OpenStructs and ERB for template generation. In this simple
example, ruby 1.8.6 runs this fine:
require "erb"
require "ostruct"
puts ERB.new("<%=foo%>", 0,
"%<>").result(OpenStruct.new({ :foo => "bar"
}).send(:binding))
However, it generates the following error when I run this in IronRuby
1.1.3.0 on .NET 4.0.30319.269:
(erb):2: undefined method `foo'' for main:Object (NoMethodError)
Does anyone know how to get this to behave correctly in IronRuby?
_______________________________________________
Ironruby-core mailing list
Ironruby-core at rubyforge.org
http://rubyforge.org/mailman/listinfo/ironruby-core
_______________________________________________
Ironruby-core mailing list
Ironruby-core at rubyforge.org
http://rubyforge.org/mailman/listinfo/ironruby-core
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://rubyforge.org/pipermail/ironruby-core/attachments/20120620/c4d66dd8/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/gif
Size: 3465 bytes
Desc: not available
URL:
<http://rubyforge.org/pipermail/ironruby-core/attachments/20120620/c4d66dd8/attachment-0002.gif>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/gif
Size: 3465 bytes
Desc: not available
URL:
<http://rubyforge.org/pipermail/ironruby-core/attachments/20120620/c4d66dd8/attachment-0003.gif>
Nathan Standiford
2012-Jun-22 17:44 UTC
[Ironruby-core] Problem with using OpenStruct and ERB
Yeah, that seems like it was the problem. I fixed it by defining the getter
method directly in the object I was running the ERB file in.
require "erb"
def eval_field(field)
field.each do |key, value|
class << self; self; end.class_eval do
define_method(key) { @field[key] }
end
end
@field = field
binding
end
ERB.new("<%= foo %>").result(eval_field({:foo =>
"bar"})
I find it odd that OpenStruct won''t work, despite this code almost
being
almost identical to that of OpenStruct.
From: ironruby-core-bounces at rubyforge.org
[mailto:ironruby-core-bounces at rubyforge.org] On Behalf Of Orion Edwards
Sent: Tuesday, June 19, 2012 4:20 PM
To: ironruby-core at rubyforge.org
Subject: Re: [Ironruby-core] Problem with using OpenStruct and ERB
Ahh I see.
I don''t have a copy of 1.8.6 handy to test on, but this definitely
fails for
MRI 1.9.
It seems like getting the binding of an ostruct in 1.9 doesn''t work for
evaluating local variables. Perhaps they changed ostruct?
Here''s what happens for me:
irb(main):020:0> ostruct = OpenStruct.new({:foo =>
''bar''})
=> #<OpenStruct foo="bar">
irb(main):021:0> ostruct_binding = ostruct.send(:binding)
=> #<Binding:0x2545dd0>
irb(main):022:0> eval("foo", ostruct_binding)
NameError: undefined local variable or method `foo'' for main:Object
IronRuby 1.1 aims for compatibility with ruby 1.9 (and ships standard
libraries such as ostruct from 1.9 also), so it is designed to fail with the
same errors as MRI 1.9
I''m not sure what you can do to work around it, all the best.
______________________________________________________
Orion Edwards | Technical Leader
PHONE +64 7 838 9800 | FAX +64 7 838 9801 |
EMAIL orion.edwards at gallagher.co | WEB www.gallagher.co ?
From: ? ? ? ?Nathan Standiford <nstandif at live.com>
To: ? ? ? ?<ironruby-core at rubyforge.org>
Date: ? ? ? ?20/06/2012 10:53 a.m.
Subject: ? ? ? ?Re: [Ironruby-core] Problem with using OpenStruct and ERB
Sent by: ? ? ? ?ironruby-core-bounces at rubyforge.org
________________________________________
I am trying to send the binding of the OpenStruct object not the binding of
main. ?I have been using this with MRI 1.8.6 for some time and works fine.
?
From: ironruby-core-bounces at rubyforge.org
[mailto:ironruby-core-bounces at rubyforge.org] On Behalf Of Orion Edwards
Sent: Tuesday, June 19, 2012 2:23 PM
To: ironruby-core at rubyforge.org
Subject: Re: [Ironruby-core] Problem with using OpenStruct and ERB
?
I notice that in your example, you don''t declare the local variable foo
anywhere:
If I run it verbatim, both MRI and IronRuby fail with undefined method foo
(and fair enough, foo isn''t defined).
When I declare foo as a local variable, both MRI and IronRuby work fine for
me.
______________________________________________________
Orion Edwards | Technical Leader
PHONE +64 7 838 9800 | FAX +64 7 838 9801 |
EMAIL orion.edwards at gallagher.co | WEB www.gallagher.co ?
From: ? ? ? ?Nathan Standiford <nstandif at live.com>
To: ? ? ? ?<ironruby-core at rubyforge.org>
Date: ? ? ? ?20/06/2012 04:55 a.m.
Subject: ? ? ? ?[Ironruby-core] Problem with using OpenStruct and ERB
Sent by: ? ? ? ?ironruby-core-bounces at rubyforge.org
________________________________________
I am using OpenStructs and ERB for template generation. In this simple
example, ruby 1.8.6 runs this fine:
require "erb"
require "ostruct"
puts ERB.new("<%=foo%>", 0,
"%<>").result(OpenStruct.new({ :foo => "bar"
}).send(:binding))
?
However, it generates the following error when I run this in IronRuby
1.1.3.0 on .NET 4.0.30319.269:
(erb):2: undefined method `foo'' for main:Object (NoMethodError)
?
Does anyone know how to get this to behave correctly in IronRuby?
_______________________________________________
Ironruby-core mailing list
Ironruby-core at rubyforge.org
[http://www.anisaty.com/vb/ ????? ?????] [http://www.anisaty.com/vb/t71806.html ????? ????? ???????] [http://www.anisaty.com/vb/t71783.html ????? ?????] [http://www.anisaty.com/vb/t71821 ????? ????? ????? ???????] [http://www.anisaty.com/vb/f8/ ??????? ???? ????] [http://www.anisaty.com/vb/f9/ ????? 2013] [http://www.anisaty.com/vb/f10/ ????????? 2013] [http://www.anisaty.com/vb/f11/ ????? 2013] [http://www.anisaty.com/vb/f12/ ??????? ??? 2013] [http://www.anisaty.com/vb/f16/ ?????? ??????????] [http://www.anisaty.com/vb/f14/ ?????? ?????] [http://www.anisaty.com/vb/f111/ ??????? 2013] [http://www.anisaty.com/vb/f19/ ??????? ?????? ??????] [http://www.anisaty.com/vb/f20/ ??? ??????] [http://www.anisaty.com/vb/f112/ ??? ??????] [http://www.anisaty.com/vb/f22/ ??? ?????] [http://www.anisaty.com/vb/f113/ ??????? ?????? ???????] [http://www.anisaty.com/vb/f114/ ???? ?????? ???????] [http://www.anisaty.com/vb/f115/ ??? ??????] [http://www.anisaty.com/vb/f118/ ???? ???? 2013] [http://www.anisaty.com/vb/t71267.html ???? ???????] [http://www.anisaty.com/vb/t71229.html ??? ???????? ????? ??????] [http://www.anisaty.com/vb/t71158.html ?????? ????? ??????] [http://www.anisaty.com/vb/t71076.html ??????? ?????] [http://www.anisaty.com/vb/t71075.html ?????? ???? ??] [http://www.anisaty.com/vb/t71074.html ?????? ???? ???? ????] [http://www.anisaty.com/vb/t71070.html ??? ??????? ??????] [http://www.anisaty.com/vb/t71069.html ??? ??????? ??????] [http://www.anisaty.com/vb/t71068.html ??????? ??????] [http://www.anisaty.com/vb/t71067.html ?????? ????? ???? ???] [http://www.anisaty.com/vb/t71066.html ????? ?????] [http://www.anisaty.com/vb/t71064.html ?????? ???? ?????] [http://www.anisaty.com/vb/t71062.html ????? ???????? ????????] [http://www.anisaty.com/vb/t71060.html ?????? ???????? ????????] [http://www.anisaty.com/vb/t71058.html ?????? ????????] [http://www.anisaty.com/vb/t71056.html ?????? ?????] [http://www.anisaty.com/vb/t71054.html ???????? ?????] [http://www.anisaty.com/vb/t71053.html ?????? ????] [http://www.anisaty.com/vb/t71052.html ?????? ???????] [http://www.anisaty.com/vb/t71049.html ?????? ??????] [http://www.anisaty.com/vb/t71047.html ?????? ?????? ???????] [http://www.anisaty.com/vb/t70694.html ?????? ????? ?? ?????? ??????] [http://www.anisaty.com/vb/t70692.html ???????? ????? ?????] [http://www.anisaty.com/vb/t70688.html ??????? ??? ????] [http://www.anisaty.com/vb/t70686.html ??????? ???????? ???] [http://www.anisaty.com/vb/t71871.html ????? ????? ????] [http://www.anisaty.com/vb/t71867.html ????? ?????? ?????] [http://www.anisaty.com/vb/t71864.html ??? ???? ??????] [http://www.anisaty.com/vb/t71859.html ???? ???] [http://www.anisaty.com/vb/t71855.html ?????????? ???????] [http://www.anisaty.com/vb/t71852.html ?????? ????? ?????] [http://www.anisaty.com/vb/t71849.html ??????? ??? ???? ????] [http://www.anisaty.com/vb/t71844.html ???? ?????? ?????] [http://www.anisaty.com/vb/t71843.html ???? ????????? ????] [http://www.anisaty.com/vb/t71842.html ???? ?????? ?????] [http://www.anisaty.com/vb/t71841.html ????? ??????] [http://www.anisaty.com/vb/t71840.html ????????? ?????] [http://www.anisaty.com/vb/t71838.html ???? ????????? ?????] [http://www.anisaty.com/vb/t71836.html ??????? ???? ????????] [http://www.anisaty.com/vb/t71835.html ?????? ????? ??????] [http://www.anisaty.com/vb/t71833.html ????? ?????? ?????] [http://www.anisaty.com/vb/t71831.html ???? ????????? ??????] [http://www.anisaty.com/vb/t71830.html ???? ?????? ??????? ??????] [http://www.anisaty.com/vb/t71828.html ???? ?????? ????????? ?????] [http://www.anisaty.com/vb/t71826.html ???? ????????? ????] [http://www.anisaty.com/vb/t71824.html ???? ???????] [http://www.anisaty.com/vb/t71823.html ?????? ?? ????] [http://www.anisaty.com/vb/t71820.html ????? ???????] [http://www.anisaty.com/vb/t71819.html ????? ????? ??????] [http://www.anisaty.com/vb/t71815.html ????? ????? ??????] [http://www.anisaty.com/vb/t71208.html ?????? ???? ??? ?? ??????] [http://www.anisaty.com/vb/t71016.html ??????? ???????] [http://www.anisaty.com/vb/t71013.html ????? ??????? ????? ?????] [http://www.anisaty.com/vb/t71011.html ????? ???????] [http://www.anisaty.com/vb/t71008.html ???? ??????] [http://www.anisaty.com/vb/t71006.html ???? ???????] [http://www.anisaty.com/vb/t70923.html ?????? ???? ????] [http://www.anisaty.com/vb/t70916.html ????? ??????] [http://www.anisaty.com/vb/t70912.html ???? ??????? ?? ?????] [http://www.anisaty.com/vb/t70911.html ????? ???? ??? ??????] [http://www.anisaty.com/vb/t70861.html ???? ??????? ?? ????? ????? ??????] [http://www.anisaty.com/vb/t70712.html ?????? ?????? ? 250 ???? ?? ??????? ???????] [http://www.anisaty.com/vb/t69718.html ???? ?????? ????] [http://www.anisaty.com/vb/t69598.html ?????? ?????? ????????] [http://www.anisaty.com/vb/t69595.html ??????? ??? ??????] [http://www.anisaty.com/vb/t69592.html ?????? ??? ?????] [http://www.anisaty.com/vb/t69587.html ????? ???? ??????] [http://www.anisaty.com/vb/t69584.html ???? ??????? ??????] [http://www.anisaty.com/vb/t69581.html ???? ?????? ????] [http://www.anisaty.com/vb/t69579.html ???? ?????? ???????] [http://www.anisaty.com/vb/t69577.html ??????? ????? ??????] [http://www.anisaty.com/vb/t69575.html ???? ?????? ??????? ??????] [http://www.anisaty.com/vb/t69574.html ???? ??????? ?????] [http://www.anisaty.com/vb/t69573.html ?????? ???? ??????] [http://www.anisaty.com/vb/t69572.html ??? ??????? ??????? ??????] [http://www.anisaty.com/vb/t71161.html ??????? ??? ??????] [http://www.anisaty.com/vb/t69692.html ??????? ????] [http://www.anisaty.com/vb/t69689.html ??? ???? ??????? ?????] [http://www.anisaty.com/vb/t69684.html ??????? ?????] [http://www.anisaty.com/vb/t69677.html ??????? ?????] [http://www.anisaty.com/vb/t69674.html ????? ??????] [http://www.anisaty.com/vb/t69672.html ??????? ???] [http://www.anisaty.com/vb/t69670.html ?????? ???? ???????] [http://www.anisaty.com/vb/t69664.html ????? ???? ????? ??????] [http://www.anisaty.com/vb/t69662.html ???? ?????? ????? ??????] [http://www.anisaty.com/vb/t69659.html ??? ??????? ?????? ????] [http://www.anisaty.com/vb/t69658.html ????? ????? ?????] [http://www.anisaty.com/vb/t68971.html ??????? ??? ???? ?????] [http://www.anisaty.com/vb/t68969.html ??? ??????? ??? ????? ??? ?????] [http://www.anisaty.com/vb/t68866.html ??????? ????? ???????] [http://www.anisaty.com/vb/t68865.html ???? ?? ????? lalique] [http://www.anisaty.com/vb/t68864.html ??????? ??? ?????] [http://www.anisaty.com/vb/t68863.html ??????? ??? ????? ?????] [http://www.anisaty.com/vb/t68860.html ????? ????? ???? ????] [http://www.anisaty.com/vb/t68858.html ??? ???? ?????] [http://www.anisaty.com/vb/t68856.html ??????? ???? ???? ???] [http://www.anisaty.com/vb/t68855.html ????? ?????? ??? ?????] [http://www.anisaty.com/vb/t68854.html ????? ?????? ?????] [http://www.anisaty.com/vb/t68851.html ??? ????] [http://www.anisaty.com/vb/t68849.html ????? ???? ????? ?????] [http://www.anisaty.com/vb/t71822.html ????? ????? ???? ??????] [http://www.anisaty.com/vb/t71817.html ????? ???? ???? ???????] [http://www.anisaty.com/vb/t71235.html ??? ??? ????? ???????? ????????] [http://www.anisaty.com/vb/t71210.html ???? ?????] [http://www.anisaty.com/vb/t71165.html ????? ????] [http://www.anisaty.com/vb/t70921.html ????? ????? ??????] [http://www.anisaty.com/vb/t70918.html ??? ??? ????? ?????] [http://www.anisaty.com/vb/t70917.html ????? ???? ?????] [http://www.anisaty.com/vb/t70853.html ??????? ??? ??? ?????] [http://www.anisaty.com/vb/t70519.html ????? ?? ????????? ????] [http://www.anisaty.com/vb/t70517.html ??????? ???? ????? ?????] [http://www.anisaty.com/vb/t70515.html ??????? ??? ?????] [http://www.anisaty.com/vb/t70512.html ??????? ??? ??? ?????] [http://www.anisaty.com/vb/t70510.html ??????? ????? ?????] [http://www.anisaty.com/vb/t70508.html ????? ????? ??????] [http://www.anisaty.com/vb/t70506.html ????? ????? ?????? ????? ?????] [http://www.anisaty.com/vb/t70502.html ?????? ??? ???? ???????] [http://www.anisaty.com/vb/t70499.html ??????? ????? ????] [http://www.anisaty.com/vb/t70496.html ??????? ?????? ????] [http://www.anisaty.com/vb/t70481.html ??????? ?????? ?????] [http://www.anisaty.com/vb/t70477.html ??????? ????? ????] [http://www.anisaty.com/vb/t70470.html ??????? ???? ???????] [http://www.anisaty.com/vb/t70465.html ?????? ???????] [http://www.anisaty.com/vb/t70459.html ???? ??????? ?? ????? ??????] [http://www.anisaty.com/vb/t70451.html ???? ????????] [http://www.anisaty.com/vb/t71383.html ???? ?????] [http://www.anisaty.com/vb/t70881.html ???? ???????? ????????] [http://www.anisaty.com/vb/t70656.html ?????? ???? ?????? ?????] [http://www.anisaty.com/vb/t69795.html ???? ?????] [http://www.anisaty.com/vb/t68993.html ????? ?????? ???? ?????? ????] [http://www.anisaty.com/vb/t68622.html ?????? ????? ??????] [http://www.anisaty.com/vb/t67543.html ???? ?????] [http://www.anisaty.com/vb/t66567.html ????? ?????? ???? ?? ??????] [http://www.anisaty.com/vb/t56736.html ?????? ?????? ?????? ?????] [http://www.anisaty.com/vb/t64791.html ??????? ???????? ??????] [http://www.anisaty.com/vb/t64785.html ?????? ?????? ] [http://www.anisaty.com/vb/t64275.html ???? ????? ?????? ???? ??????] [http://www.anisaty.com/vb/t63931.html ??????? ???? ?????] [http://www.anisaty.com/vb/t62300.html ???? ????? ???? ????] [http://www.anisaty.com/vb/t62144.html ?????? ?????? ????? ??????] [http://www.anisaty.com/vb/t61881.html ???? ?????] [http://www.anisaty.com/vb/t61091.html ???? ????? ???] [http://www.anisaty.com/vb/t61046.html ???? ????? ????????] [http://www.anisaty.com/vb/t59725.html ???? ????????] [http://www.anisaty.com/vb/t59651.html ???? ????? ??? ??? ?????] [http://www.anisaty.com/vb/t59558.html ???? ????? ???????] [http://www.anisaty.com/vb/t58556.html ??? ????? ???? ??????] [http://www.anisaty.com/vb/t58195.html ???? ??? ?????? ?? ??? ???] [http://www.anisaty.com/vb/t58194.html ???? ??? ???? ?????? ??????] [http://www.anisaty.com/vb/t58193.html ???? ????? ?? ??? ???] [http://www.anisaty.com/vb/t71275.html ????? ???? ??????] [http://www.anisaty.com/vb/t71270.html ????? ???? ????] [http://www.anisaty.com/vb/t71266.html ????? ???? ????] [http://www.anisaty.com/vb/t69233.html ????? ?????????? ?? ?????] [http://www.anisaty.com/vb/t69170.html ????? ?????? ????????????] [http://www.anisaty.com/vb/t68966.html ???? ????? ??? ???????] [http://www.anisaty.com/vb/t68964.html ????? ?????? ?????? ??????] [http://www.anisaty.com/vb/t68962.html ???? ???????] [http://www.anisaty.com/vb/t68959.html ????? ????? ??????] [http://www.anisaty.com/vb/t68958.html ???? ???] [http://www.anisaty.com/vb/t68955.html ???? ????? ????] [http://www.anisaty.com/vb/t68953.html ????? ?????? ?????] [http://www.anisaty.com/vb/t68951.html ???? ????? ?????? ???????] [http://www.anisaty.com/vb/t68948.html ??????? ????? ??????] [http://www.anisaty.com/vb/t68945.html ?????? ????] [http://www.anisaty.com/vb/t68941.html ????? ??????] [http://www.anisaty.com/vb/t68940.html ????? ?????] [http://www.anisaty.com/vb/t68939.html ????? ????? ?????] [http://www.anisaty.com/vb/t68938.html ????? ????] [http://www.anisaty.com/vb/t68936.html ???? ?????] [http://www.anisaty.com/vb/t68927.html ??????? ????? ????????] [http://www.anisaty.com/vb/t68925.html ??? ?? ???? ????] [http://www.anisaty.com/vb/t68635.html ????? ???? ?????] [http://www.anisaty.com/vb/t67930.html ????? ??????] [http://www.anisaty.com/vb/t67929.html ????? ????] [http://www.anisaty.com/vb/t71904.html ??????? ????? ??????] [http://www.anisaty.com/vb/t71902.html ????? ????? ??????] [http://www.anisaty.com/vb/t71901.html ???? ?????? ?????] [http://www.anisaty.com/vb/t71900.html ??????? ??????? ??????] [http://www.anisaty.com/vb/t71898.html ??????? ???????] [http://www.anisaty.com/vb/t71897.html ???? ????? ?????? ??????] [http://www.anisaty.com/vb/t71896.html ???? ???? ?? ?????] [http://www.anisaty.com/vb/t71895.html ????? ??????? ???????] [http://www.anisaty.com/vb/t71894.html ??????? ??????] [http://www.anisaty.com/vb/t71893.html ??????? ??????? ????? ?????] [http://www.anisaty.com/vb/t71892.html ???? ????? ??????] [http://www.anisaty.com/vb/t71888.html ?? ???? ????????] [http://www.anisaty.com/vb/t71885.html ????? ?????? ???????] [http://www.anisaty.com/vb/t71883.html ????? ??????? ?????] [http://www.anisaty.com/vb/t71880.html ???? ??????? ????? ???? ????? ??????] [http://www.anisaty.com/vb/t71878.html ????? ??????? ????????] [http://www.anisaty.com/vb/t71876.html ???? ???? ????] [http://www.anisaty.com/vb/t71875.html ????? ????? ??????] [http://www.anisaty.com/vb/t71873.html ???? ???? ?????] [http://www.anisaty.com/vb/t71872.html ?????? ???????????] [http://www.anisaty.com/vb/t71869.html ???? ????? ?????? ??????] [http://www.anisaty.com/vb/t71868.html ???? ?????? ????? ??????] [http://www.anisaty.com/vb/t71865.html ????? ???? ????? ??????] [http://www.anisaty.com/vb/t71862.html ????? ?????? ????? ??????] [http://www.anisaty.com/vb/t71861.html ?????? ?????? ???????] [http://www.anisaty.com/vb/t51071.html ???? ???? ?????? 2013] [http://www.anisaty.com/vb/t50170.html ????? ???? ??????] [http://www.anisaty.com/vb/t48128.html ????? ??????] [http://www.anisaty.com/vb/t47482.html ????? ?????? ???? ??????] [http://www.anisaty.com/vb/t47270.html ???? ???? ??????] [http://www.anisaty.com/vb/t46995.html ????? ??? ???? ??????] [http://www.anisaty.com/vb/t46993.html ????? ??? ????? ??? ??????? ??] [http://www.anisaty.com/vb/t46988.html ??? ???? ????? ???? ??? ???? ????] [http://www.anisaty.com/vb/t46084.html ??? ???? ???? ?????? ??? ?????] [http://www.anisaty.com/vb/t46083.html ??? ?????] [http://www.anisaty.com/vb/t46082.html ????? ??? ????? ?????] [http://www.anisaty.com/vb/t45212.html ????? ??? ?? ??? ?? ????? ?????] [http://www.anisaty.com/vb/t45211.html ????? ???? ?????? ???????] [http://www.anisaty.com/vb/t45210.html ???? ???????] [http://www.anisaty.com/vb/t44964.html ????? ???? ???? ?????] [http://www.anisaty.com/vb/t44963.html ????? ??? ?? ????? ?? ?????] [http://www.anisaty.com/vb/t44961.html ??? ?????? ???? ??????] [http://www.anisaty.com/vb/t44605.html ????? ??? ??? ???????] [http://www.anisaty.com/vb/t44604.html ????? ??? ???? ?????] [http://www.anisaty.com/vb/t44602.html ????? ??? ?????? ?????] [http://www.anisaty.com/vb/t44600.html ????? ??? ????? ??????] [http://www.anisaty.com/vb/t44599.html ????? ??? ????? ??? ??????? ??] [http://www.anisaty.com/vb/t44598.html ??? ???? ????? ??????] [http://www.anisaty.com/vb/t44370.html ????? ?????? ??????] [http://www.anisaty.com/vb/t44369.html ??? ???? ??? ????? ???? ??????] [http://www.anisaty.com/vb/t71857.html ????? ?????? ?????] [http://www.anisaty.com/vb/t71856.html ????? ????? ???? ????] [http://www.anisaty.com/vb/t71854.html ???????? ???????] [http://www.anisaty.com/vb/t71853.html ????? ????????] [http://www.anisaty.com/vb/t71851.html ?????? ??? ?????] [http://www.anisaty.com/vb/t71848.html ??? ??????] [http://www.anisaty.com/vb/t71846.html ??? ??????] [http://www.anisaty.com/vb/t71818.html ??? ???????] [http://www.anisaty.com/vb/t71816.html ??? ????????? ???????] [http://www.anisaty.com/vb/t71814.html ??????? ????? ?????] [http://www.anisaty.com/vb/t71811.html ?????? ??????? ???????????] [http://www.anisaty.com/vb/t71810.html ?????? ?????] [http://www.anisaty.com/vb/t71807.html ???????] [http://www.anisaty.com/vb/t71805.html ???????? ?????? ?????? ?????? ???????] [http://www.anisaty.com/vb/t71803.html ?????? ????????] [http://www.anisaty.com/vb/t71801.html ????? ??????] [http://www.anisaty.com/vb/t71800.html ??????] [http://www.anisaty.com/vb/t71799.html ????? ?????] [http://www.anisaty.com/vb/t71797.html ??????] [http://www.anisaty.com/vb/t71795.html ?????? ??? ????] [http://www.anisaty.com/vb/t71792.html ????? ?????? ?????] [http://www.anisaty.com/vb/t71791.html ??????] [http://www.anisaty.com/vb/t71789.html ?????] [http://www.anisaty.com/vb/t71787.html ??????] [http://www.anisaty.com/vb/t71784.html ?? ??????] [http://www.anisaty.com/vb/t71190.html ????? ???? ?????] [http://www.anisaty.com/vb/t70544.html ????? ?????] [http://www.anisaty.com/vb/t70541.html ????? ????? ???? ???????] [http://www.anisaty.com/vb/t70492.html ????? ??? ?????? ??????] [http://www.anisaty.com/vb/t70488.html ???? ???????] [http://www.anisaty.com/vb/t70486.html ???? ????? ??? ???????] [http://www.anisaty.com/vb/t70482.html ??????? ??????? ????????] [http://www.anisaty.com/vb/t70479.html ??? ??? ??????? ???????] [http://www.anisaty.com/vb/t70476.html ??????? ??????] [http://www.anisaty.com/vb/t70474.html ???? ?????? ??????] [http://www.anisaty.com/vb/t70473.html ?????? ???? ?????] [http://www.anisaty.com/vb/t70472.html ??? ????? ????? ?????] [http://www.anisaty.com/vb/t70468.html ????? ???? ????? ???????] [http://www.anisaty.com/vb/t70466.html ???? ????? ????????] [http://www.anisaty.com/vb/t70464.html ???? ????? ????????] [http://www.anisaty.com/vb/t70462.html ????? ?? ?????] [http://www.anisaty.com/vb/t70458.html ???? ??????? ???????] [http://www.anisaty.com/vb/t70456.html ????? ????????] [http://www.anisaty.com/vb/t70454.html ?????? ?????] [http://www.anisaty.com/vb/t70453.html ???? ?????? ???????? ???] [http://www.anisaty.com/vb/t70450.html ????? ????? ??????? ?? ?????] [http://www.anisaty.com/vb/t70446.html ????? ????? ????????] [http://www.anisaty.com/vb/t70437.html ??? ????? ?? ?????? ??????] [http://www.anisaty.com/vb/t70436.html ??????? ???????? ??????] [http://www.anisaty.com/vb/t70434.html ?????? ????] [http://www.anisaty.com/vb/t71724.html ????? ?????] [http://www.anisaty.com/vb/t71722.html ????? ?????] [http://www.anisaty.com/vb/t71721.html ????? ????? ?????] [http://www.anisaty.com/vb/t71720.html ????? ?????] [http://www.anisaty.com/vb/t71719.html ?????? ???] [http://www.anisaty.com/vb/t71718.html ????? ?????? ???????] [http://www.anisaty.com/vb/t71717.html ????? ??????] [http://www.anisaty.com/vb/t71716.html ???? ??????] [http://www.anisaty.com/vb/t71715.html ????? ????] [http://www.anisaty.com/vb/t71714.html ?????? ??????? ?????] [http://www.anisaty.com/vb/t71713.html ????? ?????] [http://www.anisaty.com/vb/t71711.html ???? ????? ?????] [http://www.anisaty.com/vb/t71709.html ???? ????? ???????] [http://www.anisaty.com/vb/t71706.html ???? ???????] [http://www.anisaty.com/vb/t71704.html ????? ????? ????? ???????] [http://www.anisaty.com/vb/t71702.html ?????? ??????? ????] [http://www.anisaty.com/vb/t71698.html ??? ????? ??????] [http://www.anisaty.com/vb/t71695.html ????? ????? ????] [http://www.anisaty.com/vb/t71693.html ??? ???? ???????? ???] [http://www.anisaty.com/vb/t71691.html ?? ?????????? ?? ????? ?????] [http://www.anisaty.com/vb/t71687.html ????? ???? ??????] [http://www.anisaty.com/vb/t71684.html ????? ??????] [http://www.anisaty.com/vb/t71682.html ????? ???? ????] [http://www.anisaty.com/vb/t71681.html ????? ?????? ?????] [http://www.anisaty.com/vb/t71678.html ????? ??? ???????] [http://www.anisaty.com/vb/t71240.html ????? ?????? ?????? ???????] [http://www.anisaty.com/vb/t70914.html ?? ????? ?? ??? ??? ??? ?????????] [http://www.anisaty.com/vb/t70880.html ????? ?????? ?? ?????] [http://www.anisaty.com/vb/t70879.html 7 ????? ?????? ???? ????] [http://www.anisaty.com/vb/t69849.html ????? ???????] [http://www.anisaty.com/vb/t69845.html ????? ??? ????? ?????? ?????] [http://www.anisaty.com/vb/t69844.html ????? ??????? ???????] [http://www.anisaty.com/vb/t69841.html ????? ????? ???????] [http://www.anisaty.com/vb/t69838.html ???? ????? ????] [http://www.anisaty.com/vb/t69832.html ????? ????] [http://www.anisaty.com/vb/t69830.html ???? ????????????] [http://www.anisaty.com/vb/t69829.html ????? ?????? ?????] [http://www.anisaty.com/vb/t69826.html ????? ???????] [http://www.anisaty.com/vb/t69825.html ????? ?????? ?????] [http://www.anisaty.com/vb/t69822.html ??? ???????] [http://www.anisaty.com/vb/t69820.html ????? ??? ???????] [http://www.anisaty.com/vb/t69816.html ???? ???? ?????? ?????] [http://www.anisaty.com/vb/t69813.html ??? ??????? ????] [http://www.anisaty.com/vb/t69811.html ?????? ??????? ?????] [http://www.anisaty.com/vb/t69810.html ???? ???????] [http://www.anisaty.com/vb/t69807.html ??? ?????? ???? ???????] [http://www.anisaty.com/vb/t69806.html ???? ????? ?????] [http://www.anisaty.com/vb/t69804.html ????? ?????????????] [http://www.anisaty.com/vb/t69802.html ??????? ???????] [http://www.anisaty.com/vb/t69801.html ????? ???? ?????? ???? ?????] [http://www.anisaty.com/vb/t71224.html ?????? ???? ??? ?????? ???????] [http://www.anisaty.com/vb/t71207.html ????? ????? ???? ????? ?? ?????? ?????] [http://www.anisaty.com/vb/t71203.html ??? ?????? ?? ??????] [http://www.anisaty.com/vb/t71000.html ??? ????? ???????] [http://www.anisaty.com/vb/t70997.html ????? ???? ?????] [http://www.anisaty.com/vb/t70995.html ????? ????? ?????? ??????] [http://www.anisaty.com/vb/t70992.html ????? ????? ????] [http://www.anisaty.com/vb/t70988.html ????? ????] [http://www.anisaty.com/vb/t70979.html ??? ?????? ???? ??????] [http://www.anisaty.com/vb/t70933.html ?????? ??? ?????? ?? ???? ????] [http://www.anisaty.com/vb/t70932.html ???? ???? ????? ?? ???????? ???????] [http://www.anisaty.com/vb/t70931.html ???? ??????? ?? ???? ??? ????] [http://www.anisaty.com/vb/t70929.html ????? ????? ?? ???? ??????] [http://www.anisaty.com/vb/t70913.html ????? ???? ?????] [http://www.anisaty.com/vb/t70867.html ???? ???? ??? ????? ?????] [http://www.anisaty.com/vb/t70368.html ????? ?????? ?????? ???????] [http://www.anisaty.com/vb/t70189.html ????? ?????? ????? ???????? ???????] [http://www.anisaty.com/vb/t70184.html ????? ??????? ???????? ?? ?????? ???????] [http://www.anisaty.com/vb/t70180.html ????? ?????? ???????? ??? ??????] [http://www.anisaty.com/vb/t70177.html ?????? ?????? ???????? ???????] [http://www.anisaty.com/vb/t70156.html ?????? ?????? ?? ??????? ???????] [http://www.anisaty.com/vb/t70120.html ????? ???????? ??????? ???????] [http://www.anisaty.com/vb/t69693.html ????? ???? ?????] [http://www.anisaty.com/vb/t69682.html ????? ?????? ??? ?????] [http://www.anisaty.com/vb/t69676.html ????? ???? ?????] [http://vb.5rbz.com/f37 ??????] [http://vb.5rbz.com/f55 ???????] [http://vb.5rbz.com/f45 ??? ????] [http://vb.5rbz.com/f43 ???] [http://vb.5rbz.com/f22 ??? ??] [http://vb.5rbz.com/f30 ???????] [http://vb.5rbz.com/f20 ?????] [http://vb.5rbz.com/f19 ???? ?????] [http://vb.5rbz.com/t2574 ??????? ??] [http://vb.5rbz.com/t2628 ??? ??????] [http://vb.5rbz.com/t2651 ??? ?????] [http://vb.5rbz.com/t3167 ??? ???? ???????] [http://vb.5rbz.com/t3165 ??? ?????] [http://vb.5rbz.com/t3173 ??? ???????] [http://vb.5rbz.com/t3175 ?????? ?????] [http://vb.5rbz.com/t3177 ?????? ?????] [http://vb.5rbz.com/t3178 ?????? ???? ????] [http://vb.5rbz.com/t3179 ???????? ????????] [http://vb.5rbz.com/t3191 ??? ??????] [http://vb.5rbz.com/t3195 ??? ???? ????] [http://vb.5rbz.com/t3206 ??? ??????????] [http://vb.5rbz.com/t3207 ????? ??? ??????] [http://games.5rbz.com/category/1.html ????? ????] [http://games.5rbz.com/category/2.html ????? ????] [http://games.5rbz.com/category/3.html ????? ??????] [http://games.5rbz.com/category/4.html ????? ???] [http://games.5rbz.com/category/5.html ????? ????] [http://games.5rbz.com/category/7.html ????? ?????] [http://games.5rbz.com/category/8.html ????? ????] [http://games.5rbz.com/ ????? ????] [http://games.5rbz.com/category/9.html ????? ????] [http://games.5rbz.com/category/10.html ????? ?????] [http://games.5rbz.com/category/12.html ????? ?????] [http://games.5rbz.com/category/16.html ????? ????] [http://games.5rbz.com/category/25.html ????? ???????] [http://games.5rbz.com/category/14.html ????? ???] [http://games.5rbz.com/category/15.html ????? ?????] [http://games.5rbz.com/category/18.html ????? ?????] [http://games.5rbz.com/category/19.html ????? ?? ?????] [http://games.5rbz.com/category/20.html ????? ???? ?????] [http://games.5rbz.com/category/21.html ????? ?????] [http://games.5rbz.com/category/22.html ????? ?????] [http://games.5rbz.com/category/23.html ????? ?????] [http://games.5rbz.com/category/24.html ????? ????] [http://olivesgames.com/ Olives Games] [http://www.h55h.com ?????] [http://www.h55h.com/girl-games ????? ????] [http://www.5l5l.com/ ?????] [http://www.g55y.com/ ????? ????] [http://forums.5l5l.com/ ?????] [http://g9g.bz/ g9g] [http://www.neilshare.com/ ???? ????? ?????] [http://vb.ghrorak.com/ghrorak-t7777.html ??? ????] [http://vb.ghrorak.com/ghrorak-f88 ????? ???????] [http://vb.ghrorak.com/ghrorak-f49 ??? ???????] [http://mall.3orod.com/category.php?id_category=15 ??????] [http://mall.3orod.com/category.php?id_category=24 ??????] [http://mall.3orod.com/category.php?id_category=49 ?????] [http://mall.3orod.com/category.php?id_category=162 ?????????] [http://mall.3orod.com/category.php?id_category=165 ????] [http://www.nesaeya.com/category/%D9%81%D9%88%D8%A7%D8%A6%D8%AF/ ?????] [http://vb.maas1.com/f66.html ??? ?????] [http://vb.maas1.com/f91.html ???????] [http://vb.ghrorak.com/ghrorak-t7826.html ??? ???] [http://vb.ghrorak.com/ghrorak-t7828.html ??? ??? ?????] [http://helwat.com/ ?????] [http://helwat.com/vb/ ??????? ?????] [http://helwat.com/vb/ ??????? ??????] -- Posted via http://www.ruby-forum.com/.