acquia_toolbelt 1.5.1 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. checksums.yaml +8 -8
  2. data/.ruby-version +1 -0
  3. data/Gemfile.lock +35 -0
  4. data/README.md +55 -27
  5. data/acquia_toolbelt.gemspec +2 -0
  6. data/bin/acquia +6 -565
  7. data/lib/acquia_toolbelt/cli.rb +102 -0
  8. data/lib/acquia_toolbelt/cli/api.rb +106 -0
  9. data/lib/acquia_toolbelt/cli/auth.rb +31 -0
  10. data/lib/acquia_toolbelt/cli/database.rb +208 -0
  11. data/lib/acquia_toolbelt/cli/deploy.rb +30 -0
  12. data/lib/acquia_toolbelt/cli/domain.rb +166 -0
  13. data/lib/acquia_toolbelt/cli/environment.rb +38 -0
  14. data/lib/acquia_toolbelt/cli/file.rb +23 -0
  15. data/lib/acquia_toolbelt/cli/server.rb +61 -0
  16. data/lib/acquia_toolbelt/cli/site.rb +28 -0
  17. data/lib/acquia_toolbelt/cli/ssh.rb +69 -0
  18. data/lib/acquia_toolbelt/cli/svn.rb +65 -0
  19. data/lib/acquia_toolbelt/cli/task.rb +71 -0
  20. data/lib/acquia_toolbelt/cli/ui.rb +29 -0
  21. data/lib/acquia_toolbelt/error.rb +4 -0
  22. data/lib/acquia_toolbelt/thor.rb +95 -0
  23. data/lib/acquia_toolbelt/version.rb +1 -1
  24. data/lib/vendor/thor/CHANGELOG.md +139 -0
  25. data/lib/vendor/thor/Gemfile +20 -0
  26. data/lib/vendor/thor/LICENSE.md +20 -0
  27. data/lib/vendor/thor/README.md +35 -0
  28. data/lib/vendor/thor/lib/thor.rb +474 -0
  29. data/lib/vendor/thor/lib/thor/actions.rb +318 -0
  30. data/lib/vendor/thor/lib/thor/actions/create_file.rb +105 -0
  31. data/lib/vendor/thor/lib/thor/actions/create_link.rb +60 -0
  32. data/lib/vendor/thor/lib/thor/actions/directory.rb +119 -0
  33. data/lib/vendor/thor/lib/thor/actions/empty_directory.rb +137 -0
  34. data/lib/vendor/thor/lib/thor/actions/file_manipulation.rb +317 -0
  35. data/lib/vendor/thor/lib/thor/actions/inject_into_file.rb +109 -0
  36. data/lib/vendor/thor/lib/thor/base.rb +654 -0
  37. data/lib/vendor/thor/lib/thor/command.rb +136 -0
  38. data/lib/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +80 -0
  39. data/lib/vendor/thor/lib/thor/core_ext/io_binary_read.rb +12 -0
  40. data/lib/vendor/thor/lib/thor/core_ext/ordered_hash.rb +100 -0
  41. data/lib/vendor/thor/lib/thor/error.rb +32 -0
  42. data/lib/vendor/thor/lib/thor/group.rb +282 -0
  43. data/lib/vendor/thor/lib/thor/invocation.rb +172 -0
  44. data/lib/vendor/thor/lib/thor/parser.rb +4 -0
  45. data/lib/vendor/thor/lib/thor/parser/argument.rb +74 -0
  46. data/lib/vendor/thor/lib/thor/parser/arguments.rb +171 -0
  47. data/lib/vendor/thor/lib/thor/parser/option.rb +121 -0
  48. data/lib/vendor/thor/lib/thor/parser/options.rb +218 -0
  49. data/lib/vendor/thor/lib/thor/rake_compat.rb +72 -0
  50. data/lib/vendor/thor/lib/thor/runner.rb +322 -0
  51. data/lib/vendor/thor/lib/thor/shell.rb +88 -0
  52. data/lib/vendor/thor/lib/thor/shell/basic.rb +422 -0
  53. data/lib/vendor/thor/lib/thor/shell/color.rb +148 -0
  54. data/lib/vendor/thor/lib/thor/shell/html.rb +127 -0
  55. data/lib/vendor/thor/lib/thor/util.rb +270 -0
  56. data/lib/vendor/thor/lib/thor/version.rb +3 -0
  57. data/lib/vendor/thor/spec/actions/create_file_spec.rb +170 -0
  58. data/lib/vendor/thor/spec/actions/create_link_spec.rb +95 -0
  59. data/lib/vendor/thor/spec/actions/directory_spec.rb +169 -0
  60. data/lib/vendor/thor/spec/actions/empty_directory_spec.rb +129 -0
  61. data/lib/vendor/thor/spec/actions/file_manipulation_spec.rb +382 -0
  62. data/lib/vendor/thor/spec/actions/inject_into_file_spec.rb +135 -0
  63. data/lib/vendor/thor/spec/actions_spec.rb +331 -0
  64. data/lib/vendor/thor/spec/base_spec.rb +291 -0
  65. data/lib/vendor/thor/spec/command_spec.rb +80 -0
  66. data/lib/vendor/thor/spec/core_ext/hash_with_indifferent_access_spec.rb +48 -0
  67. data/lib/vendor/thor/spec/core_ext/ordered_hash_spec.rb +115 -0
  68. data/lib/vendor/thor/spec/exit_condition_spec.rb +19 -0
  69. data/lib/vendor/thor/spec/fixtures/application.rb +2 -0
  70. data/lib/vendor/thor/spec/fixtures/app{1}/README +3 -0
  71. data/lib/vendor/thor/spec/fixtures/bundle/execute.rb +6 -0
  72. data/lib/vendor/thor/spec/fixtures/bundle/main.thor +1 -0
  73. data/lib/vendor/thor/spec/fixtures/command.thor +10 -0
  74. data/lib/vendor/thor/spec/fixtures/doc/%file_name%.rb.tt +1 -0
  75. data/lib/vendor/thor/spec/fixtures/doc/COMMENTER +11 -0
  76. data/lib/vendor/thor/spec/fixtures/doc/README +3 -0
  77. data/lib/vendor/thor/spec/fixtures/doc/block_helper.rb +3 -0
  78. data/lib/vendor/thor/spec/fixtures/doc/components/.empty_directory +0 -0
  79. data/lib/vendor/thor/spec/fixtures/doc/config.rb +1 -0
  80. data/lib/vendor/thor/spec/fixtures/doc/config.yaml.tt +1 -0
  81. data/lib/vendor/thor/spec/fixtures/doc/excluding/%file_name%.rb.tt +1 -0
  82. data/lib/vendor/thor/spec/fixtures/enum.thor +10 -0
  83. data/lib/vendor/thor/spec/fixtures/group.thor +128 -0
  84. data/lib/vendor/thor/spec/fixtures/invoke.thor +118 -0
  85. data/lib/vendor/thor/spec/fixtures/path with spaces b/data/lib/vendor/thor/spec/fixtures/path with → spaces +0 -0
  86. data/lib/vendor/thor/spec/fixtures/preserve/script.sh +3 -0
  87. data/lib/vendor/thor/spec/fixtures/script.thor +220 -0
  88. data/lib/vendor/thor/spec/fixtures/subcommand.thor +17 -0
  89. data/lib/vendor/thor/spec/group_spec.rb +222 -0
  90. data/lib/vendor/thor/spec/helper.rb +67 -0
  91. data/lib/vendor/thor/spec/invocation_spec.rb +108 -0
  92. data/lib/vendor/thor/spec/parser/argument_spec.rb +53 -0
  93. data/lib/vendor/thor/spec/parser/arguments_spec.rb +66 -0
  94. data/lib/vendor/thor/spec/parser/option_spec.rb +202 -0
  95. data/lib/vendor/thor/spec/parser/options_spec.rb +400 -0
  96. data/lib/vendor/thor/spec/rake_compat_spec.rb +72 -0
  97. data/lib/vendor/thor/spec/register_spec.rb +197 -0
  98. data/lib/vendor/thor/spec/runner_spec.rb +241 -0
  99. data/lib/vendor/thor/spec/shell/basic_spec.rb +330 -0
  100. data/lib/vendor/thor/spec/shell/color_spec.rb +95 -0
  101. data/lib/vendor/thor/spec/shell/html_spec.rb +31 -0
  102. data/lib/vendor/thor/spec/shell_spec.rb +47 -0
  103. data/lib/vendor/thor/spec/subcommand_spec.rb +30 -0
  104. data/lib/vendor/thor/spec/thor_spec.rb +499 -0
  105. data/lib/vendor/thor/spec/util_spec.rb +196 -0
  106. data/lib/vendor/thor/thor.gemspec +24 -0
  107. data/spec/auth_spec.rb +8 -0
  108. data/spec_helper.rb +6 -0
  109. metadata +135 -4
  110. data/tests/example_test.rb +0 -5
