forked from zendesk/zendesk_api_client_rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
52 lines (43 loc) · 1.41 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
require 'rake/testtask'
require 'bundler/gem_tasks'
require 'bump/tasks'
begin
require 'rspec/core/rake_task'
rescue LoadError
end
if defined?(RSpec)
desc "Run specs"
RSpec::Core::RakeTask.new("spec") do |t|
t.pattern = "spec/core/**/*_spec.rb"
end
desc "Run live specs"
RSpec::Core::RakeTask.new("spec:live") do |t|
t.pattern = "spec/live/**/*_spec.rb"
end
task :clean_live do
sh "rm -rf spec/fixtures/cassettes"
end
if RUBY_VERSION =~ /1.9/
desc "Find coverage"
task "spec:coverage" do
ENV["COVERAGE"] = "yes"
Rake::Task["spec"].invoke
end
end
desc 'Default: run specs.'
task :default => "spec"
end
# extracted from https://github.com/grosser/project_template
rule /^version:bump:.*/ do |t|
sh "git status | grep 'nothing to commit'" # ensure we are not dirty
index = ['major', 'minor','patch'].index(t.name.split(':').last)
file = 'lib/zendesk_api/version.rb'
version_file = File.read(file)
old_version, *version_parts = version_file.match(/(\d+)\.(\d+)\.(\d+)/).to_a
version_parts[index] = version_parts[index].to_i + 1
version_parts[2] = 0 if index < 2 # remove patch for minor
version_parts[1] = 0 if index < 1 # remove minor for major
new_version = version_parts * '.'
File.open(file,'w'){|f| f.write(version_file.sub(old_version, new_version)) }
sh "bundle && git add #{file} Gemfile.lock && git commit -m 'bump version to #{new_version}'"
end