I want to write Ruby on Rails [closed] - ruby-on-rails

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
but i dont know where to start! Which version of Ruby and Rails are the best?
And all documentations I can find are for Mac users. And im on Linux( ubuntu ).
I can allready write in C++
I hope you can help me!

To install Ruby language interpreter and the Rails framework itself you can visit http://railsinstaller.org website and download an installer for windows.
Speaking about applications development in Ruby on Rails, there is good tutorial written by Michael Hartl in link https://www.railstutorial.org/, that is highly recommended way to start development with Rails. This tutorial introduces to Ruby language and Rails framework and by following it you will build Twitter clone.

Related

How can we develop e-commerce website in 20 days using Ruby on Rails and making it fully functional from scratch? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I have searched about this but getting more confused as I came to know about Shopify, Spree, Solidus etc. Please suggest me the best option to develop it in 20 days and best flexible gems or any ready made gem or plugin. I'm using Rails 5.2 & Ruby 2.5
You can use spree gem to build ecommerce application using rails. https://github.com/spree/spree
purchase a bootstrap template, integrate with rails app. then work 24 hours.

Make music streaming app using Ruby on Rails and WebSockets [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I would like to make a Ruby on Rails app that streams music using WebSockets. Does anyone know of a tutorial or guide on how to get started? I need to make the app in Ruby on Rails which I only have a beginner's level of knowledge in this language. I have, however, programmed in JavaScript and .Net for many years, so I do understand a number of intermediate to advanced programming concepts.
rails getting started: http://guides.rubyonrails.org/getting_started.html
websocket rails gem: https://github.com/DanKnox/websocket-rails
more about websocket and rails http://www.slideshare.net/jeroen_rosenberg/websocket-on-rails
and more information: http://www.google.com ;)

Migrate an application from 2.3.8 to 3.1 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
any advice about how to migrate an app from rails 2.3.8 to rails 3.1?
Should I go from 2.3.8 to 3.0 and then to 3.1?
Let me know your thoughts...
I'm especially interested in the approach to the Gemfile... and bundler. Any resource link would be welcome.
Thanks.
I'd recommend migrating to the latest version of 2.3 (2.3.14) before doing anything. Once you are on 2.3.14 you should run your tests and check your logs for any warnings and fix them. Once any issues are resolved, go ahead and try upgrading to 3.1.1. I think the largest change from 3.0 to 3.1 was the asset pipeline and you can ignore it while upgrading. As for resources, both PeepCode and RailsCasts offer great guides for doing exactly what you want.

Ruby / Rails gems and plugins that need some rails3 love? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm just getting started with rails and ruby and i wanna start giving back to the community,
Are there any cool gems / plugins that spring to mind that need some tlc or rails 3 fixes that i could start contributing on?
I know your sposed to scratch your own itch.. but most the gems i use work great! :-P
Thanks..
Daniel
Read Contributing to Rails and take a look at Github, a lot of gems (including rails) are hosted there, it has a cool issue tracking system so you can fork and start patching :)
Authlogic. It needs to be refactored to use ActiveModel. Also take a look at the feature request at the issue tracker.

Integrating InstantRails with Aptana or any other IDE [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
So I've been using InstantRails to check out Ruby on rails. I've been using Notepad++ for the editing. Now I don't want to install Ruby or Rails on my machine. Is there any walk through/tutorial on how to integrate Radrails or Netbeans with InstantRails?
Here's a tutorial: http://ruby.meetup.com/73/boards/view/viewthread?thread=2203432
(I don't know if it's any good.)
And here's one with InstantRails+Netbeans: https://web.archive.org/web/20100505044104/http://weblogs.java.net/blog/bleonard/archive/2007/03/instant_rails_w.html
I recommend learning Rails and Ruby itself first, and then picking up something like InstantRails. Having too many layers when learning something new can make it hard to know what features are part of which language, and potentially confuse you when trying to determine where a bug is occurring.

Resources