Search Results

4
votes
1answer
129 views

User Monitoring in Rails

Hi We have an app with an extensive admin section. We got a little trigger happy with features (as you do) and are looking for some quick and easy way to monitor "who uses what". I …
3
votes
5answers
149 views

Rails and Flex

Hi Any thoughts on using Flex to build an RIA for administering a complex rails app. We are starting to find it difficult using ajax to keep our admin section intuitive and easy for …
2
votes
3answers
164 views

Silverlight and Rails

Hi Hopefully this will not spark a religious war... We have a web based app in RoR based on an earlier version we build in .net 2.0. So we currently have both .net and RoR skills in …
5
votes
8answers
1k views

Any thoughts on RightScale and Scalr for dynamic Ec2 instance managment

Hi Am looking for a cost effective tool for managing an web app on Ec2. Rightscale seems to the big dog and charges for it. Scalr looks like a more cost effective solution but hard to find …
1
vote
2answers
59 views

Rails App Notification Plugins

Hi Can anyone recommend some rails plugins that would allow me to register various notification against models that could be linked to a set of templates to format emails (and possibly oth …
1
vote
2answers
42 views

Rails Plugins

Is it possible to include view code in a plugin, such that an app using the plugin can simply call reference the view code like it might reference one of its own partials. Am I off track he …
0
votes
1answer
64 views

Testing Liquid templates in rails using Rspec

looking to use rspec to test liquid templates. Anyone tried this? Is it possible. Specifically our app allows users to submit a set of templates and I'd like to be able to write integration …
1
vote
5answers
178 views

Any thoughts on Multi-tenant versus Multi-database apps in Rails

Our app currently spawns a new database for each client. We're starting to wonder whether we should consider refactoring this to a multi-tenant system. What benefits / trade-offs should we …
0
votes
1answer
61 views

Setting default values across multiple children in a multi model form (Rails 2.3 )

Am trying to simplify the create / edit view for a multi-model controller. User can dymically add / remove child input fields from the form. (Have followed Eloy's complex form example) …
0
votes
2answers
52 views

Rails 2.3 select loses value when post fails validation

I have a simple form where I set the default value of a select list as follows f.select :post, (1..5).to_a, {:value => @author.posts } if validation fails on t …
0
votes
2answers
86 views

Rails 2.3 nested attributes issue

I'm running into to a issue with a nested form which I'm sure should be easily solved, yet I can't find a way around it Basically I have the following relationship event has …
0
votes
2answers
30 views

Rails 2.3 Scoping Users across different clients / instances in multi-tennant app

Are there any best practices / plugins for scoping users across different clients. Currently we are validating the uniqueness of the email address on the assumption that these will be uniq …
0
votes

Customising the generic Rails error message

Hi Thanks for the reply. Can you elaborate on what you would replace the 'public/500.html' message with. Dom …
0
votes

Validating date formats in rails

Found an excellent gem / plugin for all your date / time validations. validates_timeliness …
0
votes

Rails 2.3 nested attributes issue

Not quite the answer I was looking for .. but have hacked my way aroung this using a post save method in the parent controller (event) and checking through the child objects to inspect if the conta …