What is the Difference Between Gem And Plugin?

Technology CommunityCategory: Ruby on RailsWhat is the Difference Between Gem And Plugin?
VietMX Staff asked 3 years ago
  • GEM
    1. Gem is a packaged ruby application using the packaging system defined by RubyGems.
    2. Rails itself is a Gem
    3. We can install, upgrade and query the gem version.
    4. Gem installed for Ruby interpreter can be used system-wide by that interpreter.
  • Plugin
    1. Plugin is an extension of Rails Framework.
    2. Can not be upgraded by using a command. To upgrade one have to uninstall and then install upgraded version.
    3. Has to be hooked into rails application. (has to have init.rb)
    4. Have an install.rb file.
    5. Can only be used application wide.