Sha256: 28598e105caee990192bb9c7fcb6f2138502950f7b4a3af993398e34521fc024

Contents?: true

Size: 600 Bytes

Versions: 10

Compression:

Stored size: 600 Bytes

Contents

task :release do
  cur = `git branch --show-current`.chomp
  if cur != 'master'
    puts 'Release only from master branch'
    exit(-1)
  end
end

require "bundler/gem_tasks"
require "rake/testtask"

Rake::TestTask.new(:test) do |t|
  t.libs << "test/lib"
  t.ruby_opts << "-rhelper"
  t.test_files = FileList["test/**/test_*.rb"]
end

task :sync_tool do
  require 'fileutils'
  FileUtils.cp "../ruby/tool/lib/core_assertions.rb", "./test/lib"
  FileUtils.cp "../ruby/tool/lib/envutil.rb", "./test/lib"
  FileUtils.cp "../ruby/tool/lib/find_executable.rb", "./test/lib"
end

task :default => [:test]

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
rubypitaya-3.12.5 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/ostruct-0.5.5/Rakefile
rubypitaya-3.12.4 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/ostruct-0.5.5/Rakefile
rubypitaya-3.12.3 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/ostruct-0.5.5/Rakefile
rubypitaya-3.12.2 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/ostruct-0.5.5/Rakefile
ostruct-0.5.5 Rakefile
ostruct-0.5.4 Rakefile
ostruct-0.5.3 Rakefile
ostruct-0.5.2 Rakefile
ostruct-0.5.1 Rakefile
ostruct-0.5.0 Rakefile