bundler_package_git 1.1.pre.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +22 -0
- data/.rvmrc +1 -0
- data/CHANGELOG.md +659 -0
- data/ISSUES.md +47 -0
- data/LICENSE +23 -0
- data/README.md +29 -0
- data/Rakefile +167 -0
- data/UPGRADING.md +103 -0
- data/bin/bundle +22 -0
- data/bundler.gemspec +30 -0
- data/lib/bundler.rb +283 -0
- data/lib/bundler/capistrano.rb +11 -0
- data/lib/bundler/cli.rb +490 -0
- data/lib/bundler/definition.rb +429 -0
- data/lib/bundler/dependency.rb +130 -0
- data/lib/bundler/deployment.rb +53 -0
- data/lib/bundler/dsl.rb +243 -0
- data/lib/bundler/environment.rb +47 -0
- data/lib/bundler/fetcher.rb +101 -0
- data/lib/bundler/gem_helper.rb +146 -0
- data/lib/bundler/graph.rb +130 -0
- data/lib/bundler/index.rb +131 -0
- data/lib/bundler/installer.rb +117 -0
- data/lib/bundler/lazy_specification.rb +71 -0
- data/lib/bundler/lockfile_parser.rb +108 -0
- data/lib/bundler/remote_specification.rb +57 -0
- data/lib/bundler/resolver.rb +470 -0
- data/lib/bundler/rubygems_ext.rb +226 -0
- data/lib/bundler/runtime.rb +201 -0
- data/lib/bundler/settings.rb +117 -0
- data/lib/bundler/setup.rb +16 -0
- data/lib/bundler/shared_helpers.rb +167 -0
- data/lib/bundler/source.rb +675 -0
- data/lib/bundler/spec_set.rb +134 -0
- data/lib/bundler/templates/Executable +16 -0
- data/lib/bundler/templates/Gemfile +4 -0
- data/lib/bundler/templates/newgem/Gemfile.tt +4 -0
- data/lib/bundler/templates/newgem/Rakefile.tt +2 -0
- data/lib/bundler/templates/newgem/bin/newgem.tt +3 -0
- data/lib/bundler/templates/newgem/gitignore.tt +4 -0
- data/lib/bundler/templates/newgem/lib/newgem.rb.tt +7 -0
- data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +7 -0
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +21 -0
- data/lib/bundler/ui.rb +73 -0
- data/lib/bundler/vendor/net/http/faster.rb +27 -0
- data/lib/bundler/vendor/net/http/persistent.rb +464 -0
- data/lib/bundler/vendor/thor.rb +319 -0
- data/lib/bundler/vendor/thor/actions.rb +297 -0
- data/lib/bundler/vendor/thor/actions/create_file.rb +105 -0
- data/lib/bundler/vendor/thor/actions/directory.rb +93 -0
- data/lib/bundler/vendor/thor/actions/empty_directory.rb +134 -0
- data/lib/bundler/vendor/thor/actions/file_manipulation.rb +229 -0
- data/lib/bundler/vendor/thor/actions/inject_into_file.rb +104 -0
- data/lib/bundler/vendor/thor/base.rb +556 -0
- data/lib/bundler/vendor/thor/core_ext/file_binary_read.rb +9 -0
- data/lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb +75 -0
- data/lib/bundler/vendor/thor/core_ext/ordered_hash.rb +100 -0
- data/lib/bundler/vendor/thor/error.rb +30 -0
- data/lib/bundler/vendor/thor/invocation.rb +168 -0
- data/lib/bundler/vendor/thor/parser.rb +4 -0
- data/lib/bundler/vendor/thor/parser/argument.rb +67 -0
- data/lib/bundler/vendor/thor/parser/arguments.rb +161 -0
- data/lib/bundler/vendor/thor/parser/option.rb +120 -0
- data/lib/bundler/vendor/thor/parser/options.rb +174 -0
- data/lib/bundler/vendor/thor/shell.rb +88 -0
- data/lib/bundler/vendor/thor/shell/basic.rb +275 -0
- data/lib/bundler/vendor/thor/shell/color.rb +108 -0
- data/lib/bundler/vendor/thor/shell/html.rb +121 -0
- data/lib/bundler/vendor/thor/task.rb +114 -0
- data/lib/bundler/vendor/thor/util.rb +229 -0
- data/lib/bundler/vendor/thor/version.rb +3 -0
- data/lib/bundler/version.rb +6 -0
- data/lib/bundler/vlad.rb +9 -0
- data/man/bundle-config.ronn +90 -0
- data/man/bundle-exec.ronn +111 -0
- data/man/bundle-install.ronn +314 -0
- data/man/bundle-package.ronn +59 -0
- data/man/bundle-update.ronn +176 -0
- data/man/bundle.ronn +80 -0
- data/man/gemfile.5.ronn +279 -0
- data/man/index.txt +6 -0
- data/spec/cache/gems_spec.rb +219 -0
- data/spec/cache/git_spec.rb +9 -0
- data/spec/cache/path_spec.rb +27 -0
- data/spec/cache/platform_spec.rb +57 -0
- data/spec/install/deploy_spec.rb +197 -0
- data/spec/install/deprecated_spec.rb +37 -0
- data/spec/install/gems/c_ext_spec.rb +48 -0
- data/spec/install/gems/dependency_api_spec.rb +85 -0
- data/spec/install/gems/env_spec.rb +107 -0
- data/spec/install/gems/flex_spec.rb +313 -0
- data/spec/install/gems/groups_spec.rb +245 -0
- data/spec/install/gems/packed_spec.rb +84 -0
- data/spec/install/gems/platform_spec.rb +208 -0
- data/spec/install/gems/resolving_spec.rb +72 -0
- data/spec/install/gems/simple_case_spec.rb +715 -0
- data/spec/install/gems/standalone_spec.rb +162 -0
- data/spec/install/gems/sudo_spec.rb +73 -0
- data/spec/install/gems/win32_spec.rb +26 -0
- data/spec/install/gemspec_spec.rb +108 -0
- data/spec/install/git_spec.rb +571 -0
- data/spec/install/invalid_spec.rb +17 -0
- data/spec/install/path_spec.rb +353 -0
- data/spec/install/upgrade_spec.rb +26 -0
- data/spec/lock/git_spec.rb +35 -0
- data/spec/lock/lockfile_spec.rb +683 -0
- data/spec/other/check_spec.rb +221 -0
- data/spec/other/clean_spec.rb +202 -0
- data/spec/other/config_spec.rb +40 -0
- data/spec/other/console_spec.rb +54 -0
- data/spec/other/exec_spec.rb +241 -0
- data/spec/other/ext_spec.rb +16 -0
- data/spec/other/gem_helper_spec.rb +128 -0
- data/spec/other/help_spec.rb +38 -0
- data/spec/other/init_spec.rb +40 -0
- data/spec/other/newgem_spec.rb +24 -0
- data/spec/other/open_spec.rb +35 -0
- data/spec/other/show_spec.rb +82 -0
- data/spec/pack/gems_spec.rb +54 -0
- data/spec/quality_spec.rb +58 -0
- data/spec/resolver/basic_spec.rb +20 -0
- data/spec/resolver/platform_spec.rb +82 -0
- data/spec/runtime/executable_spec.rb +110 -0
- data/spec/runtime/load_spec.rb +107 -0
- data/spec/runtime/platform_spec.rb +90 -0
- data/spec/runtime/require_spec.rb +231 -0
- data/spec/runtime/setup_spec.rb +688 -0
- data/spec/runtime/with_clean_env_spec.rb +15 -0
- data/spec/spec_helper.rb +85 -0
- data/spec/support/artifice/endpoint.rb +50 -0
- data/spec/support/artifice/endpoint_fallback.rb +22 -0
- data/spec/support/artifice/endpoint_marshal_fail.rb +11 -0
- data/spec/support/artifice/endpoint_redirect.rb +11 -0
- data/spec/support/builders.rb +574 -0
- data/spec/support/fakeweb/rack-1.0.0.marshal +2 -0
- data/spec/support/fakeweb/windows.rb +23 -0
- data/spec/support/helpers.rb +246 -0
- data/spec/support/indexes.rb +112 -0
- data/spec/support/matchers.rb +89 -0
- data/spec/support/path.rb +73 -0
- data/spec/support/platforms.rb +53 -0
- data/spec/support/ruby_ext.rb +20 -0
- data/spec/support/rubygems_ext.rb +35 -0
- data/spec/support/rubygems_hax/platform.rb +11 -0
- data/spec/support/sudo.rb +21 -0
- data/spec/update/gems_spec.rb +121 -0
- data/spec/update/git_spec.rb +196 -0
- data/spec/update/source_spec.rb +51 -0
- metadata +294 -0
@@ -0,0 +1,88 @@
|
|
1
|
+
require 'rbconfig'
|
2
|
+
|
3
|
+
class Thor
|
4
|
+
module Base
|
5
|
+
# Returns the shell used in all Thor classes. If you are in a Unix platform
|
6
|
+
# it will use a colored log, otherwise it will use a basic one without color.
|
7
|
+
#
|
8
|
+
def self.shell
|
9
|
+
@shell ||= if ENV['THOR_SHELL'] && ENV['THOR_SHELL'].size > 0
|
10
|
+
Thor::Shell.const_get(ENV['THOR_SHELL'])
|
11
|
+
elsif RbConfig::CONFIG['host_os'] =~ /mswin|mingw/
|
12
|
+
Thor::Shell::Basic
|
13
|
+
else
|
14
|
+
Thor::Shell::Color
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
# Sets the shell used in all Thor classes.
|
19
|
+
#
|
20
|
+
def self.shell=(klass)
|
21
|
+
@shell = klass
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
module Shell
|
26
|
+
SHELL_DELEGATED_METHODS = [:ask, :yes?, :no?, :say, :say_status, :print_table]
|
27
|
+
|
28
|
+
autoload :Basic, 'thor/shell/basic'
|
29
|
+
autoload :Color, 'thor/shell/color'
|
30
|
+
autoload :HTML, 'thor/shell/html'
|
31
|
+
|
32
|
+
# Add shell to initialize config values.
|
33
|
+
#
|
34
|
+
# ==== Configuration
|
35
|
+
# shell<Object>:: An instance of the shell to be used.
|
36
|
+
#
|
37
|
+
# ==== Examples
|
38
|
+
#
|
39
|
+
# class MyScript < Thor
|
40
|
+
# argument :first, :type => :numeric
|
41
|
+
# end
|
42
|
+
#
|
43
|
+
# MyScript.new [1.0], { :foo => :bar }, :shell => Thor::Shell::Basic.new
|
44
|
+
#
|
45
|
+
def initialize(args=[], options={}, config={})
|
46
|
+
super
|
47
|
+
self.shell = config[:shell]
|
48
|
+
self.shell.base ||= self if self.shell.respond_to?(:base)
|
49
|
+
end
|
50
|
+
|
51
|
+
# Holds the shell for the given Thor instance. If no shell is given,
|
52
|
+
# it gets a default shell from Thor::Base.shell.
|
53
|
+
def shell
|
54
|
+
@shell ||= Thor::Base.shell.new
|
55
|
+
end
|
56
|
+
|
57
|
+
# Sets the shell for this thor class.
|
58
|
+
def shell=(shell)
|
59
|
+
@shell = shell
|
60
|
+
end
|
61
|
+
|
62
|
+
# Common methods that are delegated to the shell.
|
63
|
+
SHELL_DELEGATED_METHODS.each do |method|
|
64
|
+
module_eval <<-METHOD, __FILE__, __LINE__
|
65
|
+
def #{method}(*args)
|
66
|
+
shell.#{method}(*args)
|
67
|
+
end
|
68
|
+
METHOD
|
69
|
+
end
|
70
|
+
|
71
|
+
# Yields the given block with padding.
|
72
|
+
def with_padding
|
73
|
+
shell.padding += 1
|
74
|
+
yield
|
75
|
+
ensure
|
76
|
+
shell.padding -= 1
|
77
|
+
end
|
78
|
+
|
79
|
+
protected
|
80
|
+
|
81
|
+
# Allow shell to be shared between invocations.
|
82
|
+
#
|
83
|
+
def _shared_configuration #:nodoc:
|
84
|
+
super.merge!(:shell => self.shell)
|
85
|
+
end
|
86
|
+
|
87
|
+
end
|
88
|
+
end
|
@@ -0,0 +1,275 @@
|
|
1
|
+
require 'tempfile'
|
2
|
+
|
3
|
+
class Thor
|
4
|
+
module Shell
|
5
|
+
class Basic
|
6
|
+
attr_accessor :base, :padding
|
7
|
+
|
8
|
+
# Initialize base and padding to nil.
|
9
|
+
#
|
10
|
+
def initialize #:nodoc:
|
11
|
+
@base, @padding = nil, 0
|
12
|
+
end
|
13
|
+
|
14
|
+
# Sets the output padding, not allowing less than zero values.
|
15
|
+
#
|
16
|
+
def padding=(value)
|
17
|
+
@padding = [0, value].max
|
18
|
+
end
|
19
|
+
|
20
|
+
# Ask something to the user and receives a response.
|
21
|
+
#
|
22
|
+
# ==== Example
|
23
|
+
# ask("What is your name?")
|
24
|
+
#
|
25
|
+
def ask(statement, color=nil)
|
26
|
+
say("#{statement} ", color)
|
27
|
+
$stdin.gets.strip
|
28
|
+
end
|
29
|
+
|
30
|
+
# Say (print) something to the user. If the sentence ends with a whitespace
|
31
|
+
# or tab character, a new line is not appended (print + flush). Otherwise
|
32
|
+
# are passed straight to puts (behavior got from Highline).
|
33
|
+
#
|
34
|
+
# ==== Example
|
35
|
+
# say("I know you knew that.")
|
36
|
+
#
|
37
|
+
def say(message="", color=nil, force_new_line=(message.to_s !~ /( |\t)$/))
|
38
|
+
message = message.to_s
|
39
|
+
message = set_color(message, color) if color
|
40
|
+
|
41
|
+
spaces = " " * padding
|
42
|
+
|
43
|
+
if force_new_line
|
44
|
+
$stdout.puts(spaces + message)
|
45
|
+
else
|
46
|
+
$stdout.print(spaces + message)
|
47
|
+
end
|
48
|
+
$stdout.flush
|
49
|
+
end
|
50
|
+
|
51
|
+
# Say a status with the given color and appends the message. Since this
|
52
|
+
# method is used frequently by actions, it allows nil or false to be given
|
53
|
+
# in log_status, avoiding the message from being shown. If a Symbol is
|
54
|
+
# given in log_status, it's used as the color.
|
55
|
+
#
|
56
|
+
def say_status(status, message, log_status=true)
|
57
|
+
return if quiet? || log_status == false
|
58
|
+
spaces = " " * (padding + 1)
|
59
|
+
color = log_status.is_a?(Symbol) ? log_status : :green
|
60
|
+
|
61
|
+
status = status.to_s.rjust(12)
|
62
|
+
status = set_color status, color, true if color
|
63
|
+
|
64
|
+
$stdout.puts "#{status}#{spaces}#{message}"
|
65
|
+
$stdout.flush
|
66
|
+
end
|
67
|
+
|
68
|
+
# Make a question the to user and returns true if the user replies "y" or
|
69
|
+
# "yes".
|
70
|
+
#
|
71
|
+
def yes?(statement, color=nil)
|
72
|
+
ask(statement, color) =~ is?(:yes)
|
73
|
+
end
|
74
|
+
|
75
|
+
# Make a question the to user and returns true if the user replies "n" or
|
76
|
+
# "no".
|
77
|
+
#
|
78
|
+
def no?(statement, color=nil)
|
79
|
+
!yes?(statement, color)
|
80
|
+
end
|
81
|
+
|
82
|
+
# Prints a table.
|
83
|
+
#
|
84
|
+
# ==== Parameters
|
85
|
+
# Array[Array[String, String, ...]]
|
86
|
+
#
|
87
|
+
# ==== Options
|
88
|
+
# ident<Integer>:: Indent the first column by ident value.
|
89
|
+
# colwidth<Integer>:: Force the first column to colwidth spaces wide.
|
90
|
+
#
|
91
|
+
def print_table(table, options={})
|
92
|
+
return if table.empty?
|
93
|
+
|
94
|
+
formats, ident, colwidth = [], options[:ident].to_i, options[:colwidth]
|
95
|
+
options[:truncate] = terminal_width if options[:truncate] == true
|
96
|
+
|
97
|
+
formats << "%-#{colwidth + 2}s" if colwidth
|
98
|
+
start = colwidth ? 1 : 0
|
99
|
+
|
100
|
+
start.upto(table.first.length - 2) do |i|
|
101
|
+
maxima ||= table.max{|a,b| a[i].size <=> b[i].size }[i].size
|
102
|
+
formats << "%-#{maxima + 2}s"
|
103
|
+
end
|
104
|
+
|
105
|
+
formats[0] = formats[0].insert(0, " " * ident)
|
106
|
+
formats << "%s"
|
107
|
+
|
108
|
+
table.each do |row|
|
109
|
+
sentence = ""
|
110
|
+
|
111
|
+
row.each_with_index do |column, i|
|
112
|
+
sentence << formats[i] % column.to_s
|
113
|
+
end
|
114
|
+
|
115
|
+
sentence = truncate(sentence, options[:truncate]) if options[:truncate]
|
116
|
+
$stdout.puts sentence
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
120
|
+
# Prints a long string, word-wrapping the text to the current width of the
|
121
|
+
# terminal display. Ideal for printing heredocs.
|
122
|
+
#
|
123
|
+
# ==== Parameters
|
124
|
+
# String
|
125
|
+
#
|
126
|
+
# ==== Options
|
127
|
+
# ident<Integer>:: Indent each line of the printed paragraph by ident value.
|
128
|
+
#
|
129
|
+
def print_wrapped(message, options={})
|
130
|
+
ident = options[:ident] || 0
|
131
|
+
width = terminal_width - ident
|
132
|
+
paras = message.split("\n\n")
|
133
|
+
|
134
|
+
paras.map! do |unwrapped|
|
135
|
+
unwrapped.strip.gsub(/\n/, " ").squeeze(" ").
|
136
|
+
gsub(/.{1,#{width}}(?:\s|\Z)/){($& + 5.chr).
|
137
|
+
gsub(/\n\005/,"\n").gsub(/\005/,"\n")}
|
138
|
+
end
|
139
|
+
|
140
|
+
paras.each do |para|
|
141
|
+
para.split("\n").each do |line|
|
142
|
+
$stdout.puts line.insert(0, " " * ident)
|
143
|
+
end
|
144
|
+
$stdout.puts unless para == paras.last
|
145
|
+
end
|
146
|
+
end
|
147
|
+
|
148
|
+
# Deals with file collision and returns true if the file should be
|
149
|
+
# overwriten and false otherwise. If a block is given, it uses the block
|
150
|
+
# response as the content for the diff.
|
151
|
+
#
|
152
|
+
# ==== Parameters
|
153
|
+
# destination<String>:: the destination file to solve conflicts
|
154
|
+
# block<Proc>:: an optional block that returns the value to be used in diff
|
155
|
+
#
|
156
|
+
def file_collision(destination)
|
157
|
+
return true if @always_force
|
158
|
+
options = block_given? ? "[Ynaqdh]" : "[Ynaqh]"
|
159
|
+
|
160
|
+
while true
|
161
|
+
answer = ask %[Overwrite #{destination}? (enter "h" for help) #{options}]
|
162
|
+
|
163
|
+
case answer
|
164
|
+
when is?(:yes), is?(:force), ""
|
165
|
+
return true
|
166
|
+
when is?(:no), is?(:skip)
|
167
|
+
return false
|
168
|
+
when is?(:always)
|
169
|
+
return @always_force = true
|
170
|
+
when is?(:quit)
|
171
|
+
say 'Aborting...'
|
172
|
+
raise SystemExit
|
173
|
+
when is?(:diff)
|
174
|
+
show_diff(destination, yield) if block_given?
|
175
|
+
say 'Retrying...'
|
176
|
+
else
|
177
|
+
say file_collision_help
|
178
|
+
end
|
179
|
+
end
|
180
|
+
end
|
181
|
+
|
182
|
+
# Called if something goes wrong during the execution. This is used by Thor
|
183
|
+
# internally and should not be used inside your scripts. If someone went
|
184
|
+
# wrong, you can always raise an exception. If you raise a Thor::Error, it
|
185
|
+
# will be rescued and wrapped in the method below.
|
186
|
+
#
|
187
|
+
def error(statement)
|
188
|
+
$stderr.puts statement
|
189
|
+
end
|
190
|
+
|
191
|
+
# Apply color to the given string with optional bold. Disabled in the
|
192
|
+
# Thor::Shell::Basic class.
|
193
|
+
#
|
194
|
+
def set_color(string, color, bold=false) #:nodoc:
|
195
|
+
string
|
196
|
+
end
|
197
|
+
|
198
|
+
protected
|
199
|
+
|
200
|
+
def is?(value) #:nodoc:
|
201
|
+
value = value.to_s
|
202
|
+
|
203
|
+
if value.size == 1
|
204
|
+
/\A#{value}\z/i
|
205
|
+
else
|
206
|
+
/\A(#{value}|#{value[0,1]})\z/i
|
207
|
+
end
|
208
|
+
end
|
209
|
+
|
210
|
+
def file_collision_help #:nodoc:
|
211
|
+
<<HELP
|
212
|
+
Y - yes, overwrite
|
213
|
+
n - no, do not overwrite
|
214
|
+
a - all, overwrite this and all others
|
215
|
+
q - quit, abort
|
216
|
+
d - diff, show the differences between the old and the new
|
217
|
+
h - help, show this help
|
218
|
+
HELP
|
219
|
+
end
|
220
|
+
|
221
|
+
def show_diff(destination, content) #:nodoc:
|
222
|
+
diff_cmd = ENV['THOR_DIFF'] || ENV['RAILS_DIFF'] || 'diff -u'
|
223
|
+
|
224
|
+
Tempfile.open(File.basename(destination), File.dirname(destination)) do |temp|
|
225
|
+
temp.write content
|
226
|
+
temp.rewind
|
227
|
+
system %(#{diff_cmd} "#{destination}" "#{temp.path}")
|
228
|
+
end
|
229
|
+
end
|
230
|
+
|
231
|
+
def quiet? #:nodoc:
|
232
|
+
base && base.options[:quiet]
|
233
|
+
end
|
234
|
+
|
235
|
+
# This code was copied from Rake, available under MIT-LICENSE
|
236
|
+
# Copyright (c) 2003, 2004 Jim Weirich
|
237
|
+
def terminal_width
|
238
|
+
if ENV['THOR_COLUMNS']
|
239
|
+
result = ENV['THOR_COLUMNS'].to_i
|
240
|
+
else
|
241
|
+
result = unix? ? dynamic_width : 80
|
242
|
+
end
|
243
|
+
(result < 10) ? 80 : result
|
244
|
+
rescue
|
245
|
+
80
|
246
|
+
end
|
247
|
+
|
248
|
+
# Calculate the dynamic width of the terminal
|
249
|
+
def dynamic_width
|
250
|
+
@dynamic_width ||= (dynamic_width_stty.nonzero? || dynamic_width_tput)
|
251
|
+
end
|
252
|
+
|
253
|
+
def dynamic_width_stty
|
254
|
+
%x{stty size 2>/dev/null}.split[1].to_i
|
255
|
+
end
|
256
|
+
|
257
|
+
def dynamic_width_tput
|
258
|
+
%x{tput cols 2>/dev/null}.to_i
|
259
|
+
end
|
260
|
+
|
261
|
+
def unix?
|
262
|
+
RUBY_PLATFORM =~ /(aix|darwin|linux|(net|free|open)bsd|cygwin|solaris|irix|hpux)/i
|
263
|
+
end
|
264
|
+
|
265
|
+
def truncate(string, width)
|
266
|
+
if string.length <= width
|
267
|
+
string
|
268
|
+
else
|
269
|
+
( string[0, width-3] || "" ) + "..."
|
270
|
+
end
|
271
|
+
end
|
272
|
+
|
273
|
+
end
|
274
|
+
end
|
275
|
+
end
|
@@ -0,0 +1,108 @@
|
|
1
|
+
require 'thor/shell/basic'
|
2
|
+
|
3
|
+
class Thor
|
4
|
+
module Shell
|
5
|
+
# Inherit from Thor::Shell::Basic and add set_color behavior. Check
|
6
|
+
# Thor::Shell::Basic to see all available methods.
|
7
|
+
#
|
8
|
+
class Color < Basic
|
9
|
+
# Embed in a String to clear all previous ANSI sequences.
|
10
|
+
CLEAR = "\e[0m"
|
11
|
+
# The start of an ANSI bold sequence.
|
12
|
+
BOLD = "\e[1m"
|
13
|
+
|
14
|
+
# Set the terminal's foreground ANSI color to black.
|
15
|
+
BLACK = "\e[30m"
|
16
|
+
# Set the terminal's foreground ANSI color to red.
|
17
|
+
RED = "\e[31m"
|
18
|
+
# Set the terminal's foreground ANSI color to green.
|
19
|
+
GREEN = "\e[32m"
|
20
|
+
# Set the terminal's foreground ANSI color to yellow.
|
21
|
+
YELLOW = "\e[33m"
|
22
|
+
# Set the terminal's foreground ANSI color to blue.
|
23
|
+
BLUE = "\e[34m"
|
24
|
+
# Set the terminal's foreground ANSI color to magenta.
|
25
|
+
MAGENTA = "\e[35m"
|
26
|
+
# Set the terminal's foreground ANSI color to cyan.
|
27
|
+
CYAN = "\e[36m"
|
28
|
+
# Set the terminal's foreground ANSI color to white.
|
29
|
+
WHITE = "\e[37m"
|
30
|
+
|
31
|
+
# Set the terminal's background ANSI color to black.
|
32
|
+
ON_BLACK = "\e[40m"
|
33
|
+
# Set the terminal's background ANSI color to red.
|
34
|
+
ON_RED = "\e[41m"
|
35
|
+
# Set the terminal's background ANSI color to green.
|
36
|
+
ON_GREEN = "\e[42m"
|
37
|
+
# Set the terminal's background ANSI color to yellow.
|
38
|
+
ON_YELLOW = "\e[43m"
|
39
|
+
# Set the terminal's background ANSI color to blue.
|
40
|
+
ON_BLUE = "\e[44m"
|
41
|
+
# Set the terminal's background ANSI color to magenta.
|
42
|
+
ON_MAGENTA = "\e[45m"
|
43
|
+
# Set the terminal's background ANSI color to cyan.
|
44
|
+
ON_CYAN = "\e[46m"
|
45
|
+
# Set the terminal's background ANSI color to white.
|
46
|
+
ON_WHITE = "\e[47m"
|
47
|
+
|
48
|
+
# Set color by using a string or one of the defined constants. If a third
|
49
|
+
# option is set to true, it also adds bold to the string. This is based
|
50
|
+
# on Highline implementation and it automatically appends CLEAR to the end
|
51
|
+
# of the returned String.
|
52
|
+
#
|
53
|
+
def set_color(string, color, bold=false)
|
54
|
+
color = self.class.const_get(color.to_s.upcase) if color.is_a?(Symbol)
|
55
|
+
bold = bold ? BOLD : ""
|
56
|
+
"#{bold}#{color}#{string}#{CLEAR}"
|
57
|
+
end
|
58
|
+
|
59
|
+
protected
|
60
|
+
|
61
|
+
# Overwrite show_diff to show diff with colors if Diff::LCS is
|
62
|
+
# available.
|
63
|
+
#
|
64
|
+
def show_diff(destination, content) #:nodoc:
|
65
|
+
if diff_lcs_loaded? && ENV['THOR_DIFF'].nil? && ENV['RAILS_DIFF'].nil?
|
66
|
+
actual = File.binread(destination).to_s.split("\n")
|
67
|
+
content = content.to_s.split("\n")
|
68
|
+
|
69
|
+
Diff::LCS.sdiff(actual, content).each do |diff|
|
70
|
+
output_diff_line(diff)
|
71
|
+
end
|
72
|
+
else
|
73
|
+
super
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
def output_diff_line(diff) #:nodoc:
|
78
|
+
case diff.action
|
79
|
+
when '-'
|
80
|
+
say "- #{diff.old_element.chomp}", :red, true
|
81
|
+
when '+'
|
82
|
+
say "+ #{diff.new_element.chomp}", :green, true
|
83
|
+
when '!'
|
84
|
+
say "- #{diff.old_element.chomp}", :red, true
|
85
|
+
say "+ #{diff.new_element.chomp}", :green, true
|
86
|
+
else
|
87
|
+
say " #{diff.old_element.chomp}", nil, true
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
# Check if Diff::LCS is loaded. If it is, use it to create pretty output
|
92
|
+
# for diff.
|
93
|
+
#
|
94
|
+
def diff_lcs_loaded? #:nodoc:
|
95
|
+
return true if defined?(Diff::LCS)
|
96
|
+
return @diff_lcs_loaded unless @diff_lcs_loaded.nil?
|
97
|
+
|
98
|
+
@diff_lcs_loaded = begin
|
99
|
+
require 'diff/lcs'
|
100
|
+
true
|
101
|
+
rescue LoadError
|
102
|
+
false
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|