-1

What is the difference between Gem & Plugin?

Veger
  • 37,240
  • 11
  • 105
  • 116
Peter Prabu
  • 1,128
  • 10
  • 20
  • 1
    Please refere question showing [Defference Between Gem and Pluggin](http://stackoverflow.com/questions/5521224/difference-between-plugins-and-ruby-gems). Please search questions and then ask – Arpit Vaishnav Jan 09 '13 at 09:01

1 Answers1

2

According to this guide there are two types of (Rails) plugins:

  • specific to your application: vendored plugin
  • useful across applications: gemified plugin (or gem)

So, a gem is a plugin that is installed onto a system and is available in all (Ruby) applications. For example Ruby on Rails is a set of gems. And a (regular or vendored) plugin is directly installed into an application and only available locally.

Veger
  • 37,240
  • 11
  • 105
  • 116