Sha256: c55be2e59036b4052a293d07ae47ebe8ad318015284eb949622923351777711f
Contents?: true
Size: 506 Bytes
Versions: 5
Compression:
Stored size: 506 Bytes
Contents
# frozen_string_literal: true require_relative 'lib/ruby_raider' require_relative 'lib/commands/scaffolding_commands' desc 'Creates a new test project' task :new do RubyRaider.start end desc 'Creates a page' task :page, [:name, :path] do |_t, args| ScaffoldingCommands.new.invoke(:page, nil, %W[:#{args.name} --path #{args.path}]) end desc 'Sets a browser' task :browser, [:type, :options] do |_t, args| ScaffoldingCommands.new.invoke(:browser, nil, %W[:#{args.type} --opts #{args.options}]) end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
ruby_raider-0.4.0 | Rakefile |
ruby_raider-0.3.9 | Rakefile |
ruby_raider-0.3.8 | Rakefile |
ruby_raider-0.3.7 | Rakefile |
ruby_raider-0.3.6 | Rakefile |