Skip to content

Commit 496715c

Browse files
olleolleollesds
authored andcommitted
Avoid YARD warning "RedundantBraces
1 parent e1fea15 commit 496715c

26 files changed

+26
-26
lines changed

lib/overcommit/hook/post_checkout/bower_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostCheckout
66
# Runs `bower install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::BowerInstall}
9+
# @see Overcommit::Hook::Shared::BowerInstall
1010
class BowerInstall < Base
1111
include Overcommit::Hook::Shared::BowerInstall
1212
end

lib/overcommit/hook/post_checkout/bundle_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostCheckout
66
# Runs `bundle install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::BundleInstall}
9+
# @see Overcommit::Hook::Shared::BundleInstall
1010
class BundleInstall < Base
1111
include Overcommit::Hook::Shared::BundleInstall
1212
end

lib/overcommit/hook/post_checkout/composer_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostCheckout
66
# Runs `composer install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::ComposerInstall}
9+
# @see Overcommit::Hook::Shared::ComposerInstall
1010
class ComposerInstall < Base
1111
include Overcommit::Hook::Shared::ComposerInstall
1212
end

lib/overcommit/hook/post_checkout/index_tags.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
module Overcommit::Hook::PostCheckout
66
# Updates ctags index for all source code in the repository.
77
#
8-
# @see {Overcommit::Hook::Shared::IndexTags}
8+
# @see Overcommit::Hook::Shared::IndexTags
99
class IndexTags < Base
1010
include Overcommit::Hook::Shared::IndexTags
1111
end

lib/overcommit/hook/post_checkout/npm_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostCheckout
66
# Runs `npm install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::NpmInstall}
9+
# @see Overcommit::Hook::Shared::NpmInstall
1010
class NpmInstall < Base
1111
include Overcommit::Hook::Shared::NpmInstall
1212
end

lib/overcommit/hook/post_checkout/yarn_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostCheckout
66
# Runs `yarn install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::YarnInstall}
9+
# @see Overcommit::Hook::Shared::YarnInstall
1010
class YarnInstall < Base
1111
include Overcommit::Hook::Shared::YarnInstall
1212
end

lib/overcommit/hook/post_commit/bower_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostCommit
66
# Runs `bower install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::BowerInstall}
9+
# @see Overcommit::Hook::Shared::BowerInstall
1010
class BowerInstall < Base
1111
include Overcommit::Hook::Shared::BowerInstall
1212
end

lib/overcommit/hook/post_commit/bundle_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostCommit
66
# Runs `bundle install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::BundleInstall}
9+
# @see Overcommit::Hook::Shared::BundleInstall
1010
class BundleInstall < Base
1111
include Overcommit::Hook::Shared::BundleInstall
1212
end

lib/overcommit/hook/post_commit/composer_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostCommit
66
# Runs `composer install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::ComposerInstall}
9+
# @see Overcommit::Hook::Shared::ComposerInstall
1010
class ComposerInstall < Base
1111
include Overcommit::Hook::Shared::ComposerInstall
1212
end

lib/overcommit/hook/post_commit/index_tags.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
module Overcommit::Hook::PostCommit
66
# Updates ctags index for all source code in the repository.
77
#
8-
# @see {Overcommit::Hook::Shared::IndexTags}
8+
# @see Overcommit::Hook::Shared::IndexTags
99
class IndexTags < Base
1010
include Overcommit::Hook::Shared::IndexTags
1111
end

lib/overcommit/hook/post_commit/npm_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostCommit
66
# Runs `npm install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::NpmInstall}
9+
# @see Overcommit::Hook::Shared::NpmInstall
1010
class NpmInstall < Base
1111
include Overcommit::Hook::Shared::NpmInstall
1212
end

lib/overcommit/hook/post_commit/yarn_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostCommit
66
# Runs `yarn install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::YarnInstall}
9+
# @see Overcommit::Hook::Shared::YarnInstall
1010
class YarnInstall < Base
1111
include Overcommit::Hook::Shared::YarnInstall
1212
end

lib/overcommit/hook/post_merge/bower_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostMerge
66
# Runs `bower install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::BowerInstall}
9+
# @see Overcommit::Hook::Shared::BowerInstall
1010
class BowerInstall < Base
1111
include Overcommit::Hook::Shared::BowerInstall
1212
end

