thor_dleavitt 0.18.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. checksums.yaml +7 -0
  2. data/.document +5 -0
  3. data/CHANGELOG.md +139 -0
  4. data/LICENSE.md +20 -0
  5. data/README.md +35 -0
  6. data/Thorfile +30 -0
  7. data/bin/thor_dleavitt +6 -0
  8. data/lib/thor/actions.rb +318 -0
  9. data/lib/thor/actions/create_file.rb +105 -0
  10. data/lib/thor/actions/create_link.rb +60 -0
  11. data/lib/thor/actions/directory.rb +119 -0
  12. data/lib/thor/actions/empty_directory.rb +137 -0
  13. data/lib/thor/actions/file_manipulation.rb +317 -0
  14. data/lib/thor/actions/inject_into_file.rb +109 -0
  15. data/lib/thor/base.rb +654 -0
  16. data/lib/thor/command.rb +136 -0
  17. data/lib/thor/core_ext/hash_with_indifferent_access.rb +80 -0
  18. data/lib/thor/core_ext/io_binary_read.rb +12 -0
  19. data/lib/thor/core_ext/ordered_hash.rb +100 -0
  20. data/lib/thor/error.rb +32 -0
  21. data/lib/thor/group.rb +282 -0
  22. data/lib/thor/invocation.rb +172 -0
  23. data/lib/thor/parser.rb +4 -0
  24. data/lib/thor/parser/argument.rb +74 -0
  25. data/lib/thor/parser/arguments.rb +171 -0
  26. data/lib/thor/parser/option.rb +121 -0
  27. data/lib/thor/parser/options.rb +218 -0
  28. data/lib/thor/rake_compat.rb +72 -0
  29. data/lib/thor/runner.rb +322 -0
  30. data/lib/thor/shell.rb +88 -0
  31. data/lib/thor/shell/basic.rb +422 -0
  32. data/lib/thor/shell/color.rb +148 -0
  33. data/lib/thor/shell/html.rb +127 -0
  34. data/lib/thor/util.rb +270 -0
  35. data/lib/thor/version.rb +3 -0
  36. data/lib/thor_dleavitt.rb +473 -0
  37. data/spec/actions/create_file_spec.rb +170 -0
  38. data/spec/actions/create_link_spec.rb +95 -0
  39. data/spec/actions/directory_spec.rb +169 -0
  40. data/spec/actions/empty_directory_spec.rb +129 -0
  41. data/spec/actions/file_manipulation_spec.rb +382 -0
  42. data/spec/actions/inject_into_file_spec.rb +135 -0
  43. data/spec/actions_spec.rb +331 -0
  44. data/spec/base_spec.rb +291 -0
  45. data/spec/command_spec.rb +80 -0
  46. data/spec/core_ext/hash_with_indifferent_access_spec.rb +48 -0
  47. data/spec/core_ext/ordered_hash_spec.rb +115 -0
  48. data/spec/exit_condition_spec.rb +19 -0
  49. data/spec/fixtures/application.rb +2 -0
  50. data/spec/fixtures/app{1}/README +3 -0
  51. data/spec/fixtures/bundle/execute.rb +6 -0
  52. data/spec/fixtures/bundle/main.thor +1 -0
  53. data/spec/fixtures/command.thor +10 -0
  54. data/spec/fixtures/doc/%file_name%.rb.tt +1 -0
  55. data/spec/fixtures/doc/COMMENTER +11 -0
  56. data/spec/fixtures/doc/README +3 -0
  57. data/spec/fixtures/doc/block_helper.rb +3 -0
  58. data/spec/fixtures/doc/config.rb +1 -0
  59. data/spec/fixtures/doc/config.yaml.tt +1 -0
  60. data/spec/fixtures/doc/excluding/%file_name%.rb.tt +1 -0
  61. data/spec/fixtures/enum.thor +10 -0
  62. data/spec/fixtures/group.thor +128 -0
  63. data/spec/fixtures/invoke.thor +118 -0
  64. data/spec/fixtures/path with spaces b/data/spec/fixtures/path with → spaces +0 -0
  65. data/spec/fixtures/preserve/script.sh +3 -0
  66. data/spec/fixtures/script.thor +220 -0
  67. data/spec/fixtures/subcommand.thor +17 -0
  68. data/spec/group_spec.rb +222 -0
  69. data/spec/helper.rb +67 -0
  70. data/spec/invocation_spec.rb +108 -0
  71. data/spec/parser/argument_spec.rb +53 -0
  72. data/spec/parser/arguments_spec.rb +66 -0
  73. data/spec/parser/option_spec.rb +202 -0
  74. data/spec/parser/options_spec.rb +400 -0
  75. data/spec/rake_compat_spec.rb +72 -0
  76. data/spec/register_spec.rb +197 -0
  77. data/spec/runner_spec.rb +241 -0
  78. data/spec/shell/basic_spec.rb +330 -0
  79. data/spec/shell/color_spec.rb +95 -0
  80. data/spec/shell/html_spec.rb +31 -0
  81. data/spec/shell_spec.rb +47 -0
  82. data/spec/subcommand_spec.rb +30 -0
  83. data/spec/thor_spec.rb +499 -0
  84. data/spec/util_spec.rb +196 -0
  85. data/thor.gemspec +24 -0
  86. metadata +191 -0
