Search Results

2
votes
4answers
207 views

Metaprogramming how much is too much?

As I have become more and more comfortable using metaprogramming techniques I have found more and more applications for metaprogramming as well. I'm working now on a little project in which I am c …
1
vote
2answers
89 views

XSD Schema Validation in Ruby

I have found several sources regarding how to validate an xml document against a schema, but I have an application in ruby in which I need to validate that a user supplied schema is a valid schema …
0
votes

What is your preferred way to produce charts in a Ruby on Rails web application?

GoogleCharts and Gruff charts are great, but sometimes they lack some features that I need for more scientific plotting. There is a gem for gnuplot which may be helpful for some of these situation …
0
votes

Converting hash to string in Ruby.

You can get the keys in the hash using flash.keys and then from there you can build a new array of strings and then join them. So something like f …
1
vote

Find the current stdout OR How to redirect the output back to console.

If you are only interested in an easier way to run administrative tasks as root, there might be a few other things you might consider. $sudo -s This will give you …
0
votes

Ruby unit testing: how to fake Time.now?

Depending upon what you are comparing Time.now to, sometimes you can change your fixtures to accomplish the same goal or test the same feature. For example, I had a situation where I …
0
votes

Generating graphs in a RubyOnRails application

There is also a ruby gem for gnuplot. While this might not be as easy to use as Gruff or googlecharts, it will provide more flexibility fo …
0
votes

Ruby unit testing: how to fake Time.now?

Also see this question where I put this comment as well. Depending …
1
vote

creating a controller in Rails

From the brief error you have posted you might want to check that you have the mysql gem installed if you are planning on using mysql. If you are on linux try: gem install m …