Alexander Ranger
2012-Jul-18  06:22 UTC
[Ironruby-core] Calling .Net generic method with Ruby object
Hello. I''ve got this problem: I''m having a .Net method with generics like this: void Store<T>(T obj) where T : class, new(); And I''m trying to call it from IronRuby project with Ruby object as an argument. comp = Computer.new session.method(:Store).of(Computer).call(comp) #session is another user created .Net object, which has the method Store And when I''m running the project an error pops up "GenericArguments[0], "IronRuby.Builtins.RubyObject", in "Void Store[T](T)" does not satisfy the restriction of the type parameter "T"" I guess that .Net generic just can''t accept RubyObject as an argument. But can I somehow bypass that restriction? -- Posted via http://www.ruby-forum.com/.
Orion Edwards
2012-Jul-18  20:58 UTC
[Ironruby-core] Calling .Net generic method with Ruby object
The .NET method can''t accept normal IronRuby objects, because of the
new()
constraint.
IronRuby objects behind the scenes are all instances of A .NET class 
called RubyObject - you can see it''s code here:  
https://github.com/IronLanguages/main/blob/master/Languages/Ruby/Ruby/Builtins/RubyObject.cs
RubyObject has 2 constructors, both of which require parameters... Your 
new() constraint says "I can only accept methods with public zero-argument 
constructors"... RubyObject doesn''t satisfy this (and neither do
many many
other .NET classes), so it simply doesn''t work.
If you remove the new() constraint, you can pass Ruby objects to the Store 
method.
There is another way to do this also. If you create a blank .NET class 
with a default constructor, and have your ruby classes derive from it, 
then IronRuby will create instances of those classes instead of 
RubyObject. 
You can then call the Store method and use the .NET class as the T.
Remember, C# can''t see any of the ruby methods, but it will also allow
you
to "store" the object.
Here''s my example code:
C#:
public static class Demo
{
    public static void Store<T>(T obj) where T : class, new()
    {
        Console.WriteLine("Storing {0}", obj);
    }
}
public class SimpleObject
{
    public SimpleObject() { }
}
IronRuby:
class X < SimpleObject; end
x_instance = X.new
Demo.method(:Store).of(SimpleObject).call x_instance
# This prints "Storing IronRuby.Classes.SimpleObject$1"
If it''s ok, can I ask what you''re trying to do here? Normal
.NET code
can''t really interact with ruby objects unless it''s built to
use the C# 4
dynamic keyword, or has special knowledge of the Dynamic Language Runtime 
API''s... If you''re just putting ruby objects in a list so that
ruby code
can retrieve them later that will be fine, but if you''re trying to do 
other things, you may run into problems...
______________________________________________________
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:   Alexander Ranger <lists at ruby-forum.com>
To:     ironruby-core at rubyforge.org
Date:   18/07/2012 06:23 p.m.
Subject:        [Ironruby-core] Calling .Net generic method with Ruby 
object
Sent by:        ironruby-core-bounces at rubyforge.org
Hello. I''ve got this problem:
I''m having a .Net method with generics like this:
void Store<T>(T obj) where T : class, new();
And I''m trying to call it from IronRuby project with Ruby object as an
argument.
comp = Computer.new
session.method(:Store).of(Computer).call(comp)
#session is another user created .Net object, which has the method Store
And when I''m running the project an error pops up
"GenericArguments[0], "IronRuby.Builtins.RubyObject", in
"Void
Store[T](T)" does not satisfy the restriction of the type parameter
"T""
I guess that .Net generic just can''t accept RubyObject as an argument.
But can I somehow bypass that restriction?
-- 
Posted via http://www.ruby-forum.com/.
_______________________________________________
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/20120719/0f5979c9/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/20120719/0f5979c9/attachment-0001.gif>
Alexander Ranger
2012-Jul-26  06:16 UTC
[Ironruby-core] Calling .Net generic method with Ruby object
Re: [Ironruby-core] Calling .Net generic method with Ruby object
Orion Edwards
Wed, 18 Jul 2012 13:59:01 -0700
The .NET method can''t accept normal IronRuby objects, because of the 
new()
constraint.
IronRuby objects behind the scenes are all instances of A .NET class
called RubyObject - you can see it''s code here:
https://github.com/IronLanguages/main/blob/master/Languages/Ruby/Ruby/Builtins/RubyObject.cs
RubyObject has 2 constructors, both of which require parameters... Your
new() constraint says "I can only accept methods with public 
zero-argument
constructors"... RubyObject doesn''t satisfy this (and neither do
many
many
other .NET classes), so it simply doesn''t work.
If you remove the new() constraint, you can pass Ruby objects to the 
Store
method.
There is another way to do this also. If you create a blank .NET class
with a default constructor, and have your ruby classes derive from it,
then IronRuby will create instances of those classes instead of
RubyObject.
You can then call the Store method and use the .NET class as the T.
Remember, C# can''t see any of the ruby methods, but it will also allow 
you
to "store" the object.
Here''s my example code:
C#:
public static class Demo
{
    public static void Store<T>(T obj) where T : class, new()
    {
        Console.WriteLine("Storing {0}", obj);
    }
}
public class SimpleObject
{
    public SimpleObject() { }
}
IronRuby:
class X < SimpleObject; end
x_instance = X.new
Demo.method(:Store).of(SimpleObject).call x_instance
# This prints "Storing IronRuby.Classes.SimpleObject$1"
If it''s ok, can I ask what you''re trying to do here? Normal
.NET code
can''t really interact with ruby objects unless it''s built to
use the C#
4
dynamic keyword, or has special knowledge of the Dynamic Language 
Runtime
API''s... If you''re just putting ruby objects in a list so that
ruby code
can retrieve them later that will be fine, but if you''re trying to do
other things, you may run into problems...
______________________________________________________
Orion Edwards | Technical Leader
PHONE +64 7 838 9800 | FAX +64 7 838 9801 |
EMAIL orion.edwa... at gallagher.co | WEB www.gallagher.co
-- 
Posted via http://www.ruby-forum.com/.
Badr A.
2012-Oct-03  07:19 UTC
[Ironruby-core] Calling .Net generic method with Ruby object
[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/.