@@ -0,0 +1,196 @@
1
+ require 'helper'
2
+
3
+ module Thor::Util
4
+ def self.clear_user_home!
5
+ @@user_home = nil
6
+ end
7
+ end
8
+
9
+ describe Thor::Util do
10
+ describe "#find_by_namespace" do
11
+ it "returns 'default' if no namespace is given" do
12
+ expect(Thor::Util.find_by_namespace('')).to eq(Scripts::MyDefaults)
13
+ end
14
+
15
+ it "adds 'default' if namespace starts with :" do
16
+ expect(Thor::Util.find_by_namespace(':child')).to eq(Scripts::ChildDefault)
17
+ end
18
+
19
+ it "returns nil if the namespace can't be found" do
20
+ expect(Thor::Util.find_by_namespace('thor:core_ext:ordered_hash')).to be_nil
21
+ end
22
+
23
+ it "returns a class if it matches the namespace" do
24
+ expect(Thor::Util.find_by_namespace('app:broken:counter')).to eq(BrokenCounter)
25
+ end
26
+
27
+ it "matches classes default namespace" do
28
+ expect(Thor::Util.find_by_namespace('scripts:my_script')).to eq(Scripts::MyScript)
29
+ end
30
+ end
31
+
32
+ describe "#namespace_from_thor_class" do
33
+ it "replaces constant nesting with command namespacing" do
34
+ expect(Thor::Util.namespace_from_thor_class("Foo::Bar::Baz")).to eq("foo:bar:baz")
35
+ end
36
+
37
+ it "snake-cases component strings" do
38
+ expect(Thor::Util.namespace_from_thor_class("FooBar::BarBaz::BazBoom")).to eq("foo_bar:bar_baz:baz_boom")
39
+ end
40
+
41
+ it "accepts class and module objects" do
42
+ expect(Thor::Util.namespace_from_thor_class(Thor::CoreExt::OrderedHash)).to eq("thor:core_ext:ordered_hash")
43
+ expect(Thor::Util.namespace_from_thor_class(Thor::Util)).to eq("thor:util")
44
+ end
45
+
46
+ it "removes Thor::Sandbox namespace" do
47
+ expect(Thor::Util.namespace_from_thor_class("Thor::Sandbox::Package")).to eq("package")
48
+ end
49
+ end
50
+
51
+ describe "#namespaces_in_content" do
52
+ it "returns an array of names of constants defined in the string" do
53
+ list = Thor::Util.namespaces_in_content("class Foo; class Bar < Thor; end; end; class Baz; class Bat; end; end")
54
+ expect(list).to include("foo:bar")
55
+ expect(list).not_to include("bar:bat")
56
+ end
57
+
58
+ it "doesn't put the newly-defined constants in the enclosing namespace" do
59
+ Thor::Util.namespaces_in_content("class Blat; end")
60
+ expect(defined?(Blat)).not_to be
61
+ expect(defined?(Thor::Sandbox::Blat)).to be
62
+ end
63
+ end
64
+
65
+ describe "#snake_case" do
66
+ it "preserves no-cap strings" do
67
+ expect(Thor::Util.snake_case("foo")).to eq("foo")
68
+ expect(Thor::Util.snake_case("foo_bar")).to eq("foo_bar")
69
+ end
70
+
71
+ it "downcases all-caps strings" do
72
+ expect(Thor::Util.snake_case("FOO")).to eq("foo")
73
+ expect(Thor::Util.snake_case("FOO_BAR")).to eq("foo_bar")
74
+ end
75
+
76
+ it "downcases initial-cap strings" do
77
+ expect(Thor::Util.snake_case("Foo")).to eq("foo")
78
+ end
79
+
80
+ it "replaces camel-casing with underscores" do
81
+ expect(Thor::Util.snake_case("FooBarBaz")).to eq("foo_bar_baz")
82
+ expect(Thor::Util.snake_case("Foo_BarBaz")).to eq("foo_bar_baz")
83
+ end
84
+
85
+ it "places underscores between multiple capitals" do
86
+ expect(Thor::Util.snake_case("ABClass")).to eq("a_b_class")
87
+ end
88
+ end
89
+
90
+ describe "#find_class_and_command_by_namespace" do
91
+ it "returns a Thor::Group class if full namespace matches" do
92
+ expect(Thor::Util.find_class_and_command_by_namespace("my_counter")).to eq([MyCounter, nil])
93
+ end
94
+
95
+ it "returns a Thor class if full namespace matches" do
96
+ expect(Thor::Util.find_class_and_command_by_namespace("thor")).to eq([Thor, nil])
97
+ end
98
+
99
+ it "returns a Thor class and the command name" do
100
+ expect(Thor::Util.find_class_and_command_by_namespace("thor:help")).to eq([Thor, "help"])
101
+ end
102
+
103
+ it "falls back in the namespace:command look up even if a full namespace does not match" do
104
+ Thor.const_set(:Help, Module.new)
105
+ expect(Thor::Util.find_class_and_command_by_namespace("thor:help")).to eq([Thor, "help"])
106
+ Thor.send :remove_const, :Help
107
+ end
108
+
109
+ it "falls back on the default namespace class if nothing else matches" do
110
+ expect(Thor::Util.find_class_and_command_by_namespace("test")).to eq([Scripts::MyDefaults, "test"])
111
+ end
112
+ end
113
+
114
+ describe "#thor_classes_in" do
115
+ it "returns thor classes inside the given class" do
116
+ expect(Thor::Util.thor_classes_in(MyScript)).to eq([MyScript::AnotherScript])
117
+ expect(Thor::Util.thor_classes_in(MyScript::AnotherScript)).to be_empty
118
+ end
119
+ end
120
+
121
+ describe "#user_home" do
122
+ before do
123
+ allow(ENV).to receive(:[])
124
+ Thor::Util.clear_user_home!
125
+ end
126
+
127
+ it "returns the user path if no variable is set on the environment" do
128
+ expect(Thor::Util.user_home).to eq(File.expand_path("~"))
129
+ end
130
+
131
+ it "returns the *nix system path if file cannot be expanded and separator does not exist" do
132
+ expect(File).to receive(:expand_path).with("~").and_raise(RuntimeError)
133
+ previous_value = File::ALT_SEPARATOR
134
+ capture(:stderr){ File.const_set(:ALT_SEPARATOR, false) }
135
+ expect(Thor::Util.user_home).to eq("/")
136
+ capture(:stderr){ File.const_set(:ALT_SEPARATOR, previous_value) }
137
+ end
138
+
139
+ it "returns the windows system path if file cannot be expanded and a separator exists" do
140
+ expect(File).to receive(:expand_path).with("~").and_raise(RuntimeError)
141
+ previous_value = File::ALT_SEPARATOR
142
+ capture(:stderr){ File.const_set(:ALT_SEPARATOR, true) }
143
+ expect(Thor::Util.user_home).to eq("C:/")
144
+ capture(:stderr){ File.const_set(:ALT_SEPARATOR, previous_value) }
145
+ end
146
+
147
+ it "returns HOME/.thor if set" do
148
+ allow(ENV).to receive(:[]).with("HOME").and_return("/home/user/")
149
+ expect(Thor::Util.user_home).to eq("/home/user/")
150
+ end
151
+
152
+ it "returns path with HOMEDRIVE and HOMEPATH if set" do
153
+ allow(ENV).to receive(:[]).with("HOMEDRIVE").and_return("D:/")
154
+ allow(ENV).to receive(:[]).with("HOMEPATH").and_return("Documents and Settings/James")
155
+ expect(Thor::Util.user_home).to eq("D:/Documents and Settings/James")
156
+ end
157
+
158
+ it "returns APPDATA/.thor if set" do
159
+ allow(ENV).to receive(:[]).with("APPDATA").and_return("/home/user/")
160
+ expect(Thor::Util.user_home).to eq("/home/user/")
161
+ end
162
+ end
163
+
164
+ describe "#thor_root_glob" do
165
+ before do
166
+ allow(ENV).to receive(:[])
167
+ Thor::Util.clear_user_home!
168
+ end
169
+
170
+ it "escapes globs in path" do
171
+ allow(ENV).to receive(:[]).with("HOME").and_return("/home/user{1}/")
172
+ expect(Dir).to receive(:[]).with("/home/user\\{1\\}/.thor/*").and_return([])
173
+ expect(Thor::Util.thor_root_glob).to eq([])
174
+ end
175
+ end
176
+
177
+ describe "#globs_for" do
178
+ it "escapes globs in path" do
179
+ expect(Thor::Util.globs_for("/home/apps{1}")).to eq([
180
+ "/home/apps\\{1\\}/Thorfile",
181
+ "/home/apps\\{1\\}/*.thor",
182
+ "/home/apps\\{1\\}/tasks/*.thor",
183
+ "/home/apps\\{1\\}/lib/tasks/*.thor"
184
+ ])
185
+ end
186
+ end
187
+
188
+ describe "#escape_globs" do
189
+ it "escapes ? * { } [ ] glob characters" do
190
+ expect(Thor::Util.escape_globs("apps?")).to eq("apps\\?")
191
+ expect(Thor::Util.escape_globs("apps*")).to eq("apps\\*")
192
+ expect(Thor::Util.escape_globs("apps {1}")).to eq("apps \\{1\\}")
193
+ expect(Thor::Util.escape_globs("apps [1]")).to eq("apps \\[1\\]")
194
+ end
195
+ end
196
+ end
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib/', __FILE__)
3
+ $:.unshift lib unless $:.include?(lib)
4
+ require 'thor/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.add_development_dependency 'bundler', '~> 1.0'
8
+ spec.authors = ['Yehuda Katz', 'José Valim']
9
+ spec.description = %q{Thor is a toolkit for building powerful command-line interfaces.}
10
+ spec.email = 'ruby-thor@googlegroups.com'
11
+ spec.executables = %w(thor)
12
+ spec.files = %w(.document CHANGELOG.md LICENSE.md README.md Thorfile thor.gemspec)
13
+ spec.files += Dir.glob("bin/**/*")
14
+ spec.files += Dir.glob("lib/**/*.rb")
15
+ spec.files += Dir.glob("spec/**/*")
16
+ spec.homepage = 'http://whatisthor.com/'
17
+ spec.licenses = ['MIT']
18
+ spec.name = 'thor'
19
+ spec.require_paths = ['lib']
20
+ spec.required_rubygems_version = '>= 1.3.5'
21
+ spec.summary = spec.description
22
+ spec.test_files = Dir.glob("spec/**/*")
23
+ spec.version = Thor::VERSION
24
+ end
data/spec/auth_spec.rb ADDED
@@ -0,0 +1,8 @@
1
+ require "netrc"
2
+
3
+ describe "when reading netrc values" do
4
+ it "should be able to read login values" do
5
+ n = Netrc.read
6
+ assert n["cloudapi.acquia.com"], "login values cannot be read or do not exist."
7
+ end
8
+ end
data/spec_helper.rb ADDED
@@ -0,0 +1,6 @@
1
+ require 'minitest/autorun'
2
+ require 'minitest/spec'
3
+
4
+ # Thanks to minitest not having a built in way for running all tests at once,
5
+ # here is my solution to run them all.
6
+ Dir.glob('./spec/**/*_spec.rb').each { |file| require file}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acquia_toolbelt
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.1
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jacob Bednarz
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-09-22 00:00:00.000000000 Z
11
+ date: 2013-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -94,6 +94,20 @@ dependencies:
94
94
  - - '='
