-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRakefile
37 lines (28 loc) · 842 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# frozen_string_literal: true
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
Bundler::GemHelper.install_tasks
task default: :spec
task :start_new_release do
bump = ENV['BUMP'] || 'patch'
sh "gem bump --version #{bump}"
sh 'bundle'
Rake::Task[:build].invoke
sh 'git add .'
sh "git commit -m \"build(version): :bookmark: bump #{bump}\""
sh 'git push'
end
task :generate_git_tag do
version = NubankSdk::VERSION
version_tag = "v#{version}"
sh "git tag -a #{version_tag} -m \"Version #{version}\""
sh 'git push --tags'
end
task :build_local do
version = NubankSdk::VERSION
sh 'gem uninstall nubank_sdk'
sh 'rm nubank_sdk-*.gem' if File.exist?("nubank_sdk-#{version}.gem")
sh 'gem build nubank_sdk.gemspec'
sh "gem install --local nubank_sdk-#{version}.gem"
end