Grails Ajax tags deprecation [closed] - grails

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
Does anyone know the reason why so many Ajax related tags are being deprecated from Grails? As far as I can tell, there is no replacement other than providing your own Javascript. They seemed like handy features. I'm just curious.

You should look at below link for AJAX tags deprecation.
https://groups.google.com/forum/#!msg/grails-dev-discuss/4yesijtFSB4/PcMs8lF1_mEJ
They will however be moved to a plugin and you should be able to use it.
The main reason for deprecation is here: http://en.wikipedia.org/wiki/Unobtrusive_JavaScript
Hope this helps!

Related

Node.js vs Ruby on Rails [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
Which one is more futureproof at this point?
Which one is better for creating simple web apps in smallest time?
This also might be a question of JS vs Ruby, what do you think of this?
What are the pros and cons of each?
I suggest you do more google on this topic because it is a very general topic. However these articles offer some comprehensive comparisons:
http://ilikekillnerds.com/2014/07/should-i-use-ruby-on-rails-or-node-js-for-my-next-projectstartup/
http://fabianosoriani.wordpress.com/2011/09/11/when-to-ruby-on-rails-when-to-node-js/

Rails 4.1 - Why Spring? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
Now with Spring built-in with rails 4.1, I am curious about why the dev-team chose Spring over the others (Zeus and Spork).
Why did they choose Spring?
If you read the README from the v0.9 tag of Spring it should answer your question: https://github.com/rails/spring/tree/v0.0.9
The highlights appear to be:
implemented in pure Ruby
makes use of Rails' built-in code reloader
totally automatic (boots up in the background the first time you run a command)

Need a Suggestion on jQueryUI or angularUI [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I am making a webpage using angularJS. I need to include a datepicker. Can I use jQuery UI (include jQuery too) for this or Should I use angularUI ?
JQuery plugins and angular don't naturally work together very well. You can use them, but you would have to do some manual wrapping of the plugin. You're better off using angular-ui which will work out of the box.
For more info, check out the related answer "Thinking in AngularJS" if I have a jQuery background?

Safe plugin API for ruby application? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 4 years ago.
Improve this question
What is the recommended approach building a plugin API for a ruby (rails) application?
How can i prevent developers monkey patching over core types?
You can't prevent developers from monkey-patching your code (or any code, for that matter). This is Ruby!
Why would you want to do that anyway?

conventions for rails app documentation? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 5 years ago.
Improve this question
I known that it's more a state of art than a technical question, but I'm looking for some good templates to document model relation, validations, method for the models and controllers of my rails app.
Are there any conventions/best practice/examples to do that ?
Thanks all for your help
You can use RDoc to self-document your code. It'll take your code comments and make documentation for your project.
http://rdoc.rubyforge.org/
http://en.wikibooks.org/wiki/Ruby_Programming/RubyDoc
It's pretty neat.
I'm not sure there's much use in documenting validations and relations... Your Ruby source code is already incredibly readable in that regard.

Resources