engineyard 2.0.7 → 2.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. data/lib/engineyard/cli.rb +3 -0
  2. data/lib/engineyard/thor.rb +1 -0
  3. data/lib/engineyard/version.rb +1 -1
  4. data/lib/vendor/thor/Gemfile +15 -0
  5. data/lib/vendor/thor/LICENSE.md +20 -0
  6. data/lib/vendor/thor/README.md +28 -0
  7. data/lib/vendor/thor/lib/thor.rb +379 -0
  8. data/lib/vendor/thor/lib/thor/actions.rb +318 -0
  9. data/lib/vendor/thor/lib/thor/actions/create_file.rb +105 -0
  10. data/lib/vendor/thor/lib/thor/actions/create_link.rb +57 -0
  11. data/lib/vendor/thor/lib/thor/actions/directory.rb +98 -0
  12. data/lib/vendor/thor/lib/thor/actions/empty_directory.rb +153 -0
  13. data/lib/vendor/thor/lib/thor/actions/file_manipulation.rb +308 -0
  14. data/lib/vendor/thor/lib/thor/actions/inject_into_file.rb +109 -0
  15. data/lib/vendor/thor/lib/thor/base.rb +641 -0
  16. data/lib/vendor/thor/lib/thor/core_ext/dir_escape.rb +0 -0
  17. data/lib/vendor/thor/lib/thor/core_ext/file_binary_read.rb +9 -0
  18. data/lib/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +75 -0
  19. data/lib/vendor/thor/lib/thor/core_ext/ordered_hash.rb +100 -0
  20. data/lib/vendor/thor/lib/thor/error.rb +35 -0
  21. data/lib/vendor/thor/lib/thor/group.rb +285 -0
  22. data/lib/vendor/thor/lib/thor/invocation.rb +170 -0
  23. data/lib/vendor/thor/lib/thor/parser.rb +4 -0
  24. data/lib/vendor/thor/lib/thor/parser/argument.rb +74 -0
  25. data/lib/vendor/thor/lib/thor/parser/arguments.rb +171 -0
  26. data/lib/vendor/thor/lib/thor/parser/option.rb +121 -0
  27. data/lib/vendor/thor/lib/thor/parser/options.rb +178 -0
  28. data/lib/vendor/thor/lib/thor/rake_compat.rb +71 -0
  29. data/lib/vendor/thor/lib/thor/runner.rb +321 -0
  30. data/lib/vendor/thor/lib/thor/shell.rb +88 -0
  31. data/lib/vendor/thor/lib/thor/shell/basic.rb +389 -0
  32. data/lib/vendor/thor/lib/thor/shell/color.rb +144 -0
  33. data/lib/vendor/thor/lib/thor/shell/html.rb +123 -0
  34. data/lib/vendor/thor/lib/thor/task.rb +132 -0
  35. data/lib/vendor/thor/lib/thor/util.rb +266 -0
  36. data/lib/vendor/thor/lib/thor/version.rb +3 -0
  37. data/lib/vendor/thor/thor.gemspec +26 -0
  38. metadata +38 -21
  39. data/bin/ey_perftools +0 -12
@@ -0,0 +1,3 @@
1
+ class Thor
2
+ VERSION = "0.16.0"
3
+ end
@@ -0,0 +1,26 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/thor/version', __FILE__)
3
+
4
+ Gem::Specification.new do |s|
5
+ s.add_development_dependency 'bundler', '~> 1.0'
6
+ s.add_development_dependency 'fakeweb', '~> 1.3'
7
+ s.add_development_dependency 'rake', '~> 0.9'
8
+ s.add_development_dependency 'rdoc', '~> 3.9'
9
+ s.add_development_dependency 'rspec', '~> 2.3'
10
+ s.add_development_dependency 'simplecov', '~> 0.4'
11
+ s.add_development_dependency 'childlabor'
12
+ s.authors = ['Yehuda Katz', 'José Valim']
13
+ s.description = %q{A scripting framework that replaces rake, sake and rubigen}
14
+ s.email = 'ruby-thor@googlegroups.com'
15
+ s.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
16
+ s.extra_rdoc_files = ['CHANGELOG.rdoc', 'LICENSE.md', 'README.md', 'Thorfile']
17
+ s.files = `git ls-files`.split("\n")
18
+ s.homepage = 'http://whatisthor.com/'
19
+ s.name = 'thor'
20
+ s.rdoc_options = ['--charset=UTF-8']
21
+ s.require_paths = ['lib']
22
+ s.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
23
+ s.summary = s.description
24
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
25
+ s.version = Thor::VERSION
26
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: engineyard
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.7
4
+ version: 2.0.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-09-24 00:00:00.000000000 Z
12
+ date: 2012-10-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rest-client
@@ -27,22 +27,6 @@ dependencies:
27
27
  - - ~>
