Sha256: 6c03f117b5b295464dd6e1525a5c1fa2a4a6ad5f90861c33db1fc49a11a27ec5

Contents?: true

Size: 1.41 KB

Versions: 39

Compression:

Stored size: 1.41 KB

Contents

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

Version data entries

39 entries across 39 versions & 1 rubygems

Version Path
zendesk_api-1.13.1 Rakefile
zendesk_api-1.12.1 Rakefile
zendesk_api-1.12.0 Rakefile
zendesk_api-1.11.7 Rakefile
zendesk_api-1.11.6 Rakefile
zendesk_api-1.11.5 Rakefile
zendesk_api-1.11.4 Rakefile
zendesk_api-1.11.3 Rakefile
zendesk_api-1.11.2 Rakefile
zendesk_api-1.11.1 Rakefile
zendesk_api-1.11.0 Rakefile
zendesk_api-1.10.0 Rakefile
zendesk_api-1.9.6 Rakefile
zendesk_api-1.9.5 Rakefile
zendesk_api-1.9.4 Rakefile
zendesk_api-1.9.3 Rakefile
zendesk_api-1.9.2 Rakefile
zendesk_api-1.9.1 Rakefile
zendesk_api-1.9.0 Rakefile
zendesk_api-1.8.0 Rakefile