Not logged inGosu Forums
Forum back to libgosu.org Help Search Register Login
Up Forum
Search
Topic Ruby 2.0? By erikskoglund Date 2013-02-19 07:48
I'm on osx. I tried without any luck. Can't even require gosu, I just get the error

TypeError: wrong argument type nil (expected Data)

This is with ruby-2.0.0-rc1
No rush though, just curious to see how the new garbage collector handles in my game.
Thank you for the answer!
Topic Ruby 2.0? By erikskoglund Date 2013-02-18 13:21
Hi, will there be any support for gosu with Ruby 2.0?
Topic I made a gem for simply creating gosu projects By erikskoglund Date 2013-02-07 07:58
Hi!

I recently made a gem that sets up a basic ruby/gosu game with some helper classes. Mostly for my own use when prototyping games I often create new projects, so I thought I might as well share it.

I call it chobo
Topic zooming/unzooming background image By erikskoglund Date 2013-01-18 09:31
I haven't read up a lot on the GC in Ruby. But I have some experience with other frameworks and languages that use garbage collection. From what I have tried there are two ways to go with this:
1. Allocate everything up front, during load time. Use resource pooling instead of creating new objects all the time. The goal of this method is to not have the GC run at all.
2. Keep a simple heap, small amount on references to objects. The goal of this method is to make the GC take less time to run.
Topic Best way to distribute a Ruby Gosu game By erikskoglund Date 2013-01-16 19:57
This would actually be pretty interesting. Would love to be able to release a linux version of my game too.
Topic Protecting Ruby code in a published application By erikskoglund Date 2013-01-16 19:56
haha yeah I hear it is :P
Topic Protecting Ruby code in a published application By erikskoglund Date 2013-01-16 19:56
Yeah, that's what I thought!
Topic Protecting Ruby code in a published application By erikskoglund Date 2013-01-15 20:28
I was thinking more about users actually editing the code, which could cause.. well, strange things!
Topic Protecting Ruby code in a published application By erikskoglund Date 2012-08-16 14:52
So Ruby is an interpreted language, no compilation. The code is there, right in the .app package (if you're on a mac).

Is there any way to protect your code, aside from using an obfuscator?

Powered by mwForum 2.29.7 © 1999-2015 Markus Wichitill