skylight 0.0.7 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +7 -0
  2. data/bin/skylight +5 -0
  3. data/lib/skylight.rb +2 -0
  4. data/lib/skylight/cli.rb +84 -0
  5. data/lib/skylight/config.rb +53 -6
  6. data/lib/skylight/instrumenter.rb +4 -1
  7. data/lib/skylight/json_proto.rb +0 -3
  8. data/lib/skylight/middleware.rb +1 -0
  9. data/lib/skylight/normalize.rb +30 -5
  10. data/lib/skylight/normalize/process_action.rb +1 -1
  11. data/lib/skylight/normalize/render_collection.rb +2 -6
  12. data/lib/skylight/normalize/render_partial.rb +2 -5
  13. data/lib/skylight/normalize/render_template.rb +2 -5
  14. data/lib/skylight/normalize/sql.rb +2 -4
  15. data/lib/skylight/railtie.rb +30 -33
  16. data/lib/skylight/sanity_checker.rb +73 -0
  17. data/lib/skylight/subscriber.rb +1 -15
  18. data/lib/skylight/trace.rb +30 -5
  19. data/lib/skylight/util/http.rb +97 -0
  20. data/lib/skylight/vendor/highline.rb +1012 -0
  21. data/lib/skylight/vendor/highline/color_scheme.rb +134 -0
  22. data/lib/skylight/vendor/highline/compatibility.rb +16 -0
  23. data/lib/skylight/vendor/highline/import.rb +41 -0
  24. data/lib/skylight/vendor/highline/menu.rb +398 -0
  25. data/lib/skylight/vendor/highline/question.rb +475 -0
  26. data/lib/skylight/vendor/highline/simulate.rb +48 -0
  27. data/lib/skylight/vendor/highline/string_extensions.rb +131 -0
  28. data/lib/skylight/vendor/highline/style.rb +181 -0
  29. data/lib/skylight/vendor/highline/system_extensions.rb +218 -0
  30. data/lib/skylight/vendor/thor.rb +473 -0
  31. data/lib/skylight/vendor/thor/actions.rb +318 -0
  32. data/lib/skylight/vendor/thor/actions/create_file.rb +105 -0
  33. data/lib/skylight/vendor/thor/actions/create_link.rb +60 -0
  34. data/lib/skylight/vendor/thor/actions/directory.rb +119 -0
  35. data/lib/skylight/vendor/thor/actions/empty_directory.rb +137 -0
  36. data/lib/skylight/vendor/thor/actions/file_manipulation.rb +314 -0
  37. data/lib/skylight/vendor/thor/actions/inject_into_file.rb +109 -0
  38. data/lib/skylight/vendor/thor/base.rb +652 -0
  39. data/lib/skylight/vendor/thor/command.rb +136 -0
  40. data/lib/skylight/vendor/thor/core_ext/hash_with_indifferent_access.rb +80 -0
  41. data/lib/skylight/vendor/thor/core_ext/io_binary_read.rb +12 -0
  42. data/lib/skylight/vendor/thor/core_ext/ordered_hash.rb +100 -0
  43. data/lib/skylight/vendor/thor/error.rb +28 -0
  44. data/lib/skylight/vendor/thor/group.rb +282 -0
  45. data/lib/skylight/vendor/thor/invocation.rb +172 -0
  46. data/lib/skylight/vendor/thor/parser.rb +4 -0
  47. data/lib/skylight/vendor/thor/parser/argument.rb +74 -0
  48. data/lib/skylight/vendor/thor/parser/arguments.rb +171 -0
  49. data/lib/skylight/vendor/thor/parser/option.rb +121 -0
  50. data/lib/skylight/vendor/thor/parser/options.rb +218 -0
  51. data/lib/skylight/vendor/thor/rake_compat.rb +72 -0
  52. data/lib/skylight/vendor/thor/runner.rb +322 -0
  53. data/lib/skylight/vendor/thor/shell.rb +88 -0
  54. data/lib/skylight/vendor/thor/shell/basic.rb +393 -0
  55. data/lib/skylight/vendor/thor/shell/color.rb +148 -0
  56. data/lib/skylight/vendor/thor/shell/html.rb +127 -0
  57. data/lib/skylight/vendor/thor/util.rb +270 -0
  58. data/lib/skylight/vendor/thor/version.rb +3 -0
  59. data/lib/skylight/version.rb +1 -1
  60. data/lib/skylight/worker.rb +3 -58
  61. metadata +56 -18
