engineyard 2.1.1 → 2.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/engineyard/version.rb +2 -2
- data/lib/vendor/thor/README.md +10 -3
- data/lib/vendor/thor/lib/thor.rb +247 -153
- data/lib/vendor/thor/lib/thor/actions.rb +18 -18
- data/lib/vendor/thor/lib/thor/actions/create_link.rb +3 -0
- data/lib/vendor/thor/lib/thor/actions/directory.rb +31 -10
- data/lib/vendor/thor/lib/thor/actions/empty_directory.rb +3 -19
- data/lib/vendor/thor/lib/thor/actions/file_manipulation.rb +9 -3
- data/lib/vendor/thor/lib/thor/base.rb +99 -88
- data/lib/vendor/thor/lib/thor/{task.rb → command.rb} +19 -15
- data/lib/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +5 -0
- data/lib/vendor/thor/lib/thor/core_ext/io_binary_read.rb +12 -0
- data/lib/vendor/thor/lib/thor/error.rb +4 -11
- data/lib/vendor/thor/lib/thor/group.rb +35 -38
- data/lib/vendor/thor/lib/thor/invocation.rb +28 -26
- data/lib/vendor/thor/lib/thor/parser/options.rb +66 -26
- data/lib/vendor/thor/lib/thor/rake_compat.rb +3 -2
- data/lib/vendor/thor/lib/thor/runner.rb +21 -20
- data/lib/vendor/thor/lib/thor/shell/basic.rb +21 -17
- data/lib/vendor/thor/lib/thor/shell/color.rb +13 -9
- data/lib/vendor/thor/lib/thor/shell/html.rb +13 -9
- data/lib/vendor/thor/lib/thor/util.rb +214 -210
- data/lib/vendor/thor/lib/thor/version.rb +1 -1
- data/lib/vendor/thor/thor.gemspec +22 -24
- metadata +8 -9
- data/lib/vendor/thor/lib/thor/core_ext/dir_escape.rb +0 -0
- data/lib/vendor/thor/lib/thor/core_ext/file_binary_read.rb +0 -9
@@ -1,26 +1,24 @@
|
|
1
|
-
#
|
2
|
-
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib/', __FILE__)
|
3
|
+
$:.unshift lib unless $:.include?(lib)
|
4
|
+
require 'thor/version'
|
3
5
|
|
4
|
-
Gem::Specification.new do |
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
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
|
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{A scripting framework that replaces rake, sake and rubigen}
|
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.6'
|
21
|
+
spec.summary = spec.description
|
22
|
+
spec.test_files = Dir.glob("spec/**/*")
|
23
|
+
spec.version = Thor::VERSION
|
26
24
|
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.1.
|
4
|
+
version: 2.1.2
|
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: 2013-05
|
12
|
+
date: 2013-06-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rest-client
|
@@ -82,7 +82,7 @@ dependencies:
|
|
82
82
|
requirements:
|
83
83
|
- - ~>
|
84
84
|
- !ruby/object:Gem::Version
|
85
|
-
version: 1.0.
|
85
|
+
version: 1.0.12
|
86
86
|
type: :runtime
|
87
87
|
prerelease: false
|
88
88
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -90,7 +90,7 @@ dependencies:
|
|
90
90
|
requirements:
|
91
91
|
- - ~>
|
92
92
|
- !ruby/object:Gem::Version
|
93
|
-
version: 1.0.
|
93
|
+
version: 1.0.12
|
94
94
|
- !ruby/object:Gem::Dependency
|
95
95
|
name: net-ssh
|
96
96
|
requirement: !ruby/object:Gem::Requirement
|
@@ -349,9 +349,9 @@ files:
|
|
349
349
|
- lib/vendor/thor/lib/thor/actions/inject_into_file.rb
|
350
350
|
- lib/vendor/thor/lib/thor/actions.rb
|
351
351
|
- lib/vendor/thor/lib/thor/base.rb
|
352
|
-
- lib/vendor/thor/lib/thor/
|
353
|
-
- lib/vendor/thor/lib/thor/core_ext/file_binary_read.rb
|
352
|
+
- lib/vendor/thor/lib/thor/command.rb
|
354
353
|
- lib/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb
|
354
|
+
- lib/vendor/thor/lib/thor/core_ext/io_binary_read.rb
|
355
355
|
- lib/vendor/thor/lib/thor/core_ext/ordered_hash.rb
|
356
356
|
- lib/vendor/thor/lib/thor/error.rb
|
357
357
|
- lib/vendor/thor/lib/thor/group.rb
|
@@ -367,7 +367,6 @@ files:
|
|
367
367
|
- lib/vendor/thor/lib/thor/shell/color.rb
|
368
368
|
- lib/vendor/thor/lib/thor/shell/html.rb
|
369
369
|
- lib/vendor/thor/lib/thor/shell.rb
|
370
|
-
- lib/vendor/thor/lib/thor/task.rb
|
371
370
|
- lib/vendor/thor/lib/thor/util.rb
|
372
371
|
- lib/vendor/thor/lib/thor/version.rb
|
373
372
|
- lib/vendor/thor/lib/thor.rb
|
@@ -427,7 +426,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
427
426
|
version: '0'
|
428
427
|
segments:
|
429
428
|
- 0
|
430
|
-
hash:
|
429
|
+
hash: 4232735394062201752
|
431
430
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
432
431
|
none: false
|
433
432
|
requirements:
|
@@ -436,7 +435,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
436
435
|
version: '0'
|
437
436
|
segments:
|
438
437
|
- 0
|
439
|
-
hash:
|
438
|
+
hash: 4232735394062201752
|
440
439
|
requirements: []
|
441
440
|
rubyforge_project:
|
442
441
|
rubygems_version: 1.8.25
|
File without changes
|