1
0
Fork 0
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:
Alex Kotov 2022-01-18 16:45:40 +05:00
parent 0025fa807b
commit e3707f0cd3
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08
2 changed files with 16 additions and 0 deletions

View file

@ -44,6 +44,10 @@ RSpec/ExampleLength:
Style/AndOr:
EnforcedStyle: conditionals
Style/Documentation:
Exclude:
- 'Rakefile'
Style/DoubleNegation:
Enabled: false

View file

@ -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'