Sha256: 778c6a940fad251fc1ba088913aa19ef9b39c4cefe549123a882aa84d130e30b

Contents?: true

Size: 533 Bytes

Versions: 7

Compression:

Stored size: 533 Bytes

Contents

# frozen_string_literal: true

require "bundler/gem_tasks"
require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec)

require "rubocop/rake_task"
RuboCop::RakeTask.new

task default: %i[spec rubocop]

task :build do
  system "gem build aocli.gemspec"
end

task :install => :build do
  system "gem install aocli-" + Aocli::VERSION + ".gem"
end

task :install_and_run => :install do
  system "aocli"
end

task :publish => :build do
  system "gem push aocli-" + Aocli::VERSION + ".gem"
end

task :clean do
  system "rm *.gem"
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
aocli-1.5.0 Rakefile
aocli-1.4.5 Rakefile
aocli-1.4.4 Rakefile
aocli-1.4.3 Rakefile
aocli-1.4.2 Rakefile
aocli-1.4.1 Rakefile
aocli-1.3.0 Rakefile