![]() |
Software >
Ruby > Ruby tools >
(on Wikipedia)
https://rubyonrails.org/
A Ruby web development framework.
--
Tutorials ∞
Ajax in Rails ∞
IDEs ∞
GUI Toolkits ∞
TODO - many notes are saved offline
2006-03-26 or earlier - (version not recorded) ∞
su apt-get install ruby apt-get install ruby-RubyGems apt-get install ruby-mysql gem install rails --include-dependencies
Also check out RubyStack -- A LAMPP-like server for trivial setup.
(date not recorded) - RadRails v0.6.1 ∞
https://web.archive.org/web/20191201030911/https://www.radrails.org/
Testing the binary download thingy for Linux.
- Questions:
- How do I change my browser preference?
-
How do I open a project? I see no such functionality. This is insane.
- Issues:
- It's not smart enough to know if rails isn't installed.
- The splash screen overlays the opening workspace-selection dialogue.
-
Does not respect --help on the commandline.
Hello World ∞
Use rails to generate the project:
rails hello cd hello ruby script/generate controller Say
Edit app/controllers/say_controller.rb
and inside the class, add the "controller":
def hello end
Edit app/views/say/hello.rhtml
and add the "view":
<html>
<body>
hello world
</body>
</html>
Launch your project:
ruby script/server
Then visit: localhost:3000/hello
Rails Documentation and Help ∞
- Built in:
rails project_name ruby project_name/script/server
Then visit: localhost:3000 or 0.0.0.0:3000
- Mailing lists:
- rubyonrails-talk - Discuss general Ruby on Rails topics.
- rubyonrails-spinoffs - Talk about script.aculo.us and Prototype as they fit inside of Rails and outside.
- rubyonrails-security - Security annoucements for Ruby on Rails.
-
rubyonrails-core - Discussion list for Ruby on Rails core development.
- Sites:
- https://web.archive.org/web/20161007151727/http://railsfaq.org/
-
Ruby on Rails wiki -- UnfortunatelyItsAllCamelCase ;(
-
https://guides.rubyonrails.org/
- Has lots of tutorials.
- https://api.rubyonrails.org/
Rails Tutorials ∞
-
https://guides.rubyonrails.org/
- Has lots of tutorials.
- https://web.archive.org/web/20090306185501/http://wiki.rubyonrails.org:80/rails/pages/tutorial?
- Rolling With Ruby On Rails / part 2
-
Really getting started in Rails -- Meant as a followup to the onlamp articles. Short and simple. Not actually a tutorial. =/
- Rails files: https://www.slash7.com/cheats/rails_files_cheatsheet.pdf
- Form Helpers: https://www.slash7.com/cheats/form_helpers.pdf
- ActiveRecord: https://www.slash7.com/cheats/activerecord_cheatsheet.pdf
- Four Days on Rails
-
Exploring Ruby on Rails - A discussion about the Rails framework, how to build with it and the benefits of Ruby.
- Specific examples:
- http://www.erikveen.dds.nl/distributingrubyapplications/rails.html -- Distributing Rails apps.
- Jeff Hicks' "Has many and belongs to many" tutorial
- How to make a todo list program with Rails
- Doing HTTP-Auth with Ruby on Rails
- Multilingual Rails tutorial
- Fast-track your Web apps with Ruby on Rails
Code Snippets ∞
Books ∞
-
The Rails Way (Addison-Wesley Professional Ruby Series)
Ajax in Rails ∞
- https://web.archive.org/web/20080517053920/http://wiki.rubyonrails.com/rails/pages/AjaxDiscussion - Ajax + Rails
- https://web.archive.org/web/20050611233724/http://www.onlamp.com/pub/a/onlamp/2005/06/09/rails_ajax.html
Tutorials / etc ∞
- Ajax on Rails
- http://mir.aculo.us/2005/11/14/ajax-activity-indicators-with-rails-0-14-3/ - AJAX Activity indicator with Rails
- http://ajaxian.com/archives/ajax-activity-indicators-with-rails - AJAX Activity indicator with Rails
- http://ajaxian.com/by/topic/ruby
Rake ∞
- Rake (software)
- docs.rubyrake.org
- https://web.archive.org/web/20140220215859/http://onestepback.org/index.cgi/Tech/Rake/Tutorial/RakeTutorialIntroduction.rdoc
- https://web.archive.org/web/20161129032332/http://www.railsenvy.com:80/2007/6/11/ruby-on-rails-rake-tutorial
- https://www.martinfowler.com/articles/rake.html
-
https://web.archive.org/web/20120726025306/http://nubyonrails.com/articles/rake-rake-rake-your-boat
Random blogs ∞
-
https://web.archive.org/web/20080214112810/blogs.zdnet.com/BTL/?p=2094
- https://web.archive.org/web/20080213052219/br.sys-con.com/read/146645.htm
- https://web.archive.org/web/20190808100812/http://nubyonrails.com/
-
https://web.archive.org/web/20060213081520/www.mans.de/railz0r3d/
Stuff ∞
-
https://web.archive.org/web/20190217221822/http://workingwithrails.com/ - developers for hire..
-
Capistrano is for automating application deployment
- Ruby on Rails hands on: What's so hot about Rails?
- Instant Rails -- A simple way to get Ruby+Rails on something like a USB stick, with no system installation required.
-
https://web.archive.org/web/20060701024134/http://www.railsday2006.com/ [ 1 ]
- What kinds of things can a team produce in rails in just 24 hours?
--
- Ruby on Rails vs. J2EE
- Sitepoint Forums: Ruby
- https://web.archive.org/web/20070929122529/http://canadaonrails.com/
-
http://www.railslivecd.org [ 2 ] -- A Rails LiveCD based on PCLinuxOS.
Host on Mongrel not fcgi. Mongrel is faster.
Last updated 2023-11-15 at 20:44:46
dropped in some old rough notes
ported
fixed some links
A new process will make this much easier in the future.
dumped in some rake stuff to sort out later..