We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4670c2 commit 3f04490Copy full SHA for 3f04490
Rakefile
@@ -105,17 +105,19 @@ RuboCop::RakeTask.new(:rubocop) do |t|
105
t.fail_on_error = true
106
end
107
108
-desc("print commands which haven't implemented yet.")
+desc("print commands which Ruby client has not implemented them yet.")
109
namespace :commands do
110
require './script/commands'
111
112
+ desc('Mobile JSON protocol')
113
task :mjsonwp do |_t, _args|
114
c = Script::CommandsChecker.new
115
c.get_mjsonwp_routes
116
c.get_all_command_path './mjsonwp_routes.js'
117
c.all_diff_commands_mjsonwp.each { |key, value| puts("command: #{key}, method: #{value}") }
118
119
120
+ desc('W3C protocol')
121
task :w3c do |_t, _args|
122
123
0 commit comments