You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/vendor/bundle/ruby/4.0.0/gems/ostruct-0.6.3/Rakefile

19 lines
361 B

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 :default => [:test]