95
95
  - !ruby/object:Gem::Version
96
96
  version: 1.1.4
97
+ - !ruby/object:Gem::Dependency
98
+ name: sshkey
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - '='
102
+ - !ruby/object:Gem::Version
103
+ version: 1.6.0
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - '='
109
+ - !ruby/object:Gem::Version
110
+ version: 1.6.0
97
111
  - !ruby/object:Gem::Dependency
98
112
  name: bundler
99
113
  requirement: !ruby/object:Gem::Requirement
@@ -122,6 +136,20 @@ dependencies:
122
136
  - - ! '>='
123
137
  - !ruby/object:Gem::Version
124
138
  version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: minitest
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ! '>='
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ! '>='
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
125
153
  description: A CLI tool for interacting with Acquia's hosting services.
126
154
  email:
127
155
  - jacob.bednarz@gmail.com
@@ -131,15 +159,117 @@ extensions: []
131
159
  extra_rdoc_files: []
132
160
  files:
133
161
  - .gitignore
162
+ - .ruby-version
134
163
  - Gemfile
164
+ - Gemfile.lock
135
165
  - LICENSE
136
166
  - README.md
137
167
  - Rakefile
138
168
  - acquia_toolbelt.gemspec
139
169
  - bin/acquia
140
170
  - lib/acquia_toolbelt.rb