@@ -0,0 +1,118 @@
1
+ class A < Thor
2
+ include Thor::Actions
3
+
4
+ desc "one", "invoke one"
5
+ def one
6
+ p 1
7
+ invoke :two
8
+ invoke :three
9
+ end
10
+
11
+ desc "two", "invoke two"
12
+ def two
13
+ p 2
14
+ invoke :three
15
+ end
16
+
17
+ desc "three", "invoke three"
18
+ def three
19
+ p 3
20
+ end
21
+
22
+ desc "four", "invoke four"
23
+ def four
24
+ p 4
25
+ invoke "defined:five"
26
+ end
27
+
28
+ desc "five N", "check if number is equal 5"
29
+ def five(number)
30
+ number == 5
31
+ end
32
+
33
+ desc "invoker", "invoke a b command"
34
+ def invoker(*args)
35
+ invoke :b, :one, ["Jose"]
36
+ end
37
+ end
38
+
39
+ class B < Thor
40
+ class_option :last_name, :type => :string
41
+
42
+ desc "one FIRST_NAME", "invoke one"
43
+ def one(first_name)
44
+ "#{options.last_name}, #{first_name}"
45
+ end
46
+
47
+ desc "two", "invoke two"
48
+ def two
49
+ options
50
+ end
51
+
52
+ desc "three", "invoke three"
53
+ def three
54
+ self
55
+ end
56
+
57
+ desc "four", "invoke four"
58
+ option :defaulted_value, :type => :string, :default => 'default'
59
+ def four
60
+ options.defaulted_value
61
+ end
62
+ end
63
+
64
+ class C < Thor::Group
65
+ include Thor::Actions
66
+
67
+ def one
68
+ p 1
69
+ end
70
+
71
+ def two
72
+ p 2
73
+ end
74
+
75
+ def three
76
+ p 3
77
+ end
78
+ end
79
+
80
+ class Defined < Thor::Group
81
+ class_option :unused, :type => :boolean, :desc => "This option has no use"
82
+
83
+ def one
84
+ p 1
85
+ invoke "a:two"
86
+ invoke "a:three"
87
+ invoke "a:four"
88
+ invoke "defined:five"
89
+ end
90
+
91
+ def five
92
+ p 5
93
+ end
94
+
95
+ def print_status
96
+ say_status :finished, :counting
97
+ end
98
+ end
99
+
100
+ class E < Thor::Group
101
+ invoke Defined
102
+ end
103
+
104
+ class F < Thor::Group
105
+ invoke "b:one" do |instance, klass, command|
106
+ instance.invoke klass, command, [ "Jose" ], :last_name => "Valim"
107
+ end
108
+ end
109
+
110
+ class G < Thor::Group
111
+ class_option :invoked, :type => :string, :default => "defined"
112
+ invoke_from_option :invoked
113
+ end
114
+
115
+ class H < Thor::Group
116
+ class_option :defined, :type => :boolean, :default => true
117
+ invoke_from_option :defined
118
+ end
@@ -0,0 +1,3 @@
1
+ #!/bin/sh
2
+
3
+ exit 0
@@ -0,0 +1,220 @@
1
+ class MyScript < Thor
2
+ check_unknown_options! :except => :with_optional
3
+
4
+ attr_accessor :some_attribute
5
+ attr_writer :another_attribute
6
+ attr_reader :another_attribute
7
+
8
+ private
9
+ attr_reader :private_attribute
10
+
11
+ public
12
+ group :script
13
+ default_command :example_default_command
14
+
15
+ map "-T" => :animal, ["-f", "--foo"] => :foo
16
+
17
+ map "animal_prison" => "zoo"
18
+
19
+ desc "zoo", "zoo around"
20
+ def zoo
21
+ true
22
+ end
23
+
24
+ desc "animal TYPE", "horse around"
25
+
26
+ no_commands do
27
+ def this_is_not_a_command
28
+ end
29
+ end
30
+
31
+ def animal(type)
32
+ [type]
33
+ end
34
+
35
+ map "hid" => "hidden"
36
+
37
+ desc "hidden TYPE", "this is hidden", :hide => true
38
+ def hidden(type)
39
+ [type]
40
+ end
41
+
42
+ map "fu" => "zoo"
43
+
44
+ desc "foo BAR", <<END
45
+ do some fooing
46
+ This is more info!
47
+ Everyone likes more info!
48
+ END
49
+ method_option :force, :type => :boolean, :desc => "Force to do some fooing"
50
+ def foo(bar)
51
+ [bar, options]
52
+ end
53
+
54
+ desc "example_default_command", "example!"
55
+ method_options :with => :string
56
+ def example_default_command
57
+ options.empty? ? "default command" : options
58
+ end
59
+
60
+ desc "call_myself_with_wrong_arity", "get the right error"
61
+ def call_myself_with_wrong_arity
62
+ call_myself_with_wrong_arity(4)
63
+ end
64
+
65
+ desc "call_unexistent_method", "Call unexistent method inside a command"
66
+ def call_unexistent_method
67
+ boom!
68
+ end
69
+
70
+ desc "long_description", "a" * 80
71
+ long_desc <<-D
72
+ This is a really really really long description.
73
+ Here you go. So very long.
74
+
75
+ It even has two paragraphs.
76
+ D
77
+ def long_description
78
+ end
79
+
80
+ desc "name-with-dashes", "Ensure normalization of command names"
81
+ def name_with_dashes
82
+ end
83
+
84
+ method_options :all => :boolean
85
+ method_option :lazy, :lazy_default => "yes"
86
+ method_option :lazy_numeric, :type => :numeric, :lazy_default => 42
87
+ method_option :lazy_array, :type => :array, :lazy_default => %w[eat at joes]
88
+ method_option :lazy_hash, :type => :hash, :lazy_default => {'swedish' => 'meatballs'}
89
+ desc "with_optional NAME", "invoke with optional name"
90
+ def with_optional(name=nil, *args)
91
+ [ name, options, args ]
92
+ end
93
+
94
+ class AnotherScript < Thor
95
+ desc "baz", "do some bazing"
96
+ def baz
97
+ end
98
+ end
99
+
100
+ desc "send", "send as a command name"
101
+ def send
102
+ true
103
+ end
104
+
105
+ private
106
+
107
+ def method_missing(meth, *args)
108
+ if meth == :boom!
109
+ super
110
+ else
111
+ [meth, args]
112
+ end
113
+ end
114
+
115
+ desc "what", "what"
116
+ def what
117
+ end
118
+ end
119
+
120
+ class MyChildScript < MyScript
121
+ remove_command :bar
122
+
123
+ method_options :force => :boolean, :param => :numeric
124
+ def initialize(*args)
125
+ super
126
+ end
127
+
128
+ desc "zoo", "zoo around"
129
+ method_options :param => :required
130
+ def zoo
131
+ options
132
+ end
133
+
134
+ desc "animal TYPE", "horse around"
135
+ def animal(type)
136
+ [type, options]
137
+ end
138
+ method_option :other, :type => :string, :default => "method default", :for => :animal
139
+ desc "animal KIND", "fish around", :for => :animal
140
+
141
+ desc "boom", "explodes everything"
142
+ def boom
143
+ end
144
+
145
+ remove_command :boom, :undefine => true
146
+ end
147
+
148
+ class Barn < Thor
149
+ desc "open [ITEM]", "open the barn door"
150
+ def open(item = nil)
151
+ if item == "shotgun"
152
+ puts "That's going to leave a mark."
153
+ else
154
+ puts "Open sesame!"
155
+ end
156
+ end
157
+
158
+ desc "paint [COLOR]", "paint the barn"
159
+ method_option :coats, :type => :numeric, :default => 2, :desc => 'how many coats of paint'
160
+ def paint(color='red')
161
+ puts "#{options[:coats]} coats of #{color} paint"
162
+ end
163
+ end
164
+
165
+ class PackageNameScript < Thor
166
+ package_name "Baboon"
167
+ end
168
+
169
+ module Scripts
170
+ class MyScript < MyChildScript
171
+ argument :accessor, :type => :string
172
+ class_options :force => :boolean
173
+ method_option :new_option, :type => :string, :for => :example_default_command
174
+
175
+ def zoo
176
+ self.accessor
177
+ end
178
+ end
179
+
180
+ class MyDefaults < Thor
181
+ check_unknown_options!
182
+
183
+ namespace :default
184
+ desc "cow", "prints 'moo'"
185
+ def cow
186
+ puts "moo"
187
+ end
188
+
189
+ desc "command_conflict", "only gets called when prepended with a colon"
190
+ def command_conflict
191
+ puts "command"
192
+ end
193
+
194
+ desc "barn", "commands to manage the barn"
195
+ subcommand "barn", Barn
196
+ end
197
+
198
+ class ChildDefault < Thor
199
+ namespace "default:child"
200
+ end
201
+
202
+ class Arities < Thor
203
+ desc "zero_args", "takes zero args"
204
+ def zero_args
205
+ end
206
+
207
+ desc "one_arg ARG", "takes one arg"
208
+ def one_arg(arg)
209
+ end
210
+
211
+ desc "two_args ARG1 ARG2", "takes two args"
212
+ def two_args(arg1, arg2)
213
+ end
214
+
215
+ desc "optional_arg [ARG]", "takes an optional arg"
216
+ def optional_arg(arg='default')
217
+ end
218
+ end
219
+ end
220
+
@@ -0,0 +1,17 @@
1
+ module TestSubcommands
2
+
3
+ class Subcommand < Thor
4
+ desc "print_opt", "My method"
5
+ def print_opt
6
+ print options["opt"]
7
+ end
8
+ end
9
+
10
+ class Parent < Thor
11
+ class_option "opt"
12
+
13
+ desc "sub", "My subcommand"
14
+ subcommand "sub", Subcommand
15
+ end
16
+
17
+ end
@@ -0,0 +1,222 @@
1
+ require 'helper'
2
+
3
+ describe Thor::Group do
4
+ describe "command" do
5
+ it "allows to use private methods from parent class as commands" do
6
+ expect(ChildGroup.start).to eq(["bar", "foo", "baz"])
7
+ expect(ChildGroup.new.baz("bar")).to eq("bar")
8
+ end
9
+ end
10
+
11
+ describe "#start" do
12
+ it "invokes all the commands under the Thor group" do
13
+ expect(MyCounter.start(["1", "2", "--third", "3"])).to eq([ 1, 2, 3, nil, nil, nil ])
14
+ end
15
+
16
+ it "uses argument's default value" do
17
+ expect(MyCounter.start(["1", "--third", "3"])).to eq([ 1, 2, 3, nil, nil, nil ])
18
+ end
19
+
20
+ it "invokes all the commands in the Thor group and its parents" do
21
+ expect(BrokenCounter.start(["1", "2", "--third", "3"])).to eq([ nil, 2, 3, false, 5, nil ])
22
+ end
23
+
24
+ it "raises an error if a required argument is added after a non-required" do
25
+ expect {
26
+ MyCounter.argument(:foo, :type => :string)
27
+ }.to raise_error(ArgumentError, 'You cannot have "foo" as required argument after the non-required argument "second".')
28
+ end
29
+
30
+ it "raises when an exception happens within the command call" do
31
+ expect{ BrokenCounter.start(["1", "2", "--fail"]) }.to raise_error
32
+ end
33
+
34
+ it "raises an error when a Thor group command expects arguments" do
35
+ expect{ WhinyGenerator.start }.to raise_error(ArgumentError, /thor wrong_arity takes 1 argument, but it should not/)
36
+ end
37
+
38
+ it "invokes help message if any of the shortcuts are given" do
39
+ expect(MyCounter).to receive(:help)
40
+ MyCounter.start(["-h"])
41
+ end
42
+ end
43
+
44
+ describe "#desc" do
45
+ it "sets the description for a given class" do
46
+ expect(MyCounter.desc).to eq("Description:\n This generator runs three commands: one, two and three.\n")
47
+ end
48
+
49
+ it "can be inherited" do
50
+ expect(BrokenCounter.desc).to eq("Description:\n This generator runs three commands: one, two and three.\n")
51
+ end
52
+
53
+ it "can be nil" do
54
+ expect(WhinyGenerator.desc).to be_nil
55
+ end
56
+ end
57
+
58
+ describe "#help" do
59
+ before do
60
+ @content = capture(:stdout) { MyCounter.help(Thor::Base.shell.new) }
61
+ end
62
+
63
+ it "provides usage information" do
64
+ expect(@content).to match(/my_counter N \[N\]/)
65
+ end
66
+
67
+ it "shows description" do
68
+ expect(@content).to match(/Description:/)
69
+ expect(@content).to match(/This generator runs three commands: one, two and three./)
70
+ end
71
+
72
+ it "shows options information" do
73
+ expect(@content).to match(/Options/)
74
+ expect(@content).to match(/\[\-\-third=THREE\]/)
75
+ end
76
+ end
77
+
78
+ describe "#invoke" do
79
+ before do
80
+ @content = capture(:stdout) { E.start }
81
+ end
82
+
83
+ it "allows to invoke a class from the class binding" do
84
+ expect(@content).to match(/1\n2\n3\n4\n5\n/)
85
+ end
86
+
87
+ it "shows invocation information to the user" do
88
+ expect(@content).to match(/invoke Defined/)
89
+ end
90
+
91
+ it "uses padding on status generated by the invoked class" do
92
+ expect(@content).to match(/finished counting/)
93
+ end
94
+
95
+ it "allows invocation to be configured with blocks" do
96
+ capture(:stdout) do
97
+ expect(F.start).to eq(["Valim, Jose"])
98
+ end
99
+ end
100
+
101
+ it "shows invoked options on help" do
102
+ content = capture(:stdout) { E.help(Thor::Base.shell.new) }
103
+ expect(content).to match(/Defined options:/)
104
+ expect(content).to match(/\[--unused\]/)
105
+ expect(content).to match(/# This option has no use/)
106
+ end
107
+ end
108
+
109
+ describe "#invoke_from_option" do
110
+ describe "with default type" do
111
+ before do
112
+ @content = capture(:stdout) { G.start }
113
+ end
114
+
115
+ it "allows to invoke a class from the class binding by a default option" do
116
+ expect(@content).to match(/1\n2\n3\n4\n5\n/)
117
+ end
118
+
119
+ it "does not invoke if the option is nil" do
120
+ expect(capture(:stdout) { G.start(["--skip-invoked"]) }).not_to match(/invoke/)
121
+ end
122
+
123
+ it "prints a message if invocation cannot be found" do
124
+ content = capture(:stdout) { G.start(["--invoked", "unknown"]) }
125
+ expect(content).to match(/error unknown \[not found\]/)
126
+ end
127
+
128
+ it "allows to invoke a class from the class binding by the given option" do
129
+ error = nil
130
+ content = capture(:stdout) {
131
+ error = capture(:stderr) {
132
+ G.start(["--invoked", "e"])
133
+ }
134
+ }
135
+ expect(content).to match(/invoke e/)
136
+ expect(error).to match(/ERROR: "thor two" was called with arguments/)
137
+ end
138
+
139
+ it "shows invocation information to the user" do
140
+ expect(@content).to match(/invoke defined/)
141
+ end
142
+
143
+ it "uses padding on status generated by the invoked class" do
144
+ expect(@content).to match(/finished counting/)
145
+ end
146
+
147
+ it "shows invoked options on help" do
148
+ content = capture(:stdout) { G.help(Thor::Base.shell.new) }
149
+ expect(content).to match(/defined options:/)
150
+ expect(content).to match(/\[--unused\]/)
151
+ expect(content).to match(/# This option has no use/)
152
+ end
153
+ end
154
+
155
+ describe "with boolean type" do
156
+ before do
157
+ @content = capture(:stdout) { H.start }
158
+ end
159
+
160
+ it "allows to invoke a class from the class binding by a default option" do
161
+ expect(@content).to match(/1\n2\n3\n4\n5\n/)
162
+ end
163
+
164
+ it "does not invoke if the option is false" do
165
+ expect(capture(:stdout) { H.start(["--no-defined"]) }).not_to match(/invoke/)
166
+ end
167
+
168
+ it "shows invocation information to the user" do
169
+ expect(@content).to match(/invoke defined/)
170
+ end
171
+
172
+ it "uses padding on status generated by the invoked class" do
173
+ expect(@content).to match(/finished counting/)
174
+ end
175
+
176
+ it "shows invoked options on help" do
177
+ content = capture(:stdout) { H.help(Thor::Base.shell.new) }
178
+ expect(content).to match(/defined options:/)
179
+ expect(content).to match(/\[--unused\]/)
180
+ expect(content).to match(/# This option has no use/)
181
+ end
182
+ end
183
+ end
184
+
185
+ describe "edge-cases" do
186
+ it "can handle boolean options followed by arguments" do
187
+ klass = Class.new(Thor::Group) do
188
+ desc "say hi to name"
189
+ argument :name, :type => :string
190
+ class_option :loud, :type => :boolean
191
+
192
+ def hi
193
+ name.upcase! if options[:loud]
194
+ "Hi #{name}"
195
+ end
196
+ end
197
+
198
+ expect(klass.start(["jose"])).to eq(["Hi jose"])
199
+ expect(klass.start(["jose", "--loud"])).to eq(["Hi JOSE"])
200
+ expect(klass.start(["--loud", "jose"])).to eq(["Hi JOSE"])
201
+ end
202
+
203
+ it "provides extra args as `args`" do
204
+ klass = Class.new(Thor::Group) do
205
+ desc "say hi to name"
206
+ argument :name, :type => :string
207
+ class_option :loud, :type => :boolean
208
+
209
+ def hi
210
+ name.upcase! if options[:loud]
211
+ out = "Hi #{name}"
212
+ out << ": " << args.join(", ") unless args.empty?
213
+ out
214
+ end
215
+ end
216
+
217
+ expect(klass.start(["jose"])).to eq(["Hi jose"])
218
+ expect(klass.start(["jose", "--loud"])).to eq(["Hi JOSE"])
219
+ expect(klass.start(["--loud", "jose"])).to eq(["Hi JOSE"])
220
+ end
221
+ end
222
+ end