amritpal pathak wrote in post #979374: > I am new to Ruby on Rails and number of times interacted with rake and > gem. > Can anyone explain what is Rake and Gem in RoR?
Rake is like "make" for Ruby. It's basically a task runner that can manage dependencies between tasks. RubyGems (gem) is a Ruby package manager similar to apt-get, homebrew, macports, fink etc. It's used to install, update and manage Ruby packages. These packages are referred to as "gems." -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

