Sha256: 1502025a257934272718e93f1737acdcfb14f03add6a45583a80589c9a1cf35a
Contents?: true
Size: 309 Bytes
Versions: 53
Compression:
Stored size: 309 Bytes
Contents
# frozen_string_literal: true desc 'Bumps the version to the next patch level, tags and pushes the code to origin repository' task :bump do system 'gem bump --tag --push --skip-ci' end desc 'Releases the gem and pushes any tags to the origin repository' task :release do system 'gem release --push' end
Version data entries
53 entries across 53 versions & 2 rubygems