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 specification dictates in order to get browser auto-complete
# working across sites
def using_open_id?(identifier = nil) #:doc:
def using_open_id?(identifier = nil)
identifier ||= open_id_identifier
!identifier.blank? || request.env[Rack::OpenID::RESPONSE]
end
def authenticate_with_open_id(identifier = nil, options = {}, &block) #:doc:
def authenticate_with_open_id(identifier = nil, options = {}, &block)
identifier ||= open_id_identifier
if request.env[Rack::OpenID::RESPONSE]

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -14,7 +14,7 @@ module OpenIdAuthentication
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')
extension_response_fields = {}