]> source.dussan.org Git - redmine.git/commitdiff
Remove RDoc tags (#28943).
authorGo MAEDA <maeda@farend.jp>
Fri, 8 Jun 2018 00:55:41 +0000 (00:55 +0000)
committerGo MAEDA <maeda@farend.jp>
Fri, 8 Jun 2018 00:55:41 +0000 (00:55 +0000)
Patch by Sho HASHIMOTO.

git-svn-id: http://svn.redmine.org/redmine/trunk@17370 e93f8b46-1217-0410-a6f0-8f06a7374b81

12 files changed:
lib/plugins/open_id_authentication/lib/open_id_authentication.rb
lib/redmine/core_ext/string.rb
lib/redmine/core_ext/string/conversions.rb
lib/redmine/core_ext/string/inflections.rb
lib/redmine/helpers/gantt.rb
lib/redmine/menu_manager.rb
lib/redmine/plugin.rb
lib/redmine/scm/adapters/abstract_adapter.rb
lib/redmine/scm/adapters/command_failed.rb
lib/redmine/version.rb
lib/tasks/yardoc.rake
test/mocks/open_id_authentication_mock.rb

index 48be8ddba01c93d142bcd776a529f801eb0625b1..7afe6fdebf7864b7b4dac9751158646ff5b1e4d8 100644 (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]
index 2da5ffef99a08f2d8a46c6acb5d81a6b9af5f442..5d03b9b5cb68d4d0c099c3cdb9c311f72ac458e0 100644 (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
index fbac0de7b9c8b1859e418fc7b3988bcfac04cfbe..4fc571167af3577acc25ea130157cf0213e6d5ed 100644 (file)
 # 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
index 2dd5a1fe581e1c560881543630fdfa2960ae1e68..efb62ee8e71ad00d35965ea8407ebd9163e6bade 100644 (file)
 # 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 }"
index 294303209e3c3d37e975593525462c1326740d25..756dc6e93f3232374c1ab7395b29cdec76a2a367 100644 (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
index fb34e70c537308b662a1f9302efb84d253213b46..dcdd0fa23c5eb27c00eb7df7788f5314f6f6e43f 100644 (file)
@@ -17,7 +17,8 @@
 
 module Redmine
   module MenuManager
-    class MenuError < StandardError #:nodoc:
+    # @private
+    class MenuError < StandardError
     end
 
     module MenuController
index ad42980e1d728817fc695bf774498a6482eaddc8..203c50881039d6541cb4608f2d97bde87f923c2f 100644 (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
index 437ba92a8e6a3a47a078c85ae5424f75b27e3f55..7f3b8093fbddfe10a470ffc523f08f6c111ae34c 100644 (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.
index 562b0065824dbb29502b1e19dd214c0fb0556d4d..0d9571f8c315dfd73b1c7c5dfa649a8b6f399939 100644 (file)
@@ -18,7 +18,8 @@
 module Redmine
   module Scm
     module Adapters
-      class CommandFailed < StandardError #:nodoc:
+      # @private
+      class CommandFailed < StandardError
       end
     end
   end
index 5d3caff148e5187f46539aced3634182dd7405a9..fb8a73718bd51ae6bd90500f2ffafe2572cbb600 100644 (file)
@@ -1,7 +1,8 @@
 require 'rexml/document'
 
 module Redmine
-  module VERSION #:nodoc:
+  # @private
+  module VERSION
     MAJOR = 3
     MINOR = 4
     TINY  = 5
index eab0d8606816021ddb9e2e555e003c4f86d34311..60d3a644aa3489c2d80671cd42debe392e8ac8bb 100644 (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
index a7376e4baa111424d1e6026a82f590c2c80472e8..7cb78c7c72195a3dad630821051910adc2de6466 100644 (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 = {}