Sha256: 6d845daa1d72c1f4801616051ee54e933a07573d87f6fe6bdb7495e3fa2a4348

Contents?: true

Size: 1.07 KB

Versions: 10

Compression:

Stored size: 1.07 KB

Contents

require 'fileutils'
require 'rspec/core/rake_task'

gemspecs = %w[
  paint.gemspec
  paint-shortcuts.gemspec
]

RSpec::Core::RakeTask.new(:spec) do |t|
  t.rspec_opts = [
    '--colour',
    '--format documentation',
    '-r ' + File.expand_path( File.join( 'spec', 'spec_helper') ),
  ]
end

task :default => :spec
task :test    => :spec

def gemspec_spec_for(gemspec)
  eval(File.read(gemspec), binding, gemspec)
end

desc "Build the gems"
task :gems do
  FileUtils.mkdir_p 'pkg'
  gemspecs.each{ |gemspec|
    sh "gem build #{gemspec}"
    spec = gemspec_spec_for(gemspec)
    FileUtils.mv "#{spec.name}-#{spec.version}.gem", 'pkg'
  }
end

desc "Install the gem locally"
task :install => :gems do
  gemspecs.each{ |gemspec|
    spec = gemspec_spec_for(gemspec)
    sh %{gem install pkg/#{spec.name}-#{spec.version}.gem --no-doc}
  }
end

desc "Run a Benchmark"
task :benchmark do
  ruby 'benchmark.rb'
end

desc "Print 256 colors rainbow"
task :rainbow256 do
  require_relative 'lib/paint'
  (0...256).each{ |color|
    print Paint[' ', 48, 5, color] # print empty bg color field
  }
  puts
end

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
ric-0.14.2 vendor/bundle/ruby/2.7.0/gems/paint-2.2.1/Rakefile
ric-0.14.1 vendor/bundle/ruby/2.7.0/gems/paint-2.2.1/Rakefile
ric-0.14.0 vendor/bundle/ruby/2.7.0/gems/paint-2.2.1/Rakefile
paint-2.2.1 Rakefile
pokedex-terminal-0.2.8 vendor/bundle/ruby/2.7.0/gems/paint-2.2.0/Rakefile
pokedex-terminal-0.2.7 vendor/bundle/ruby/2.7.0/gems/paint-2.2.0/Rakefile
pokedex-terminal-0.2.6 vendor/bundle/ruby/2.7.0/gems/paint-2.2.0/Rakefile
pokedex-terminal-0.2.5 vendor/bundle/ruby/2.7.0/gems/paint-2.2.0/Rakefile
pokedex-terminal-0.2.4 vendor/bundle/ruby/2.7.0/gems/paint-2.2.0/Rakefile
paint-2.2.0 Rakefile