28
28
  - !ruby/object:Gem::Version
29
29
  version: 1.6.0
30
- - !ruby/object:Gem::Dependency
31
- name: thor
32
- requirement: !ruby/object:Gem::Requirement
33
- none: false
34
- requirements:
35
- - - ~>
36
- - !ruby/object:Gem::Version
37
- version: 0.16.0
38
- type: :runtime
39
- prerelease: false
40
- version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ~>
44
- - !ruby/object:Gem::Version
45
- version: 0.16.0
46
30
  - !ruby/object:Gem::Dependency
47
31
  name: highline
48
32
  requirement: !ruby/object:Gem::Requirement
@@ -324,7 +308,6 @@ extensions: []
324
308
  extra_rdoc_files: []
325
309
  files:
326
310
  - bin/ey
327
- - bin/ey_perftools
328
311
  - lib/engineyard/cli/api.rb
329
312
  - lib/engineyard/cli/recipes.rb
330
313
  - lib/engineyard/cli/ui.rb
@@ -341,6 +324,40 @@ files:
341
324
  - lib/engineyard/thor.rb
342
325
  - lib/engineyard/version.rb
343
326
  - lib/engineyard.rb
327
+ - lib/vendor/thor/Gemfile
328
+ - lib/vendor/thor/lib/thor/actions/create_file.rb
329
+ - lib/vendor/thor/lib/thor/actions/create_link.rb
330
+ - lib/vendor/thor/lib/thor/actions/directory.rb
331
+ - lib/vendor/thor/lib/thor/actions/empty_directory.rb
332
+ - lib/vendor/thor/lib/thor/actions/file_manipulation.rb
333
+ - lib/vendor/thor/lib/thor/actions/inject_into_file.rb
334
+ - lib/vendor/thor/lib/thor/actions.rb
335
+ - lib/vendor/thor/lib/thor/base.rb
336
+ - lib/vendor/thor/lib/thor/core_ext/dir_escape.rb
337
+ - lib/vendor/thor/lib/thor/core_ext/file_binary_read.rb
338
+ - lib/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb
339
+ - lib/vendor/thor/lib/thor/core_ext/ordered_hash.rb
340
+ - lib/vendor/thor/lib/thor/error.rb
341
+ - lib/vendor/thor/lib/thor/group.rb
342
+ - lib/vendor/thor/lib/thor/invocation.rb
343
+ - lib/vendor/thor/lib/thor/parser/argument.rb
344
+ - lib/vendor/thor/lib/thor/parser/arguments.rb
345
+ - lib/vendor/thor/lib/thor/parser/option.rb
346
+ - lib/vendor/thor/lib/thor/parser/options.rb
347
+ - lib/vendor/thor/lib/thor/parser.rb
348
+ - lib/vendor/thor/lib/thor/rake_compat.rb
349
+ - lib/vendor/thor/lib/thor/runner.rb
350
+ - lib/vendor/thor/lib/thor/shell/basic.rb
351
+ - lib/vendor/thor/lib/thor/shell/color.rb
352
+ - lib/vendor/thor/lib/thor/shell/html.rb
353
+ - lib/vendor/thor/lib/thor/shell.rb
354
+ - lib/vendor/thor/lib/thor/task.rb
355
+ - lib/vendor/thor/lib/thor/util.rb
356
+ - lib/vendor/thor/lib/thor/version.rb
357
+ - lib/vendor/thor/lib/thor.rb
358
+ - lib/vendor/thor/LICENSE.md
359
+ - lib/vendor/thor/README.md
360
+ - lib/vendor/thor/thor.gemspec
344
361
  - LICENSE
345
362
  - README.rdoc
346
363
  - spec/engineyard/cli/api_spec.rb
@@ -408,7 +425,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
408
425
  version: '0'
409
426
  segments:
410
427
  - 0
411
- hash: 442224955877158192
428
+ hash: 3271443734841409447
412
429
  required_rubygems_version: !ruby/object:Gem::Requirement
413
430
  none: false
414
431
  requirements:
@@ -417,7 +434,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
417
434
  version: '0'
418
435
  segments:
419
436
  - 0
420
- hash: 442224955877158192
437
+ hash: 3271443734841409447
421
438
  requirements: []
422
439
  rubyforge_project:
423
440
  rubygems_version: 1.8.24
@@ -1,12 +0,0 @@
1
- #!/usr/bin/env ruby
2
- require 'perftools'
3
- PerfTools::CpuProfiler.start("/Users/martinemde/p/ey/engineyard/status_profile")
4
- $:.unshift(File.expand_path('../../lib', __FILE__))
5
- require 'engineyard/cli'
6
-
7
- begin
8
- EY::CLI.start
9
- rescue
10
- exit(1)
11
- end
12
- PerfTools::CpuProfiler.stop