forked from loafle/openapi-generator-original
* Move output directory for bin/openapi3/ruby-client-petstore.sh $ git mv sample/client/petstore/ruby sample/openapi3/client/petstore/ruby-client * $ bin/ruby-client-petstore.sh * Run bin/ruby-client-petstore.sh in bin/utils/ensure-up-to-date
11 lines
170 B
Ruby
11 lines
170 B
Ruby
require "bundler/gem_tasks"
|
|
|
|
begin
|
|
require 'rspec/core/rake_task'
|
|
|
|
RSpec::Core::RakeTask.new(:spec)
|
|
task default: :spec
|
|
rescue LoadError
|
|
# no rspec available
|
|
end
|