Sha256: 3b4b17f68abac4b3016abf8c1a7098ae872045dfaa4403105e8a244e5bbad0a4

Contents?: true

Size: 528 Bytes

Versions: 6

Compression:

Stored size: 528 Bytes

Contents

# frozen_string_literal: true

require 'bundler'
Bundler::GemHelper.install_tasks

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

task test: :spec
task default: :spec

desc 'Rebuild Circle CI configuration based on the build matrix template .circleci/config.yml.erb'
task :circleci do
  require 'erb'
  template_path = File.expand_path('.circleci/config.yml.erb', __dir__)
  config_path = File.expand_path('.circleci/config.yml', __dir__)
  File.write config_path, ERB.new(File.read(template_path)).result
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
meta-tags-2.15.0 Rakefile
meta-tags-2.14.0 Rakefile
meta-tags-2.13.0 Rakefile
meta-tags-2.12.0 Rakefile
meta-tags-2.11.1 Rakefile
meta-tags-2.11.0 Rakefile