1
vote
Ruby Performance
Matz ruby 1.8.6 is much slower when it comes to performance and 1.9 and JRuby do alot to speed it up. But the performance isn't such that it will prevent you from doing anything you want in a web …
1
vote
0
votes
Generating an object model in Ruby from an XML DTD
You can use the ruby version of xml-simple.
You shouldn't need to install the gem as I believe it's already installed with rails.
h …
1
vote
How do I gracefully shut down a Mongrel web server
Better question is how to keep your app from consuming so much memory that it requires you to reboot mongrels from time to time.
www.modrails.com reduced our memory footprint significantly …
0
votes
Adding Functionality to Rails
Require and include are 2 different things.
Require is to strictly load a file once from a load path. The loadpath is a string and this is the key used to determine if the file has already …
1
vote
Polymorphic Models in Ruby on Rails?
I would have the following models
Tshirt
TshirtBox has_many TshirtItems
TshirtBoxItems (This is basically a join table with an id tshirt_box_id and tshirt_id) belongs_to Tshirt …
0
votes
How to incorporate Interactive Ruby into my development process?
I just use rdebug to debug any of my ruby or RoR code.
…
2
votes
RoR: nested namespace routes, undefined method error
I'm assuming you are using rails 2.0.x so the way you generate a route is
__path
admin_blog_path(blog)
and if you are riding a previous version I think it's just …
2
votes
From objects to tables using activerecord
Even if you could dynamically create tables on the fly like that (not saying that you can). I wouldn't want to do that. There is so much potential for error there.
I would create the migr …
0
votes
Rails test hanging - how can I print the test name before execution?
can you just hit ctrl+c to halt the execution and it will display the stack trace of where you halted the execution?
…
0
votes
Testing rails partial views standalone
Testing a view without the controller code is a dangerous thing. Your tests might pass but your application might throw an error. Always test against real life situations not artificial ones. …
1
vote
How do you do relative time in Rails?
You can use the arithmetic operators to do relative time.
Time.now - 2.days
Will give you 2 days ago.
…
1
vote
Rake and current directory
If this is a RoR app your Rakefile.rb should be in your RAILS_ROOT directory. So in any script you can specify file location like
config.load_paths += %W( #{RAILS_ROOT}/extras )
…
1
vote
Who are good web hosts for Ruby on Rails projects?
RackSpace is great but they are expensive.
RailsMachine if you want to host on VMs is great. They are better then most because they allocate dedicated CPUs for you instead of sharing processing ti …
2
votes
Fragment Caching with Memcached
You can set the fragment_cache_store in your environment.rb
ActionController::Base.cache_store = ActiveSupport::Cache::MemCacheStore.new()
…
