mirror of
https://github.com/tailix/libkernaux.git
synced 2025-04-14 17:32:55 -04:00
Do not push to Git when releasing Ruby gem
This commit is contained in:
parent
0025fa807b
commit
e3707f0cd3
2 changed files with 16 additions and 0 deletions
|
@ -44,6 +44,10 @@ RSpec/ExampleLength:
|
|||
Style/AndOr:
|
||||
EnforcedStyle: conditionals
|
||||
|
||||
Style/Documentation:
|
||||
Exclude:
|
||||
- 'Rakefile'
|
||||
|
||||
Style/DoubleNegation:
|
||||
Enabled: false
|
||||
|
||||
|
|
|
@ -2,6 +2,18 @@
|
|||
|
||||
require 'bundler/gem_tasks'
|
||||
|
||||
module Bundler
|
||||
class GemHelper
|
||||
def tag_version(*)
|
||||
yield if block_given?
|
||||
end
|
||||
|
||||
def git_push(*); end
|
||||
|
||||
def perform_git_push(*); end
|
||||
end
|
||||
end
|
||||
|
||||
CLEAN << '.yardoc'
|
||||
CLEAN << 'coverage'
|
||||
CLEAN << 'doc'
|
||||
|
|
Loading…
Add table
Reference in a new issue