@@ -0,0 +1,473 @@
1
+ require 'set'
2
+ require 'thor/base'
3
+
4
+ class Thor
5
+ class << self
6
+ # Allows for custom "Command" package naming.
7
+ #
8
+ # === Parameters
9
+ # name<String>
10
+ # options<Hash>
11
+ #
12
+ def package_name(name, options={})
13
+ @package_name = name.nil? || name == '' ? nil : name
14
+ end
15
+
16
+ # Sets the default command when thor is executed without an explicit command to be called.
17
+ #
18
+ # ==== Parameters
19
+ # meth<Symbol>:: name of the default command
20
+ #
21
+ def default_command(meth=nil)
22
+ @default_command = case meth
23
+ when :none
24
+ 'help'
25
+ when nil
26
+ @default_command || from_superclass(:default_command, 'help')
27
+ else
28
+ meth.to_s
29
+ end
30
+ end
31
+ alias default_task default_command
32
+
33
+ # Registers another Thor subclass as a command.
34
+ #
35
+ # ==== Parameters
36
+ # klass<Class>:: Thor subclass to register
37
+ # command<String>:: Subcommand name to use
38
+ # usage<String>:: Short usage for the subcommand
39
+ # description<String>:: Description for the subcommand
40
+ def register(klass, subcommand_name, usage, description, options={})
41
+ if klass <= Thor::Group
42
+ desc usage, description, options
43
+ define_method(subcommand_name) { |*args| invoke(klass, args) }
44
+ else
45
+ desc usage, description, options
46
+ subcommand subcommand_name, klass
47
+ end
48
+ end
49
+
50
+ # Defines the usage and the description of the next command.
51
+ #
52
+ # ==== Parameters
53
+ # usage<String>
54
+ # description<String>
55
+ # options<String>
56
+ #
57
+ def desc(usage, description, options={})
58
+ if options[:for]
59
+ command = find_and_refresh_command(options[:for])
60
+ command.usage = usage if usage
61
+ command.description = description if description
62
+ else
63
+ @usage, @desc, @hide = usage, description, options[:hide] || false
64
+ end
65
+ end
66
+
67
+ # Defines the long description of the next command.
68
+ #
69
+ # ==== Parameters
70
+ # long description<String>
71
+ #
72
+ def long_desc(long_description, options={})
73
+ if options[:for]
74
+ command = find_and_refresh_command(options[:for])
75
+ command.long_description = long_description if long_description
76
+ else
77
+ @long_desc = long_description
78
+ end
79
+ end
80
+
81
+ # Maps an input to a command. If you define:
82
+ #
83
+ # map "-T" => "list"
84
+ #
85
+ # Running:
86
+ #
87
+ # thor -T
88
+ #
89
+ # Will invoke the list command.
90
+ #
91
+ # ==== Parameters
92
+ # Hash[String|Array => Symbol]:: Maps the string or the strings in the array to the given command.
93
+ #
94
+ def map(mappings=nil)
95
+ @map ||= from_superclass(:map, {})
96
+
97
+ if mappings
98
+ mappings.each do |key, value|
99
+ if key.respond_to?(:each)
100
+ key.each {|subkey| @map[subkey] = value}
101
+ else
102
+ @map[key] = value
103
+ end
104
+ end
105
+ end
106
+
107
+ @map
108
+ end
109
+
110
+ # Declares the options for the next command to be declared.
111
+ #
112
+ # ==== Parameters
113
+ # Hash[Symbol => Object]:: The hash key is the name of the option and the value
114
+ # is the type of the option. Can be :string, :array, :hash, :boolean, :numeric
115
+ # or :required (string). If you give a value, the type of the value is used.
116
+ #
117
+ def method_options(options=nil)
118
+ @method_options ||= {}
119
+ build_options(options, @method_options) if options
120
+ @method_options
121
+ end
122
+
123
+ alias options method_options
124
+
125
+ # Adds an option to the set of method options. If :for is given as option,
126
+ # it allows you to change the options from a previous defined command.
127
+ #
128
+ # def previous_command
129
+ # # magic
130
+ # end
131
+ #
132
+ # method_option :foo => :bar, :for => :previous_command
133
+ #
134
+ # def next_command
135
+ # # magic
136
+ # end
137
+ #
138
+ # ==== Parameters
139
+ # name<Symbol>:: The name of the argument.
140
+ # options<Hash>:: Described below.
141
+ #
142
+ # ==== Options
143
+ # :desc - Description for the argument.
144
+ # :required - If the argument is required or not.
145
+ # :default - Default value for this argument. It cannot be required and have default values.
146
+ # :aliases - Aliases for this option.
147
+ # :type - The type of the argument, can be :string, :hash, :array, :numeric or :boolean.
148
+ # :banner - String to show on usage notes.
149
+ # :hide - If you want to hide this option from the help.
150
+ #
151
+ def method_option(name, options={})
152
+ scope = if options[:for]
153
+ find_and_refresh_command(options[:for]).options
154
+ else
155
+ method_options
156
+ end
157
+
158
+ build_option(name, options, scope)
159
+ end
160
+ alias option method_option
161
+
162
+ # Prints help information for the given command.
163
+ #
164
+ # ==== Parameters
165
+ # shell<Thor::Shell>
166
+ # command_name<String>
167
+ #
168
+ def command_help(shell, command_name)
169
+ meth = normalize_command_name(command_name)
170
+ command = all_commands[meth]
171
+ handle_no_command_error(meth) unless command
172
+
173
+ shell.say "Usage:"
174
+ shell.say " #{banner(command)}"
175
+ shell.say
176
+ class_options_help(shell, nil => command.options.map { |_, o| o })
177
+ if command.long_description
178
+ shell.say "Description:"
179
+ shell.print_wrapped(command.long_description, :indent => 2)
180
+ else
181
+ shell.say command.description
182
+ end
183
+ end
184
+ alias task_help command_help
185
+
186
+ # Prints help information for this class.
187
+ #
188
+ # ==== Parameters
189
+ # shell<Thor::Shell>
190
+ #
191
+ def help(shell, subcommand = false)
192
+ list = printable_commands(true, subcommand)
193
+ Thor::Util.thor_classes_in(self).each do |klass|
194
+ list += klass.printable_commands(false)
195
+ end
196
+ list.sort!{ |a,b| a[0] <=> b[0] }
197
+
198
+ if @package_name
199
+ shell.say "#{@package_name} commands:"
200
+ else
201
+ shell.say "Commands:"
202
+ end
203
+
204
+ shell.print_table(list, :indent => 2, :truncate => true)
205
+ shell.say
206
+ class_options_help(shell)
207
+ end
208
+
209
+ # Returns commands ready to be printed.
210
+ def printable_commands(all = true, subcommand = false)
211
+ (all ? all_commands : commands).map do |_, command|
212
+ next if command.hidden?
213
+ item = []
214
+ item << banner(command, false, subcommand)
215
+ item << (command.description ? "# #{command.description.gsub(/\s+/m,' ')}" : "")
216
+ item
217
+ end.compact
218
+ end
219
+ alias printable_tasks printable_commands
220
+
221
+ def subcommands
222
+ @subcommands ||= from_superclass(:subcommands, [])
223
+ end
224
+ alias subtasks subcommands
225
+
226
+ def subcommand(subcommand, subcommand_class)
227
+ self.subcommands << subcommand.to_s
228
+ subcommand_class.subcommand_help subcommand
229
+
230
+ define_method(subcommand) do |*args|
231
+ args, opts = Thor::Arguments.split(args)
232
+ invoke subcommand_class, args, opts, :invoked_via_subcommand => true, :class_options => options
233
+ end
234
+ end
235
+ alias subtask subcommand
236
+
237
+ # Extend check unknown options to accept a hash of conditions.
238
+ #
239
+ # === Parameters
240
+ # options<Hash>: A hash containing :only and/or :except keys
241
+ def check_unknown_options!(options={})
242
+ @check_unknown_options ||= Hash.new
243
+ options.each do |key, value|
244
+ if value
245
+ @check_unknown_options[key] = Array(value)
246
+ else
247
+ @check_unknown_options.delete(key)
248
+ end
249
+ end
250
+ @check_unknown_options
251
+ end
252
+
253
+ # Overwrite check_unknown_options? to take subcommands and options into account.
254
+ def check_unknown_options?(config) #:nodoc:
255
+ options = check_unknown_options
256
+ return false unless options
257
+
258
+ command = config[:current_command]
259
+ return true unless command
260
+
261
+ name = command.name
262
+
263
+ if subcommands.include?(name)
264
+ false
265
+ elsif options[:except]
266
+ !options[:except].include?(name.to_sym)
267
+ elsif options[:only]
268
+ options[:only].include?(name.to_sym)
269
+ else
270
+ true
271
+ end
272
+ end
273
+
274
+ # Stop parsing of options as soon as an unknown option or a regular
275
+ # argument is encountered. All remaining arguments are passed to the command.
276
+ # This is useful if you have a command that can receive arbitrary additional
277
+ # options, and where those additional options should not be handled by
278
+ # Thor.
279
+ #
280
+ # ==== Example
281
+ #
282
+ # To better understand how this is useful, let's consider a command that calls
283
+ # an external command. A user may want to pass arbitrary options and
284
+ # arguments to that command. The command itself also accepts some options,
285
+ # which should be handled by Thor.
286
+ #
287
+ # class_option "verbose", :type => :boolean
288
+ # stop_on_unknown_option! :exec
289
+ # check_unknown_options! :except => :exec
290
+ #
291
+ # desc "exec", "Run a shell command"
292
+ # def exec(*args)
293
+ # puts "diagnostic output" if options[:verbose]
294
+ # Kernel.exec(*args)
295
+ # end
296
+ #
297
+ # Here +exec+ can be called with +--verbose+ to get diagnostic output,
298
+ # e.g.:
299
+ #
300
+ # $ thor exec --verbose echo foo
301
+ # diagnostic output
302
+ # foo
303
+ #
304
+ # But if +--verbose+ is given after +echo+, it is passed to +echo+ instead:
305
+ #
306
+ # $ thor exec echo --verbose foo
307
+ # --verbose foo
308
+ #
309
+ # ==== Parameters
310
+ # Symbol ...:: A list of commands that should be affected.
311
+ def stop_on_unknown_option!(*command_names)
312
+ @stop_on_unknown_option ||= Set.new
313
+ @stop_on_unknown_option.merge(command_names)
314
+ end
315
+
316
+ def stop_on_unknown_option?(command) #:nodoc:
317
+ !!@stop_on_unknown_option && @stop_on_unknown_option.include?(command.name.to_sym)
318
+ end
319
+
320
+ protected
321
+
322
+ # The method responsible for dispatching given the args.
323
+ def dispatch(meth, given_args, given_opts, config) #:nodoc:
324
+ # There is an edge case when dispatching from a subcommand.
325
+ # A problem occurs invoking the default command. This case occurs
326
+ # when arguments are passed and a default command is defined, and
327
+ # the first given_args does not match the default command.
328
+ # Thor use "help" by default so we skip that case.
329
+ # Note the call to retrieve_command_name. It's called with
330
+ # given_args.dup since that method calls args.shift. Then lookup
331
+ # the command normally. If the first item in given_args is not
332
+ # a command then use the default command. The given_args will be
333
+ # intact later since dup was used.
334
+ if config[:invoked_via_subcommand] && given_args.size >= 1 && default_command != "help" && given_args.first != default_command
335
+ meth ||= retrieve_command_name(given_args.dup)
336
+ command = all_commands[normalize_command_name(meth)]
337
+ command ||= all_commands[normalize_command_name(default_command)]
338
+ else
339
+ meth ||= retrieve_command_name(given_args)
340
+ command = all_commands[normalize_command_name(meth)]
341
+ end
342
+
343
+ if command
344
+ args, opts = Thor::Options.split(given_args)
345
+ if stop_on_unknown_option?(command) && !args.empty?
346
+ # given_args starts with a non-option, so we treat everything as
347
+ # ordinary arguments
348
+ args.concat opts
349
+ opts.clear
350
+ end
351
+ else
352
+ args, opts = given_args, nil
353
+ command = Thor::DynamicCommand.new(meth)
354
+ end
355
+
356
+ opts = given_opts || opts || []
357
+ config.merge!(:current_command => command, :command_options => command.options)
358
+
359
+ instance = new(args, opts, config)
360
+ yield instance if block_given?
361
+ args = instance.args
362
+ trailing = args[Range.new(arguments.size, -1)]
363
+ instance.invoke_command(command, trailing || [])
364
+ end
365
+
366
+ # The banner for this class. You can customize it if you are invoking the
367
+ # thor class by another ways which is not the Thor::Runner. It receives
368
+ # the command that is going to be invoked and a boolean which indicates if
369
+ # the namespace should be displayed as arguments.
370
+ #
371
+ def banner(command, namespace = nil, subcommand = false)
372
+ "#{basename} #{command.formatted_usage(self, $thor_runner, subcommand)}"
373
+ end
374
+
375
+ def baseclass #:nodoc:
376
+ Thor
377
+ end
378
+
379
+ def create_command(meth) #:nodoc:
380
+ if @usage && @desc
381
+ base_class = @hide ? Thor::HiddenCommand : Thor::Command
382
+ commands[meth] = base_class.new(meth, @desc, @long_desc, @usage, method_options)
383
+ @usage, @desc, @long_desc, @method_options, @hide = nil
384
+ true
385
+ elsif self.all_commands[meth] || meth == "method_missing"
386
+ true
387
+ else
388
+ puts "[WARNING] Attempted to create command #{meth.inspect} without usage or description. " <<
389
+ "Call desc if you want this method to be available as command or declare it inside a " <<
390
+ "no_commands{} block. Invoked from #{caller[1].inspect}."
391
+ false
392
+ end
393
+ end
394
+ alias create_task create_command
395
+
396
+ def initialize_added #:nodoc:
397
+ class_options.merge!(method_options)
398
+ @method_options = nil
399
+ end
400
+
401
+ # Retrieve the command name from given args.
402
+ def retrieve_command_name(args) #:nodoc:
403
+ meth = args.first.to_s unless args.empty?
404
+ if meth && (map[meth] || meth !~ /^\-/)
405
+ args.shift
406
+ else
407
+ nil
408
+ end
409
+ end
410
+ alias retrieve_task_name retrieve_command_name
411
+
412
+ # receives a (possibly nil) command name and returns a name that is in
413
+ # the commands hash. In addition to normalizing aliases, this logic
414
+ # will determine if a shortened command is an unambiguous substring of
415
+ # a command or alias.
416
+ #
417
+ # +normalize_command_name+ also converts names like +animal-prison+
418
+ # into +animal_prison+.
419
+ def normalize_command_name(meth) #:nodoc:
420
+ return default_command.to_s.gsub('-', '_') unless meth
421
+
422
+ possibilities = find_command_possibilities(meth)
423
+ if possibilities.size > 1
424
+ raise ArgumentError, "Ambiguous command #{meth} matches [#{possibilities.join(', ')}]"
425
+ elsif possibilities.size < 1
426
+ meth = meth || default_command
427
+ elsif map[meth]
428
+ meth = map[meth]
429
+ else
430
+ meth = possibilities.first
431
+ end
432
+
433
+ meth.to_s.gsub('-','_') # treat foo-bar as foo_bar
434
+ end
435
+ alias normalize_task_name normalize_command_name
436
+
437
+ # this is the logic that takes the command name passed in by the user
438
+ # and determines whether it is an unambiguous substrings of a command or
439
+ # alias name.
440
+ def find_command_possibilities(meth)
441
+ len = meth.to_s.length
442
+ possibilities = all_commands.merge(map).keys.select { |n| meth == n[0, len] }.sort
443
+ unique_possibilities = possibilities.map { |k| map[k] || k }.uniq
444
+
445
+ if possibilities.include?(meth)
446
+ [meth]
447
+ elsif unique_possibilities.size == 1
448
+ unique_possibilities
449
+ else
450
+ possibilities
451
+ end
452
+ end
453
+ alias find_task_possibilities find_command_possibilities
454
+
455
+ def subcommand_help(cmd)
456
+ desc "help [COMMAND]", "Describe subcommands or one specific subcommand"
457
+ class_eval <<-RUBY
458
+ def help(command = nil, subcommand = true); super; end
459
+ RUBY
460
+ end
461
+ alias subtask_help subcommand_help
462
+
463
+ end
464
+
465
+ include Thor::Base
466
+
467
+ map HELP_MAPPINGS => :help
468
+
469
+ desc "help [COMMAND]", "Describe available commands or one specific command"
470
+ def help(command = nil, subcommand = false)
471
+ command ? self.class.command_help(shell, command) : self.class.help(shell, subcommand)
472
+ end
473
+ end