lib/overcommit/hook/post_merge/bundle_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostMerge
66
# Runs `bundle install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::BundleInstall}
9+
# @see Overcommit::Hook::Shared::BundleInstall
1010
class BundleInstall < Base
1111
include Overcommit::Hook::Shared::BundleInstall
1212
end

lib/overcommit/hook/post_merge/composer_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostMerge
66
# Runs `composer install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::ComposerInstall}
9+
# @see Overcommit::Hook::Shared::ComposerInstall
1010
class ComposerInstall < Base
1111
include Overcommit::Hook::Shared::ComposerInstall
1212
end

lib/overcommit/hook/post_merge/index_tags.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
module Overcommit::Hook::PostMerge
66
# Updates ctags index for all source code in the repository.
77
#
8-
# @see {Overcommit::Hook::Shared::IndexTags}
8+
# @see Overcommit::Hook::Shared::IndexTags
99
class IndexTags < Base
1010
include Overcommit::Hook::Shared::IndexTags
1111
end

lib/overcommit/hook/post_merge/npm_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostMerge
66
# Runs `npm install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::NpmInstall}
9+
# @see Overcommit::Hook::Shared::NpmInstall
1010
class NpmInstall < Base
1111
include Overcommit::Hook::Shared::NpmInstall
1212
end

lib/overcommit/hook/post_merge/yarn_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostMerge
66
# Runs `yarn install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::YarnInstall}
9+
# @see Overcommit::Hook::Shared::YarnInstall
1010
class YarnInstall < Base
1111
include Overcommit::Hook::Shared::YarnInstall
1212
end

lib/overcommit/hook/post_rewrite/bower_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostRewrite
66
# Runs `bower install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::BowerInstall}
9+
# @see Overcommit::Hook::Shared::BowerInstall
1010
class BowerInstall < Base
1111
include Overcommit::Hook::Shared::BowerInstall
1212
end

lib/overcommit/hook/post_rewrite/bundle_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostRewrite
66
# Runs `bundle install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::BundleInstall}
9+
# @see Overcommit::Hook::Shared::BundleInstall
1010
class BundleInstall < Base
1111
include Overcommit::Hook::Shared::BundleInstall
1212
end

lib/overcommit/hook/post_rewrite/composer_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostRewrite
66
# Runs `composer install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::ComposerInstall}
9+
# @see Overcommit::Hook::Shared::ComposerInstall
1010
class ComposerInstall < Base
1111
include Overcommit::Hook::Shared::ComposerInstall
1212
end

lib/overcommit/hook/post_rewrite/index_tags.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
module Overcommit::Hook::PostRewrite
66
# Updates ctags index for all source code in the repository.
77
#
8-
# @see {Overcommit::Hook::Shared::IndexTags}
8+
# @see Overcommit::Hook::Shared::IndexTags
99
class IndexTags < Base
1010
include Overcommit::Hook::Shared::IndexTags
1111

lib/overcommit/hook/post_rewrite/npm_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostRewrite
66
# Runs `npm install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::NpmInstall}
9+
# @see Overcommit::Hook::Shared::NpmInstall
1010
class NpmInstall < Base
1111
include Overcommit::Hook::Shared::NpmInstall
1212
end

lib/overcommit/hook/post_rewrite/yarn_install.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Overcommit::Hook::PostRewrite
66
# Runs `yarn install` when a change is detected in the repository's
77
# dependencies.
88
#
9-
# @see {Overcommit::Hook::Shared::YarnInstall}
9+
# @see Overcommit::Hook::Shared::YarnInstall
1010
class YarnInstall < Base
1111
include Overcommit::Hook::Shared::YarnInstall
1212
end

lib/overcommit/hook/pre_commit/rake_target.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
module Overcommit::Hook::PreCommit
66
# Runs rake targets
77
#
8-
# @see {Overcommit::Hook::Shared::RakeTarget}
8+
# @see Overcommit::Hook::Shared::RakeTarget
99
class RakeTarget < Base
1010
include Overcommit::Hook::Shared::RakeTarget
1111
end

lib/overcommit/hook/pre_push/rake_target.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
module Overcommit::Hook::PrePush
66
# Runs rake targets
77
#
8-
# @see {Overcommit::Hook::Shared::RakeTarget}
8+
# @see Overcommit::Hook::Shared::RakeTarget
99
class RakeTarget < Base
1010
include Overcommit::Hook::Shared::RakeTarget
1111
end

0 commit comments

Comments
 (0)