yardgen
No description provided
Details
Installs
- Total 1K
- Win 186
- Mac 572
- Linux 271
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- bitbucket.org
Yardgen: Yard generator integration for Sublime Text 3
Author: Fred Appelman License: MIT License Email: yardgen@appelman.net
Suggestions, questions or issues?
If you have questions, suggestions or issues with this software please let me know by either adding an issue on bitbucket or by sending me an email.
Synopsis
Yard generator is a plugin for Sublime Text that will generate inline Yard documentation for Ruby source code. Yard will then convert this into a proper HTML documentation set.
Simply spoken you position the cursor on the method, class, module attribute, etc. that you want to document and hit CTRL+Return and a documentation template will be added. Next you can tab through the template and write the actual documentation within the template. It prevents the tedious part of remembering the exact format of the documentation. The goals is to be as complete as possible when generating documentation. So that you end up with 100% documentation coverage without warnings.
It even allows you to rename you method parameters during this phase. If you are like me your parameter names may not fully cover the function any more by the time you finished writing your software.
In the case you want to add additional documentation you can use tab completion to insert the Yard constructs manually.
Compatibility
This package has been tested with ST3 but there is not reason it should not work with ST2 as well.
Inspiration
The initial inspiration came from the yardoc package sublime-yardoc written by revathskumar and from the the yardoc package found in TextMate. The tab completions I shamelessly copied from revathskumar. The package created by revathskumar simply didn't provide enough features for my taste, hence this package.
Installation
With Package Control
The easiest way to install this is with Package Control.
- If you just went and installed Package Control, you probably need to restart Sublime Text 3 before doing this next bit.
- Bring up the Command Palette (Command+Shift+p on OS X, Control+Shift+p on Linux/Windows).
- Select “Package Control: Install Package” (it'll take a few seconds)
- Select Yardgen when the list appears.
- Package Control will automatically keep Yardgen up to date with the latest version.
Without Package Control
Go to your Sublime Text Packages directory and clone the repository using the command below:
git clone git@bitbucket.org:fappelman/yardgen.git
From time to time you can issue the update command in the yardgen directory:
git pull
This will update you to the latest version.
Usage
Press ctrl+enter on the method definition:
def simple_method
# Method body
end
will result in:
#
# <description>
#
#
# @return [<type>] <description>
#
def simple_method
# Method body
end
Feature List
Module
module Example
end
will expand into:
# Module Example provides <description>
#
# @author Joe Blog <Joe.Blog@nowhere.com>
#
module Example
end
where the author can be set in the settings file. If not defined the USER environment variable will be used.
Class
class Example
end
will expand into:
# Class Example provides <description>
#
# @author Joe Blog <Joe.Blog@nowhere.com>
#
module Class
end
Constructor (initialize)
The constructor is special as it does not require a return type, Yard already knows how to handle this method:
def initialize(a,b)
end
will expand into:
# <description>
#
# @param [<type>] a <description>
# @param [<type>] b <description>
#
def initialize(a,b)
end
A normal (class) method
def normal_method(a,b)
end
will expand into:
# <description>
#
# @param [<type>] a <description>
# @param [<type>] b <description>
#
# @return [<type>] <description>
#
def normal_method(a,b)
end
A read only attribe
attr_reader :read_only_attr
will expand into:
# @!attribute [r] read
# @return [<type] <description>
attr_reader :read_only_attr
A read/write attribute
attr_accessor :read_write_attr
will expand into:
# @!attribute [rw] read
# @return [<type] <description>
attr_accessor :read_write_attr
A write only attribute
attr_writer :write_only_attr
will expand into:
# @!attribute [w] write
# @return [<type] <description>
attr_writer :write_only_attr
Constant
CONSTANT="123"
will expand into:
# @return [<type>] <description>
CONSTANT="123"
A method that yields
def method
yield a,b
end
will epand into:
#
# <description>
#
#
# @return [<type>] <description>
#
# @yieldparam [<type>] a <description>
# @yieldparam [<type>] b <description>
# @yieldreturn [<type>] <describe what yield should return>
def method
yield a,b
end
If the yield doesn't pass parameters only the @yieldreturn will be present.
Rails
Some limited rails functionality is provided. The field
keyword is recognized.
class RailsExample
field :ab
end
will expand into:
class RailsExample
# Fields
field :ab
end
The Associations has_many
, has_one
, belongs_to
, has_and_belongs_to_many
, embeds_one
, embeds_many
will add the
comment 'Associations'.
For example:
class RailsExample
has_many :ab
end
will expand into:
class RailsExample
# Associations
has_many :ab
end
The keyword delegate
will add the comment 'Delegate'.
For example:
class RailsExample
delegate :name, :to => :user
end
will expand into:
class RailsExample
# Delegate
delegate :name, :to => :user
end
And finally the validations validate
, validates
, validates_presence_of
, validates_absence_of
will add the
comment 'Validations'.
For example:
class RailsExample
validate :ab
end
will expand into:
class RailsExample
# Validations
validate :ab
end
Tabcompletions
The following list of tab completions is present:
- @abstract
- @api
- @attr
- @attr_reader
- @attr_writer
- @author
- @deprecated
- @example
- @note
- @option
- @overload
- @param
- @private
- @raise
- @return
- @see
- @since
- @todo
- @version
- @yield
- @yieldparam
- @yieldreturn
Settings
// Specify the @author. If not defined it will default to
// the login name through the environment variable USER
"author": "Joe Blog <Joe.Blog@nowhere.com>",
// Add an initial empty line at the beginning of the comment
"initial_empty_line": true
License
The MIT License (MIT) Copyright © 2014 Fred Appelman
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.