Remove RDoc tags (#28943).

Patch by Sho HASHIMOTO.


git-svn-id: http://svn.redmine.org/redmine/trunk@17370 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2018-06-08 00:55:41 +00:00
parent 85db9769bc
commit bff0fbce8b
12 changed files with 28 additions and 17 deletions

View File

@@ -109,12 +109,12 @@ module OpenIdAuthentication
# the Rails convention "open_id_identifier" because that's what # the Rails convention "open_id_identifier" because that's what
# the specification dictates in order to get browser auto-complete # the specification dictates in order to get browser auto-complete
# working across sites # working across sites
def using_open_id?(identifier = nil) #:doc: def using_open_id?(identifier = nil)
identifier ||= open_id_identifier identifier ||= open_id_identifier
!identifier.blank? || request.env[Rack::OpenID::RESPONSE] !identifier.blank? || request.env[Rack::OpenID::RESPONSE]
end end
def authenticate_with_open_id(identifier = nil, options = {}, &block) #:doc: def authenticate_with_open_id(identifier = nil, options = {}, &block)
identifier ||= open_id_identifier identifier ||= open_id_identifier
if request.env[Rack::OpenID::RESPONSE] if request.env[Rack::OpenID::RESPONSE]

View File

@@ -1,7 +1,8 @@
require File.dirname(__FILE__) + '/string/conversions' require File.dirname(__FILE__) + '/string/conversions'
require File.dirname(__FILE__) + '/string/inflections' require File.dirname(__FILE__) + '/string/inflections'
class String #:nodoc: # @private
class String
include Redmine::CoreExtensions::String::Conversions include Redmine::CoreExtensions::String::Conversions
include Redmine::CoreExtensions::String::Inflections include Redmine::CoreExtensions::String::Inflections
end end

View File

@@ -15,10 +15,13 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
module Redmine #:nodoc: module Redmine
module CoreExtensions #:nodoc: # @private
module String #:nodoc: module CoreExtensions
# @private
module String
# Custom string conversions # Custom string conversions
# @private
module Conversions module Conversions
# Parses hours format and returns a float # Parses hours format and returns a float
def to_hours def to_hours

View File

@@ -15,10 +15,13 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
module Redmine #:nodoc: module Redmine
module CoreExtensions #:nodoc: # @private
module String #:nodoc: module CoreExtensions
# @private
module String
# Custom string inflections # Custom string inflections
# @private
module Inflections module Inflections
def with_leading_slash def with_leading_slash
starts_with?('/') ? self : "/#{ self }" starts_with?('/') ? self : "/#{ self }"

View File

@@ -32,8 +32,8 @@ module Redmine
IssueRelation::TYPE_PRECEDES => { :landscape_margin => 20, :color => '#628FEA' } IssueRelation::TYPE_PRECEDES => { :landscape_margin => 20, :color => '#628FEA' }
}.freeze }.freeze
# :nodoc:
# Some utility methods for the PDF export # Some utility methods for the PDF export
# @private
class PDF class PDF
MaxCharactorsForSubject = 45 MaxCharactorsForSubject = 45
TotalWidth = 280 TotalWidth = 280

View File

@@ -17,7 +17,8 @@
module Redmine module Redmine
module MenuManager module MenuManager
class MenuError < StandardError #:nodoc: # @private
class MenuError < StandardError
end end
module MenuController module MenuController

View File

@@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
module Redmine #:nodoc: module Redmine
class PluginNotFound < StandardError; end class PluginNotFound < StandardError; end
class PluginRequirementError < StandardError; end class PluginRequirementError < StandardError; end

View File

@@ -21,7 +21,8 @@ require 'redmine/scm/adapters'
module Redmine module Redmine
module Scm module Scm
module Adapters module Adapters
class AbstractAdapter #:nodoc: # @private
class AbstractAdapter
include Redmine::Utils::Shell include Redmine::Utils::Shell
# raised if scm command exited with error, e.g. unknown revision. # raised if scm command exited with error, e.g. unknown revision.

View File

@@ -18,7 +18,8 @@
module Redmine module Redmine
module Scm module Scm
module Adapters module Adapters
class CommandFailed < StandardError #:nodoc: # @private
class CommandFailed < StandardError
end end
end end
end end

View File

@@ -1,7 +1,8 @@
require 'rexml/document' require 'rexml/document'
module Redmine module Redmine
module VERSION #:nodoc: # @private
module VERSION
MAJOR = 3 MAJOR = 3
MINOR = 4 MINOR = 4
TINY = 5 TINY = 5

View File

@@ -12,7 +12,7 @@ begin
'doc/RUNNING_TESTS', 'doc/RUNNING_TESTS',
'doc/UPGRADING'].join(',') 'doc/UPGRADING'].join(',')
t.options += ['--output-dir', './doc/app', '--files', static_files] t.options += ['--no-private', '--output-dir', './doc/app', '--files', static_files]
end end
rescue LoadError rescue LoadError

View File

@@ -14,7 +14,7 @@ module OpenIdAuthentication
protected protected
def authenticate_with_open_id(identity_url = params[:openid_url], options = {}) #:doc: def authenticate_with_open_id(identity_url = params[:openid_url], options = {})
if User.find_by_identity_url(identity_url) || identity_url.include?('good') if User.find_by_identity_url(identity_url) || identity_url.include?('good')
extension_response_fields = {} extension_response_fields = {}