Sha256: 6cde267c9e209dfe1f4072f14ab88c648f765e04b0b2a6343e3b848ad294cdff

Contents?: true

Size: 970 Bytes

Versions: 6

Compression:

Stored size: 970 Bytes

Contents

require 'bundler/gem_tasks'

require 'rubygems/tasks'
Gem::Tasks.new(release: false)

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new

task :test do
  sh "rspec"
  sh "reek"
  sh "rubocop"
end

task default: :spec

desc "copy in PayrollHero's current style config files"
task :styleguide do
  require 'faraday'
  require 'pry'
  base = "https://raw.githubusercontent.com/payrollhero/styleguide/master/"
  files = %w{
    .rubocop.hound.yml
    .rubocop.yml
    .reek
    .codeclimate.yml
  }
  files.each do |file|
    puts "Fetching #{file} ..."
    url = "#{base}#{file}"
    rsp = Faraday.get(url)
    unless rsp.status == 200
      $stderr.puts "failing fetching: #{url}"
      $stderr.puts "  response: #{rsp.status}: #{rsp.body}"
      exit 1
    end
    File.open(file, "w") do |fh|
      fh.write(rsp.body)
    end
  end
end

desc "Updates the changelog"
task :changelog do
  sh "github_changelog_generator payrollhero/webhook_system --simple-list"
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
webhook_system-1.0.4 Rakefile
webhook_system-1.0.3 Rakefile
webhook_system-1.0.2 Rakefile
webhook_system-1.0.1 Rakefile
webhook_system-1.0.0 Rakefile
webhook_system-0.1.1 Rakefile