171
+ - lib/acquia_toolbelt/cli.rb
172
+ - lib/acquia_toolbelt/cli/api.rb
173
+ - lib/acquia_toolbelt/cli/auth.rb
174
+ - lib/acquia_toolbelt/cli/database.rb
175
+ - lib/acquia_toolbelt/cli/deploy.rb
176
+ - lib/acquia_toolbelt/cli/domain.rb
177
+ - lib/acquia_toolbelt/cli/environment.rb
178
+ - lib/acquia_toolbelt/cli/file.rb
179
+ - lib/acquia_toolbelt/cli/server.rb
180
+ - lib/acquia_toolbelt/cli/site.rb
181
+ - lib/acquia_toolbelt/cli/ssh.rb
182
+ - lib/acquia_toolbelt/cli/svn.rb
183
+ - lib/acquia_toolbelt/cli/task.rb
184
+ - lib/acquia_toolbelt/cli/ui.rb
185
+ - lib/acquia_toolbelt/error.rb
186
+ - lib/acquia_toolbelt/thor.rb
141
187
  - lib/acquia_toolbelt/version.rb
142
- - tests/example_test.rb
188
+ - lib/vendor/thor/CHANGELOG.md
189
+ - lib/vendor/thor/Gemfile
190
+ - lib/vendor/thor/LICENSE.md
191
+ - lib/vendor/thor/README.md
192
+ - lib/vendor/thor/lib/thor.rb
193
+ - lib/vendor/thor/lib/thor/actions.rb
194
+ - lib/vendor/thor/lib/thor/actions/create_file.rb
195
+ - lib/vendor/thor/lib/thor/actions/create_link.rb
196
+ - lib/vendor/thor/lib/thor/actions/directory.rb
197
+ - lib/vendor/thor/lib/thor/actions/empty_directory.rb
198
+ - lib/vendor/thor/lib/thor/actions/file_manipulation.rb
199
+ - lib/vendor/thor/lib/thor/actions/inject_into_file.rb
200
+ - lib/vendor/thor/lib/thor/base.rb
201
+ - lib/vendor/thor/lib/thor/command.rb
202
+ - lib/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb
203
+ - lib/vendor/thor/lib/thor/core_ext/io_binary_read.rb
204
+ - lib/vendor/thor/lib/thor/core_ext/ordered_hash.rb
205
+ - lib/vendor/thor/lib/thor/error.rb
206
+ - lib/vendor/thor/lib/thor/group.rb
207
+ - lib/vendor/thor/lib/thor/invocation.rb
208
+ - lib/vendor/thor/lib/thor/parser.rb
209
+ - lib/vendor/thor/lib/thor/parser/argument.rb
210
+ - lib/vendor/thor/lib/thor/parser/arguments.rb
211
+ - lib/vendor/thor/lib/thor/parser/option.rb
212
+ - lib/vendor/thor/lib/thor/parser/options.rb
213
+ - lib/vendor/thor/lib/thor/rake_compat.rb
214
+ - lib/vendor/thor/lib/thor/runner.rb
215
+ - lib/vendor/thor/lib/thor/shell.rb
216
+ - lib/vendor/thor/lib/thor/shell/basic.rb
217
+ - lib/vendor/thor/lib/thor/shell/color.rb
218
+ - lib/vendor/thor/lib/thor/shell/html.rb
219
+ - lib/vendor/thor/lib/thor/util.rb
220
+ - lib/vendor/thor/lib/thor/version.rb
221
+ - lib/vendor/thor/spec/actions/create_file_spec.rb
222
+ - lib/vendor/thor/spec/actions/create_link_spec.rb
223
+ - lib/vendor/thor/spec/actions/directory_spec.rb
224
+ - lib/vendor/thor/spec/actions/empty_directory_spec.rb
225
+ - lib/vendor/thor/spec/actions/file_manipulation_spec.rb
226
+ - lib/vendor/thor/spec/actions/inject_into_file_spec.rb
227
+ - lib/vendor/thor/spec/actions_spec.rb
228
+ - lib/vendor/thor/spec/base_spec.rb
229
+ - lib/vendor/thor/spec/command_spec.rb
230
+ - lib/vendor/thor/spec/core_ext/hash_with_indifferent_access_spec.rb
231
+ - lib/vendor/thor/spec/core_ext/ordered_hash_spec.rb
232
+ - lib/vendor/thor/spec/exit_condition_spec.rb
233
+ - lib/vendor/thor/spec/fixtures/application.rb
234
+ - lib/vendor/thor/spec/fixtures/app{1}/README
235
+ - lib/vendor/thor/spec/fixtures/bundle/execute.rb
236
+ - lib/vendor/thor/spec/fixtures/bundle/main.thor
237
+ - lib/vendor/thor/spec/fixtures/command.thor
238
+ - lib/vendor/thor/spec/fixtures/doc/%file_name%.rb.tt
239
+ - lib/vendor/thor/spec/fixtures/doc/COMMENTER
240
+ - lib/vendor/thor/spec/fixtures/doc/README
241
+ - lib/vendor/thor/spec/fixtures/doc/block_helper.rb
242
+ - lib/vendor/thor/spec/fixtures/doc/components/.empty_directory
243
+ - lib/vendor/thor/spec/fixtures/doc/config.rb
244
+ - lib/vendor/thor/spec/fixtures/doc/config.yaml.tt
245
+ - lib/vendor/thor/spec/fixtures/doc/excluding/%file_name%.rb.tt
246
+ - lib/vendor/thor/spec/fixtures/enum.thor
247
+ - lib/vendor/thor/spec/fixtures/group.thor
248
+ - lib/vendor/thor/spec/fixtures/invoke.thor
249
+ - lib/vendor/thor/spec/fixtures/path with spaces
250
+ - lib/vendor/thor/spec/fixtures/preserve/script.sh
251
+ - lib/vendor/thor/spec/fixtures/script.thor
252
+ - lib/vendor/thor/spec/fixtures/subcommand.thor
253
+ - lib/vendor/thor/spec/group_spec.rb
254
+ - lib/vendor/thor/spec/helper.rb
255
+ - lib/vendor/thor/spec/invocation_spec.rb
256
+ - lib/vendor/thor/spec/parser/argument_spec.rb
257
+ - lib/vendor/thor/spec/parser/arguments_spec.rb
258
+ - lib/vendor/thor/spec/parser/option_spec.rb
259
+ - lib/vendor/thor/spec/parser/options_spec.rb
260
+ - lib/vendor/thor/spec/rake_compat_spec.rb
261
+ - lib/vendor/thor/spec/register_spec.rb
262
+ - lib/vendor/thor/spec/runner_spec.rb
263
+ - lib/vendor/thor/spec/shell/basic_spec.rb
264
+ - lib/vendor/thor/spec/shell/color_spec.rb
265
+ - lib/vendor/thor/spec/shell/html_spec.rb
266
+ - lib/vendor/thor/spec/shell_spec.rb
267
+ - lib/vendor/thor/spec/subcommand_spec.rb
268
+ - lib/vendor/thor/spec/thor_spec.rb
269
+ - lib/vendor/thor/spec/util_spec.rb
270
+ - lib/vendor/thor/thor.gemspec
271
+ - spec/auth_spec.rb
272
+ - spec_helper.rb
143
273
  homepage: https://github.com/jacobbednarz/acquia-toolbelt
144
274
  licenses:
145
275
  - MIT
@@ -164,5 +294,6 @@ rubygems_version: 2.0.3
164
294
  signing_key:
165
295
  specification_version: 4
166
296
  summary: ''
167
- test_files: []
297
+ test_files:
298
+ - spec/auth_spec.rb
168
299
  has_rdoc:
@@ -1,5 +0,0 @@
1
- require 'minitest/autorun'
2
-
3
- describe Thor, "Acquia Toolbelt Tests" do
4
- @thor = Thor.new
5
- end