search for: ironruby

Displaying 14 results from an estimated 14 matches for "ironruby".

2011 Oct 26
8
IronRuby's Marshal.dump doesn't work with CLR types, or ruby types backed by a CLR type
Backstory: I''m trying to use DRb for some in-house utility code. DRb itself seems to work fine, but I found that when I misspelled a method name, instead of reporting back a NoMethodError, the IronRuby process crashed immediately to the console. This is using a relatively recent build of IronRuby from Github Steps to repro: e = RuntimeError.new ''xyz'' dumped = Marshal.dump e e2 = Marshal.load dumped I would expect e2 to be equivalent to e, but instead the process crashes wi...
2011 Aug 02
1
CompiledCode execution + using scope + local variables in a loop => NullReferenceException
Hi, I have reported a bug on codeplex: http://ironruby.codeplex.com/workitem/6353 Will it be fixed in next release? Thank you, Anton -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20110802/78a24916/attachment.html>
2012 Oct 17
1
IronRuby igem not working
Hi All, When trying to download the following gems from the cucumber wiki page, I get the following error: https://github.com/cucumber/cucumber/wiki igem install cucumber ?no-ri ?no-rdoc igem install iron-term-ansicolor ?no-ri ?no-rdoc ERROR: Could not find a valid gem ''slimgems'' (>= 0) in any repository ERROR: While executing gem ... (Gem::RemoteFetcher::FetchError)
2007 Nov 09
2
RubyConf 2007 - Thoughts?
Hi, For those of you that attended RubyConf 2007, what were your impressions? Any more thoughts on JRuby, Rubinius, IronRuby or Wuby? Regards, Dan
2012 Sep 18
0
No such file to load -- gem_prelude.rb (LoadError)
Hi, I am new to IronRuby. I have installed IronRuby1.1. When I execute my IronRuby script I get an error: unknown: no such file to load -- gem_prelude.rb (LoadError) Can someone tell me why this error is occuring??? I am trying to automate using Bewildr. This is my script: require ''rubygems'' require ...
2009 Mar 25
5
[Cucumber] ANN: Cucumber with pure Java
...is I hope Cucumber will reach a bigger crowd. Much bigger crowd actually :-) - this will work for Scala, Clojure, Jython and all the other cool JVM languages too. (I''ll be doing something similar for .NET, which will bring Cucumber goodness to C#, F# and whatever languages run on .NET. But IronRuby must catch up on speed first). I had the pleasure of going back to visit PicoContainer - a pioneering lightweight dependency injection container I developed with Paul Hammant back in 2003. It''s still lightweight and a joy to use (relatively speaking - Java in itself isn''t joyful)...
2008 Jan 23
6
JRuby and callbacks?
Hi all, Any Java/JRuby folks on the list? I''d like to see if we can implement api.c for JRuby using JNA and see how it handles the callbacks. I''m not a Java guy, nor do I know JNA, but I''ll take a stab at it if no one else on the list does. Here are a couple of useful links: http://www.infoq.com/news/2007/09/jna-jruby https://jna.dev.java.net/ Regards, Dan This
2007 Dec 15
0
CFP : First Ruby and Rails devroom at Fosdem 2008
...tion in the Ruby and Rails devroom. Topics include, but are not limited to: * Ruby o Tutorials (installation, basic Ruby, advanced Ruby, metaprogramming, DSLs, testing, design patterns, Rubygems, C-extensions, ...) o New developments (Ruby 1.9, Ruby 2.0, YARV, JRuby, Rubinius, IronRuby, ...) o Important/interesting libraries (your own, other''s, HOWTOs, demos, ...) o Technical showcases (interesting applications of Ruby, challenges, solutions, ...) o ... * Rails o Tutorials (installation, basic/advanced web app design, good practices...
2011 May 22
11
Problems Connecting to SQL Server
Hi all I want to connect my app to MSSQL but when i type rake db:migrate an erro occured like this: ←[31mCould not find gem ''odbc (>= 0, runtime)'' in any of the gem sources listed in your Gemfile.←[0m this is my YML file: development: adapter: sqlserver mode: odbc dsn: ontrack host: BABAK-PC pool: 5 timeout: 5000 and in my gem file gem
2012 Dec 28
3
installing ruby 1.9.3 in michael hartl's ruby on rails tutorial
...fore it happens, please read and execute the instructions below. Please use a separate terminal to execute any additional commands. Notes for Mac OS X 10.8.2, Xcode 4.5.2. For JRuby: Install the JDK. See http://developer.apple.com/java/download/ # Current Java version "1.6.0_26" For IronRuby: Install Mono >= 2.6 For Ruby 1.9.3: Install libksba # If using Homebrew, ''brew install libksba'' For Opal: Install Nodejs with NPM. See http://nodejs.org/download/ To use an RVM installed Ruby as default, instead of the system ruby: rvm install 1.8.7 # installs patch 357:...
2012 Jan 02
4
Which AR Interfaces Leverage PreparedStatements/Binds?
I could not find the answer to this in a few Google searches and thought I would ask. So when are prepared statements best leveraged in ActiveRecord''s interface? I never really noticed before, but simple condition hashes or scopes do not pass down the binds so that prepared statements are leveraged. So a `Car.find(1)` would but things like `Car.where(:id => 1).first` do not. Is it a
2007 Sep 23
16
WinRuby?
Hi all, With the latest 1.8.6 release out today, I was wondering - what would you all think of a Windows-only fork of Ruby? I mean Perl has ActiveState, right? It ships with a slightly different interpreter and different libraries, so why not Ruby? Here''s what I''m thinking: * Win2k or later. No 95/98/ME support. No cygwin/mingw, either. * Assume VC++ 8. Use whatever
2007 Aug 08
9
RSpec book?
<http://www.apress.com/book/bookDisplay.html?bID=10368> Came across this as a stub page browsing Amazon UK. This is good news! I''m surprised it hasn''t been discussed on the list before. Was Chad keeping it a secret? I hope it will have plenty of BDD theory. I''m still waiting for that magic book I can give to someone and say "here - read this, it
2009 Aug 07
7
Comments for Daniel Berger blog post
...ertain parts of C, such as file descriptors, as my attempt to port file-temp demonstrated. """ You have a point over there, but transfering file descriptors across implementations would be impossible, because that would remove the safe lock around the whole managed idea. What about IronRuby? They would face the same issue with file descriptors. """ So now I''m in a dilemma. If I want to write cross-platform code that will work with JRuby and C based implementations, I''m relegated to keeping two (or more) separate source files, one for MRI and one for J...