Sha256: 8b629ec2cd8f85be2acb49539841b4b6591fcfe7e29f4e77d86e4ec950ecb973

Contents?: true

Size: 609 Bytes

Versions: 9

Compression:

Stored size: 609 Bytes

Contents

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'github_changelog_generator/task'

RSpec::Core::RakeTask.new(:spec)

task default: :spec

GitHubChangelogGenerator::RakeTask.new :changelog do |config|
  config.user = 'mvgijssel'
  config.project = 'arel_toolkit'
  config.future_release = "v#{ArelToolkit::VERSION}"
  config.add_pr_wo_labels = false
  config.enhancement_labels = %w[enhancement dependencies]
  config.exclude_tags = ['v0.1.0']
end

require 'rake/extensiontask'

task build: :compile

Rake::ExtensionTask.new('pg_result_init') do |ext|
  ext.lib_dir = 'lib/arel_toolkit'
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
arel_toolkit-0.4.9 Rakefile
arel_toolkit-0.4.8 Rakefile
arel_toolkit-0.4.7 Rakefile
arel_toolkit-0.4.6 Rakefile
arel_toolkit-0.4.5 Rakefile
arel_toolkit-0.4.4 Rakefile
arel_toolkit-0.4.3 Rakefile
arel_toolkit-0.4.2 Rakefile
arel_toolkit-0.4.1 Rakefile