2012-09-01 17:25:58 -04:00
The Basics of Creating Rails Plugins
====================================
2009-02-05 20:57:02 -05:00
A Rails plugin is either an extension or a modification of the core framework. Plugins provide:
2013-12-04 09:34:22 -05:00
* A way for developers to share bleeding-edge ideas without hurting the stable code base.
* A segmented architecture so that units of code can be fixed or updated on their own release schedule.
* An outlet for the core developers so that they don't have to include every cool new feature under the sun.
2009-02-05 20:57:02 -05:00
2012-11-29 17:25:02 -05:00
After reading this guide, you will know:
2009-02-05 20:57:02 -05:00
2012-12-07 12:50:09 -05:00
* How to create a plugin from scratch.
* How to write and run tests for the plugin.
2009-02-05 20:57:02 -05:00
This guide describes how to build a test-driven plugin that will:
2012-11-29 08:14:08 -05:00
* Extend core Ruby classes like Hash and String.
2013-09-14 08:26:08 -04:00
* Add methods to `ActiveRecord::Base` in the tradition of the `acts_as` plugins.
2011-02-13 16:21:17 -05:00
* Give you information about where to put generators in your plugin.
2009-02-05 20:57:02 -05:00
2011-04-13 20:49:14 -04:00
For the purpose of this guide pretend for a moment that you are an avid bird watcher.
Your favorite bird is the Yaffle, and you want to create a plugin that allows other developers to share in the Yaffle
2011-02-13 16:21:17 -05:00
goodness.
2009-02-05 20:57:02 -05:00
2012-09-01 17:25:58 -04:00
--------------------------------------------------------------------------------
2009-02-05 20:57:02 -05:00
2012-09-01 17:25:58 -04:00
Setup
-----
2009-02-05 20:57:02 -05:00
2012-09-03 21:21:24 -04:00
Currently, Rails plugins are built as gems, _gemified plugins_ . They can be shared across
different rails applications using RubyGems and Bundler if desired.
2011-05-21 20:33:28 -04:00
2012-09-01 17:25:58 -04:00
### Generate a gemified plugin.
2009-02-05 20:57:02 -05:00
2012-12-08 02:20:35 -05:00
Rails ships with a `rails plugin new` command which creates a
2013-10-07 22:26:00 -04:00
skeleton for developing any kind of Rails extension with the ability
to run integration tests using a dummy Rails application. Create your
plugin with the command:
```bash
2014-09-28 10:12:46 -04:00
$ rails plugin new yaffle
2013-10-07 22:26:00 -04:00
```
See usage and options by asking for help:
2009-02-05 20:57:02 -05:00
2012-09-01 20:45:26 -04:00
```bash
2014-09-28 10:12:46 -04:00
$ rails plugin new --help
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2013-12-04 09:34:22 -05:00
Testing Your Newly Generated Plugin
2012-09-01 17:25:58 -04:00
-----------------------------------
2009-02-05 20:57:02 -05:00
2012-09-01 21:37:59 -04:00
You can navigate to the directory that contains the plugin, run the `bundle install` command
and run the one generated test using the `rake` command.
2009-02-05 20:57:02 -05:00
2011-02-13 16:21:17 -05:00
You should see:
2009-02-05 20:57:02 -05:00
2012-09-01 20:45:26 -04:00
```bash
2014-08-19 00:07:01 -04:00
1 runs, 1 assertions, 0 failures, 0 errors, 0 skips
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2011-02-13 16:21:17 -05:00
This will tell you that everything got generated properly and you are ready to start adding functionality.
2009-02-05 20:57:02 -05:00
2012-09-01 17:25:58 -04:00
Extending Core Classes
----------------------
2009-02-05 20:57:02 -05:00
2011-02-13 16:21:17 -05:00
This section will explain how to add a method to String that will be available anywhere in your rails application.
2009-02-05 20:57:02 -05:00
2012-09-01 21:37:59 -04:00
In this example you will add a method to String named `to_squawk` . To begin, create a new test file with a few assertions:
2009-02-05 20:57:02 -05:00
2012-09-01 17:08:06 -04:00
```ruby
2011-02-13 16:21:17 -05:00
# yaffle/test/core_ext_test.rb
2010-04-30 17:19:44 -04:00
2011-02-13 16:21:17 -05:00
require 'test_helper'
2009-02-05 20:57:02 -05:00
2013-07-18 01:34:21 -04:00
class CoreExtTest < ActiveSupport::TestCase
2009-02-05 20:57:02 -05:00
def test_to_squawk_prepends_the_word_squawk
assert_equal "squawk! Hello World", "Hello World".to_squawk
end
end
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2012-09-01 21:37:59 -04:00
Run `rake` to run the test. This test should fail because we haven't implemented the `to_squawk` method:
2009-02-05 20:57:02 -05:00
2012-09-01 20:45:26 -04:00
```bash
2012-09-03 21:21:24 -04:00
1) Error:
2014-08-19 00:07:01 -04:00
CoreExtTest#test_to_squawk_prepends_the_word_squawk:
NoMethodError: undefined method `to_squawk' for "Hello World":String
/path/to/yaffle/test/core_ext_test.rb:5:in `test_to_squawk_prepends_the_word_squawk'
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
Great - now you are ready to start development.
2014-02-24 22:04:08 -05:00
In `lib/yaffle.rb` , add `require 'yaffle/core_ext'` :
2009-02-05 20:57:02 -05:00
2012-09-01 17:08:06 -04:00
```ruby
2011-02-13 16:21:17 -05:00
# yaffle/lib/yaffle.rb
2010-04-30 17:19:44 -04:00
2014-02-24 22:04:08 -05:00
require 'yaffle/core_ext'
2011-02-13 16:21:17 -05:00
module Yaffle
end
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2012-09-01 21:37:59 -04:00
Finally, create the `core_ext.rb` file and add the `to_squawk` method:
2009-02-05 20:57:02 -05:00
2012-09-01 17:08:06 -04:00
```ruby
2011-02-13 16:21:17 -05:00
# yaffle/lib/yaffle/core_ext.rb
2010-08-14 01:13:00 -04:00
2009-02-05 20:57:02 -05:00
String.class_eval do
def to_squawk
"squawk! #{self}".strip
end
end
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2012-09-01 21:37:59 -04:00
To test that your method does what it says it does, run the unit tests with `rake` from your plugin directory.
2011-02-13 16:21:17 -05:00
2012-09-01 20:45:26 -04:00
```bash
2014-08-19 00:07:01 -04:00
2 runs, 2 assertions, 0 failures, 0 errors, 0 skips
2012-09-01 17:08:06 -04:00
```
2011-02-13 16:21:17 -05:00
To see this in action, change to the test/dummy directory, fire up a console and start squawking:
2009-02-05 20:57:02 -05:00
2012-09-01 20:45:26 -04:00
```bash
2014-05-20 07:29:18 -04:00
$ bin/rails console
2009-02-05 20:57:02 -05:00
>> "Hello World".to_squawk
=> "squawk! Hello World"
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2012-09-01 17:25:58 -04:00
Add an "acts_as" Method to Active Record
----------------------------------------
2010-02-27 18:14:48 -05:00
2013-09-14 08:26:08 -04:00
A common pattern in plugins is to add a method called `acts_as_something` to models. In this case, you
want to write a method called `acts_as_yaffle` that adds a `squawk` method to your Active Record models.
2009-02-05 20:57:02 -05:00
2011-02-13 16:21:17 -05:00
To begin, set up your files so that you have:
2009-02-05 20:57:02 -05:00
2012-09-01 17:08:06 -04:00
```ruby
2011-02-13 16:21:17 -05:00
# yaffle/test/acts_as_yaffle_test.rb
2010-04-30 17:19:44 -04:00
2011-02-13 16:21:17 -05:00
require 'test_helper'
2013-07-18 01:34:21 -04:00
class ActsAsYaffleTest < ActiveSupport::TestCase
2009-02-05 20:57:02 -05:00
end
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2012-09-01 17:08:06 -04:00
```ruby
2011-02-13 16:21:17 -05:00
# yaffle/lib/yaffle.rb
2010-04-30 17:19:44 -04:00
2014-02-24 22:04:08 -05:00
require 'yaffle/core_ext'
2011-02-13 16:21:17 -05:00
require 'yaffle/acts_as_yaffle'
module Yaffle
2009-02-05 20:57:02 -05:00
end
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2012-09-01 17:08:06 -04:00
```ruby
2011-02-13 16:21:17 -05:00
# yaffle/lib/yaffle/acts_as_yaffle.rb
2009-02-05 20:57:02 -05:00
2011-02-13 16:21:17 -05:00
module Yaffle
module ActsAsYaffle
# your code will go here
end
2009-02-05 20:57:02 -05:00
end
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2012-09-01 17:25:58 -04:00
### Add a Class Method
2009-02-05 20:57:02 -05:00
2013-09-14 08:26:08 -04:00
This plugin will expect that you've added a method to your model named `last_squawk` . However, the
plugin users might have already defined a method on their model named `last_squawk` that they use
for something else. This plugin will allow the name to be changed by adding a class method called `yaffle_text_field` .
2009-02-05 20:57:02 -05:00
2011-02-13 16:21:17 -05:00
To start out, write a failing test that shows the behavior you'd like:
2009-02-05 20:57:02 -05:00
2012-09-01 17:08:06 -04:00
```ruby
2011-02-13 16:21:17 -05:00
# yaffle/test/acts_as_yaffle_test.rb
2009-02-05 20:57:02 -05:00
2011-02-13 16:21:17 -05:00
require 'test_helper'
2009-02-05 20:57:02 -05:00
2013-07-18 01:34:21 -04:00
class ActsAsYaffleTest < ActiveSupport::TestCase
2009-02-05 20:57:02 -05:00
2011-02-13 16:21:17 -05:00
def test_a_hickwalls_yaffle_text_field_should_be_last_squawk
2012-08-30 17:35:17 -04:00
assert_equal "last_squawk", Hickwall.yaffle_text_field
2009-02-05 20:57:02 -05:00
end
2011-02-13 16:21:17 -05:00
def test_a_wickwalls_yaffle_text_field_should_be_last_tweet
2012-08-30 17:35:17 -04:00
assert_equal "last_tweet", Wickwall.yaffle_text_field
2009-02-05 20:57:02 -05:00
end
end
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2012-09-01 21:37:59 -04:00
When you run `rake` , you should see the following:
2009-02-05 20:57:02 -05:00
2012-09-03 21:21:24 -04:00
```
1) Error:
2014-08-19 00:07:01 -04:00
ActsAsYaffleTest#test_a_hickwalls_yaffle_text_field_should_be_last_squawk:
2012-09-03 21:21:24 -04:00
NameError: uninitialized constant ActsAsYaffleTest::Hickwall
2014-08-19 00:07:01 -04:00
/path/to/yaffle/test/acts_as_yaffle_test.rb:6:in `test_a_hickwalls_yaffle_text_field_should_be_last_squawk'
2009-02-05 20:57:02 -05:00
2012-09-03 21:21:24 -04:00
2) Error:
2014-08-19 00:07:01 -04:00
ActsAsYaffleTest#test_a_wickwalls_yaffle_text_field_should_be_last_tweet:
2012-09-03 21:21:24 -04:00
NameError: uninitialized constant ActsAsYaffleTest::Wickwall
2014-08-19 00:07:01 -04:00
/path/to/yaffle/test/acts_as_yaffle_test.rb:10:in `test_a_wickwalls_yaffle_text_field_should_be_last_tweet'
2009-02-05 20:57:02 -05:00
2014-08-19 00:07:01 -04:00
4 runs, 2 assertions, 0 failures, 2 errors, 0 skips
2012-09-01 17:08:06 -04:00
```
2011-02-13 16:21:17 -05:00
This tells us that we don't have the necessary models (Hickwall and Wickwall) that we are trying to test.
2011-04-13 20:49:14 -04:00
We can easily generate these models in our "dummy" Rails application by running the following commands from the
2011-02-13 16:21:17 -05:00
test/dummy directory:
2012-09-01 20:45:26 -04:00
```bash
2011-02-24 16:29:37 -05:00
$ cd test/dummy
2014-05-20 07:29:18 -04:00
$ bin/rails generate model Hickwall last_squawk:string
$ bin/rails generate model Wickwall last_squawk:string last_tweet:string
2012-09-01 17:08:06 -04:00
```
2011-02-13 16:21:17 -05:00
Now you can create the necessary database tables in your testing database by navigating to your dummy app
2013-12-04 09:34:22 -05:00
and migrating the database. First, run:
2011-02-13 16:21:17 -05:00
2012-09-01 20:45:26 -04:00
```bash
2011-02-24 16:29:37 -05:00
$ cd test/dummy
2014-05-20 07:29:18 -04:00
$ bin/rake db:migrate
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2011-02-13 16:21:17 -05:00
While you are here, change the Hickwall and Wickwall models so that they know that they are supposed to act
like yaffles.
2009-02-05 20:57:02 -05:00
2012-09-01 17:08:06 -04:00
```ruby
2011-02-13 16:21:17 -05:00
# test/dummy/app/models/hickwall.rb
2009-02-05 20:57:02 -05:00
class Hickwall < ActiveRecord::Base
acts_as_yaffle
end
2011-02-13 16:21:17 -05:00
# test/dummy/app/models/wickwall.rb
2009-02-05 20:57:02 -05:00
class Wickwall < ActiveRecord::Base
2012-11-16 05:28:16 -05:00
acts_as_yaffle yaffle_text_field: :last_tweet
2009-02-05 20:57:02 -05:00
end
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2013-12-04 09:34:22 -05:00
We will also add code to define the `acts_as_yaffle` method.
2009-02-05 20:57:02 -05:00
2012-09-01 17:08:06 -04:00
```ruby
2011-02-13 16:21:17 -05:00
# yaffle/lib/yaffle/acts_as_yaffle.rb
module Yaffle
module ActsAsYaffle
extend ActiveSupport::Concern
included do
end
module ClassMethods
def acts_as_yaffle(options = {})
# your code will go here
end
end
2009-02-05 20:57:02 -05:00
end
end
2011-02-13 16:21:17 -05:00
ActiveRecord::Base.send :include, Yaffle::ActsAsYaffle
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2012-09-01 21:37:59 -04:00
You can then return to the root directory (`cd ../..`) of your plugin and rerun the tests using `rake` .
2011-02-13 16:21:17 -05:00
2012-09-03 21:21:24 -04:00
```
1) Error:
2014-08-19 00:07:01 -04:00
ActsAsYaffleTest#test_a_hickwalls_yaffle_text_field_should_be_last_squawk:
NoMethodError: undefined method `yaffle_text_field' for #< Class:0x007fd105e3b218 >
activerecord (4.1.5) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
/path/to/yaffle/test/acts_as_yaffle_test.rb:6:in `test_a_hickwalls_yaffle_text_field_should_be_last_squawk'
2011-02-13 16:21:17 -05:00
2012-09-03 21:21:24 -04:00
2) Error:
2014-08-19 00:07:01 -04:00
ActsAsYaffleTest#test_a_wickwalls_yaffle_text_field_should_be_last_tweet:
NoMethodError: undefined method `yaffle_text_field' for #< Class:0x007fd105e409c0 >
activerecord (4.1.5) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
/path/to/yaffle/test/acts_as_yaffle_test.rb:10:in `test_a_wickwalls_yaffle_text_field_should_be_last_tweet'
2011-02-13 16:21:17 -05:00
2014-08-19 00:07:01 -04:00
4 runs, 2 assertions, 0 failures, 2 errors, 0 skips
2011-02-13 16:21:17 -05:00
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2013-12-04 09:34:22 -05:00
Getting closer... Now we will implement the code of the `acts_as_yaffle` method to make the tests pass.
2009-02-05 20:57:02 -05:00
2012-09-01 17:08:06 -04:00
```ruby
2011-02-13 16:21:17 -05:00
# yaffle/lib/yaffle/acts_as_yaffle.rb
2009-02-05 20:57:02 -05:00
module Yaffle
2011-02-13 16:21:17 -05:00
module ActsAsYaffle
extend ActiveSupport::Concern
included do
end
2009-02-05 20:57:02 -05:00
2011-02-13 16:21:17 -05:00
module ClassMethods
def acts_as_yaffle(options = {})
cattr_accessor :yaffle_text_field
self.yaffle_text_field = (options[:yaffle_text_field] || :last_squawk).to_s
end
2009-02-05 20:57:02 -05:00
end
end
end
2011-02-13 16:21:17 -05:00
ActiveRecord::Base.send :include, Yaffle::ActsAsYaffle
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2013-12-04 09:34:22 -05:00
When you run `rake` , you should see the tests all pass:
2011-02-13 16:21:17 -05:00
2012-09-01 20:45:26 -04:00
```bash
2014-08-19 00:07:01 -04:00
4 runs, 4 assertions, 0 failures, 0 errors, 0 skips
2012-09-01 17:08:06 -04:00
```
2011-02-13 16:21:17 -05:00
2012-09-01 17:25:58 -04:00
### Add an Instance Method
2009-02-05 20:57:02 -05:00
2011-08-26 11:34:57 -04:00
This plugin will add a method named 'squawk' to any Active Record object that calls 'acts_as_yaffle'. The 'squawk'
2011-02-13 16:21:17 -05:00
method will simply set the value of one of the fields in the database.
2009-02-05 20:57:02 -05:00
To start out, write a failing test that shows the behavior you'd like:
2012-09-01 17:08:06 -04:00
```ruby
2011-02-13 16:21:17 -05:00
# yaffle/test/acts_as_yaffle_test.rb
require 'test_helper'
2009-02-05 20:57:02 -05:00
2013-07-18 01:34:21 -04:00
class ActsAsYaffleTest < ActiveSupport::TestCase
2009-02-05 20:57:02 -05:00
def test_a_hickwalls_yaffle_text_field_should_be_last_squawk
assert_equal "last_squawk", Hickwall.yaffle_text_field
end
def test_a_wickwalls_yaffle_text_field_should_be_last_tweet
assert_equal "last_tweet", Wickwall.yaffle_text_field
end
def test_hickwalls_squawk_should_populate_last_squawk
hickwall = Hickwall.new
hickwall.squawk("Hello World")
assert_equal "squawk! Hello World", hickwall.last_squawk
end
2011-08-26 11:34:57 -04:00
def test_wickwalls_squawk_should_populate_last_tweet
2009-02-05 20:57:02 -05:00
wickwall = Wickwall.new
wickwall.squawk("Hello World")
assert_equal "squawk! Hello World", wickwall.last_tweet
end
end
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2011-08-26 11:34:57 -04:00
Run the test to make sure the last two tests fail with an error that contains "NoMethodError: undefined method `squawk'",
2011-02-13 16:21:17 -05:00
then update 'acts_as_yaffle.rb' to look like this:
2009-02-05 20:57:02 -05:00
2012-09-01 17:08:06 -04:00
```ruby
2012-09-03 21:21:24 -04:00
# yaffle/lib/yaffle/acts_as_yaffle.rb
2011-02-13 16:21:17 -05:00
2009-02-05 20:57:02 -05:00
module Yaffle
2011-02-13 16:21:17 -05:00
module ActsAsYaffle
extend ActiveSupport::Concern
2009-02-05 20:57:02 -05:00
2011-02-13 16:21:17 -05:00
included do
end
module ClassMethods
def acts_as_yaffle(options = {})
cattr_accessor :yaffle_text_field
self.yaffle_text_field = (options[:yaffle_text_field] || :last_squawk).to_s
2012-03-16 15:53:16 -04:00
include Yaffle::ActsAsYaffle::LocalInstanceMethods
2011-02-13 16:21:17 -05:00
end
2009-02-05 20:57:02 -05:00
end
2012-03-16 15:53:16 -04:00
module LocalInstanceMethods
def squawk(string)
write_attribute(self.class.yaffle_text_field, string.to_squawk)
end
2009-02-05 20:57:02 -05:00
end
end
end
2011-02-13 16:21:17 -05:00
ActiveRecord::Base.send :include, Yaffle::ActsAsYaffle
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2012-09-01 21:37:59 -04:00
Run `rake` one final time and you should see:
2011-08-16 22:48:01 -04:00
2012-09-03 21:21:24 -04:00
```
2014-08-19 00:07:01 -04:00
6 runs, 6 assertions, 0 failures, 0 errors, 0 skips
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2013-12-04 09:34:22 -05:00
NOTE: The use of `write_attribute` to write to the field in model is just one example of how a plugin can interact with the model, and will not always be the right method to use. For example, you could also use:
```ruby
send("#{self.class.yaffle_text_field}=", string.to_squawk)
```
2009-02-05 20:57:02 -05:00
2012-09-01 17:25:58 -04:00
Generators
----------
2009-02-05 20:57:02 -05:00
2011-04-14 19:37:12 -04:00
Generators can be included in your gem simply by creating them in a lib/generators directory of your plugin. More information about
2012-09-02 01:08:20 -04:00
the creation of generators can be found in the [Generators Guide ](generators.html )
2009-02-05 20:57:02 -05:00
2013-12-04 09:34:22 -05:00
Publishing Your Gem
2012-09-01 17:25:58 -04:00
-------------------
2009-02-05 20:57:02 -05:00
2011-08-26 11:34:57 -04:00
Gem plugins currently in development can easily be shared from any Git repository. To share the Yaffle gem with others, simply
2012-08-11 02:19:51 -04:00
commit the code to a Git repository (like GitHub) and add a line to the Gemfile of the application in question:
2009-02-05 20:57:02 -05:00
2012-09-01 17:08:06 -04:00
```ruby
2012-11-16 05:28:16 -05:00
gem 'yaffle', git: 'git://github.com/yaffle_watcher/yaffle.git'
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2012-09-01 21:37:59 -04:00
After running `bundle install` , your gem functionality will be available to the application.
2009-02-05 20:57:02 -05:00
2012-09-02 01:08:20 -04:00
When the gem is ready to be shared as a formal release, it can be published to [RubyGems ](http://www.rubygems.org ).
2013-12-04 09:34:22 -05:00
For more information about publishing gems to RubyGems, see: [Creating and Publishing Your First Ruby Gem ](http://blog.thepete.net/2010/11/creating-and-publishing-your-first-ruby.html ).
2009-02-05 20:57:02 -05:00
2012-09-01 17:25:58 -04:00
RDoc Documentation
------------------
2009-02-05 20:57:02 -05:00
2013-12-04 09:34:22 -05:00
Once your plugin is stable and you are ready to deploy, do everyone else a favor and document it! Luckily, writing documentation for your plugin is easy.
2009-02-05 20:57:02 -05:00
2011-02-13 16:21:17 -05:00
The first step is to update the README file with detailed information about how to use your plugin. A few key things to include are:
2009-02-05 20:57:02 -05:00
2011-02-13 16:21:17 -05:00
* Your name
* How to install
* How to add the functionality to the app (several examples of common use cases)
2011-08-26 11:34:57 -04:00
* Warnings, gotchas or tips that might help users and save them time
2009-02-05 20:57:02 -05:00
2012-08-11 02:19:51 -04:00
Once your README is solid, go through and add rdoc comments to all of the methods that developers will use. It's also customary to add '#:nodoc:' comments to those parts of the code that are not included in the public API.
2009-02-05 20:57:02 -05:00
2011-02-13 16:21:17 -05:00
Once your comments are good to go, navigate to your plugin directory and run:
2009-02-05 20:57:02 -05:00
2012-09-01 20:45:26 -04:00
```bash
2014-05-20 07:29:18 -04:00
$ bin/rake rdoc
2012-09-01 17:08:06 -04:00
```
2009-02-05 20:57:02 -05:00
2012-09-01 17:25:58 -04:00
### References
2009-02-05 20:57:02 -05:00
2012-09-02 01:08:20 -04:00
* [Developing a RubyGem using Bundler ](https://github.com/radar/guides/blob/master/gem-development.md )
* [Using .gemspecs as Intended ](http://yehudakatz.com/2010/04/02/using-gemspecs-as-intended/ )
2014-08-12 05:07:07 -04:00
* [Gemspec Reference ](http://guides.rubygems.org/specification-reference/ )
2012-09-02 01:08:20 -04:00
* [GemPlugins: A Brief Introduction to the Future of Rails Plugins ](http://www.intridea.com/blog/2008/6/11/gemplugins-a-brief-introduction-to-the-future-of-rails-plugins )