bundler-maglev- 1.0.21

Sign up to get free protection for your applications and to get access to all the features.
Files changed (144) hide show
  1. data/.gitignore +22 -0
  2. data/.travis.yml +32 -0
  3. data/CHANGELOG.md +805 -0
  4. data/ISSUES.md +62 -0
  5. data/LICENSE +23 -0
  6. data/README.md +29 -0
  7. data/Rakefile +212 -0
  8. data/UPGRADING.md +103 -0
  9. data/bin/bundle +22 -0
  10. data/bundler.gemspec +30 -0
  11. data/lib/bundler.rb +286 -0
  12. data/lib/bundler/capistrano.rb +11 -0
  13. data/lib/bundler/cli.rb +520 -0
  14. data/lib/bundler/definition.rb +438 -0
  15. data/lib/bundler/dependency.rb +134 -0
  16. data/lib/bundler/deployment.rb +58 -0
  17. data/lib/bundler/dsl.rb +257 -0
  18. data/lib/bundler/environment.rb +47 -0
  19. data/lib/bundler/gem_helper.rb +151 -0
  20. data/lib/bundler/gem_installer.rb +9 -0
  21. data/lib/bundler/gem_tasks.rb +2 -0
  22. data/lib/bundler/graph.rb +130 -0
  23. data/lib/bundler/index.rb +138 -0
  24. data/lib/bundler/installer.rb +97 -0
  25. data/lib/bundler/lazy_specification.rb +74 -0
  26. data/lib/bundler/lockfile_parser.rb +108 -0
  27. data/lib/bundler/remote_specification.rb +59 -0
  28. data/lib/bundler/resolver.rb +464 -0
  29. data/lib/bundler/rubygems_ext.rb +237 -0
  30. data/lib/bundler/rubygems_integration.rb +349 -0
  31. data/lib/bundler/runtime.rb +152 -0
  32. data/lib/bundler/settings.rb +115 -0
  33. data/lib/bundler/setup.rb +23 -0
  34. data/lib/bundler/shared_helpers.rb +71 -0
  35. data/lib/bundler/source.rb +708 -0
  36. data/lib/bundler/spec_set.rb +135 -0
  37. data/lib/bundler/templates/Executable +16 -0
  38. data/lib/bundler/templates/Gemfile +4 -0
  39. data/lib/bundler/templates/newgem/Gemfile.tt +4 -0
  40. data/lib/bundler/templates/newgem/Rakefile.tt +1 -0
  41. data/lib/bundler/templates/newgem/bin/newgem.tt +3 -0
  42. data/lib/bundler/templates/newgem/gitignore.tt +4 -0
  43. data/lib/bundler/templates/newgem/lib/newgem.rb.tt +9 -0
  44. data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +7 -0
  45. data/lib/bundler/templates/newgem/newgem.gemspec.tt +24 -0
  46. data/lib/bundler/ui.rb +73 -0
  47. data/lib/bundler/vendor/thor.rb +358 -0
  48. data/lib/bundler/vendor/thor/actions.rb +314 -0
  49. data/lib/bundler/vendor/thor/actions/create_file.rb +105 -0
  50. data/lib/bundler/vendor/thor/actions/create_link.rb +57 -0
  51. data/lib/bundler/vendor/thor/actions/directory.rb +93 -0
  52. data/lib/bundler/vendor/thor/actions/empty_directory.rb +134 -0
  53. data/lib/bundler/vendor/thor/actions/file_manipulation.rb +270 -0
  54. data/lib/bundler/vendor/thor/actions/inject_into_file.rb +109 -0
  55. data/lib/bundler/vendor/thor/base.rb +576 -0
  56. data/lib/bundler/vendor/thor/core_ext/file_binary_read.rb +9 -0
  57. data/lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb +75 -0
  58. data/lib/bundler/vendor/thor/core_ext/ordered_hash.rb +100 -0
  59. data/lib/bundler/vendor/thor/error.rb +30 -0
  60. data/lib/bundler/vendor/thor/group.rb +273 -0
  61. data/lib/bundler/vendor/thor/invocation.rb +168 -0
  62. data/lib/bundler/vendor/thor/parser.rb +4 -0
  63. data/lib/bundler/vendor/thor/parser/argument.rb +67 -0
  64. data/lib/bundler/vendor/thor/parser/arguments.rb +161 -0
  65. data/lib/bundler/vendor/thor/parser/option.rb +120 -0
  66. data/lib/bundler/vendor/thor/parser/options.rb +175 -0
  67. data/lib/bundler/vendor/thor/rake_compat.rb +66 -0
  68. data/lib/bundler/vendor/thor/runner.rb +309 -0
  69. data/lib/bundler/vendor/thor/shell.rb +88 -0
  70. data/lib/bundler/vendor/thor/shell/basic.rb +302 -0
  71. data/lib/bundler/vendor/thor/shell/color.rb +108 -0
  72. data/lib/bundler/vendor/thor/shell/html.rb +121 -0
  73. data/lib/bundler/vendor/thor/task.rb +113 -0
  74. data/lib/bundler/vendor/thor/util.rb +229 -0
  75. data/lib/bundler/vendor/thor/version.rb +3 -0
  76. data/lib/bundler/vendored_thor.rb +7 -0
  77. data/lib/bundler/version.rb +6 -0
  78. data/lib/bundler/vlad.rb +11 -0
  79. data/man/bundle-config.ronn +90 -0
  80. data/man/bundle-exec.ronn +111 -0
  81. data/man/bundle-install.ronn +317 -0
  82. data/man/bundle-package.ronn +59 -0
  83. data/man/bundle-update.ronn +176 -0
  84. data/man/bundle.ronn +80 -0
  85. data/man/gemfile.5.ronn +284 -0
  86. data/man/index.txt +6 -0
  87. data/spec/bundler/gem_helper_spec.rb +143 -0
  88. data/spec/cache/gems_spec.rb +230 -0
  89. data/spec/cache/git_spec.rb +12 -0
  90. data/spec/cache/path_spec.rb +27 -0
  91. data/spec/cache/platform_spec.rb +57 -0
  92. data/spec/install/deploy_spec.rb +197 -0
  93. data/spec/install/deprecated_spec.rb +37 -0
  94. data/spec/install/gems/c_ext_spec.rb +48 -0
  95. data/spec/install/gems/env_spec.rb +107 -0
  96. data/spec/install/gems/flex_spec.rb +313 -0
  97. data/spec/install/gems/groups_spec.rb +259 -0
  98. data/spec/install/gems/packed_spec.rb +84 -0
  99. data/spec/install/gems/platform_spec.rb +192 -0
  100. data/spec/install/gems/resolving_spec.rb +72 -0
  101. data/spec/install/gems/simple_case_spec.rb +770 -0
  102. data/spec/install/gems/sudo_spec.rb +74 -0
  103. data/spec/install/gems/win32_spec.rb +26 -0
  104. data/spec/install/gemspec_spec.rb +125 -0
  105. data/spec/install/git_spec.rb +570 -0
  106. data/spec/install/invalid_spec.rb +35 -0
  107. data/spec/install/path_spec.rb +405 -0
  108. data/spec/install/upgrade_spec.rb +26 -0
  109. data/spec/lock/git_spec.rb +35 -0
  110. data/spec/lock/lockfile_spec.rb +739 -0
  111. data/spec/other/check_spec.rb +221 -0
  112. data/spec/other/config_spec.rb +40 -0
  113. data/spec/other/console_spec.rb +54 -0
  114. data/spec/other/exec_spec.rb +248 -0
  115. data/spec/other/ext_spec.rb +37 -0
  116. data/spec/other/help_spec.rb +39 -0
  117. data/spec/other/init_spec.rb +40 -0
  118. data/spec/other/newgem_spec.rb +46 -0
  119. data/spec/other/open_spec.rb +35 -0
  120. data/spec/other/show_spec.rb +82 -0
  121. data/spec/quality_spec.rb +62 -0
  122. data/spec/resolver/basic_spec.rb +20 -0
  123. data/spec/resolver/platform_spec.rb +82 -0
  124. data/spec/runtime/executable_spec.rb +110 -0
  125. data/spec/runtime/load_spec.rb +107 -0
  126. data/spec/runtime/platform_spec.rb +90 -0
  127. data/spec/runtime/require_spec.rb +231 -0
  128. data/spec/runtime/setup_spec.rb +730 -0
  129. data/spec/runtime/with_clean_env_spec.rb +15 -0
  130. data/spec/spec_helper.rb +92 -0
  131. data/spec/support/builders.rb +597 -0
  132. data/spec/support/helpers.rb +239 -0
  133. data/spec/support/indexes.rb +112 -0
  134. data/spec/support/matchers.rb +77 -0
  135. data/spec/support/path.rb +71 -0
  136. data/spec/support/platforms.rb +53 -0
  137. data/spec/support/ruby_ext.rb +20 -0
  138. data/spec/support/rubygems_ext.rb +37 -0
  139. data/spec/support/rubygems_hax/platform.rb +11 -0
  140. data/spec/support/sudo.rb +21 -0
  141. data/spec/update/gems_spec.rb +122 -0
  142. data/spec/update/git_spec.rb +196 -0
  143. data/spec/update/source_spec.rb +51 -0
  144. metadata +296 -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,302 @@
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
+ # Mute everything that's inside given block
15
+ #
16
+ def mute
17
+ @mute = true
18
+ yield
19
+ ensure
20
+ @mute = false
21
+ end
22
+
23
+ # Check if base is muted
24
+ #
25
+ def mute?
26
+ @mute
27
+ end
28
+
29
+ # Sets the output padding, not allowing less than zero values.
30
+ #
31
+ def padding=(value)
32
+ @padding = [0, value].max
33
+ end
34
+
35
+ # Ask something to the user and receives a response.
36
+ #
37
+ # ==== Example
38
+ # ask("What is your name?")
39
+ #
40
+ def ask(statement, color=nil)
41
+ say("#{statement} ", color)
42
+ stdin.gets.strip
43
+ end
44
+
45
+ # Say (print) something to the user. If the sentence ends with a whitespace
46
+ # or tab character, a new line is not appended (print + flush). Otherwise
47
+ # are passed straight to puts (behavior got from Highline).
48
+ #
49
+ # ==== Example
50
+ # say("I know you knew that.")
51
+ #
52
+ def say(message="", color=nil, force_new_line=(message.to_s !~ /( |\t)$/))
53
+ message = message.to_s
54
+ message = set_color(message, color) if color
55
+
56
+ spaces = " " * padding
57
+
58
+ if force_new_line
59
+ stdout.puts(spaces + message)
60
+ else
61
+ stdout.print(spaces + message)
62
+ end
63
+ stdout.flush
64
+ end
65
+
66
+ # Say a status with the given color and appends the message. Since this
67
+ # method is used frequently by actions, it allows nil or false to be given
68
+ # in log_status, avoiding the message from being shown. If a Symbol is
69
+ # given in log_status, it's used as the color.
70
+ #
71
+ def say_status(status, message, log_status=true)
72
+ return if quiet? || log_status == false
73
+ spaces = " " * (padding + 1)
74
+ color = log_status.is_a?(Symbol) ? log_status : :green
75
+
76
+ status = status.to_s.rjust(12)
77
+ status = set_color status, color, true if color
78
+
79
+ stdout.puts "#{status}#{spaces}#{message}"
80
+ stdout.flush
81
+ end
82
+
83
+ # Make a question the to user and returns true if the user replies "y" or
84
+ # "yes".
85
+ #
86
+ def yes?(statement, color=nil)
87
+ !!(ask(statement, color) =~ is?(:yes))
88
+ end
89
+
90
+ # Make a question the to user and returns true if the user replies "n" or
91
+ # "no".
92
+ #
93
+ def no?(statement, color=nil)
94
+ !yes?(statement, color)
95
+ end
96
+
97
+ # Prints a table.
98
+ #
99
+ # ==== Parameters
100
+ # Array[Array[String, String, ...]]
101
+ #
102
+ # ==== Options
103
+ # ident<Integer>:: Indent the first column by ident value.
104
+ # colwidth<Integer>:: Force the first column to colwidth spaces wide.
105
+ #
106
+ def print_table(table, options={})
107
+ return if table.empty?
108
+
109
+ formats, ident, colwidth = [], options[:ident].to_i, options[:colwidth]
110
+ options[:truncate] = terminal_width if options[:truncate] == true
111
+
112
+ formats << "%-#{colwidth + 2}s" if colwidth
113
+ start = colwidth ? 1 : 0
114
+
115
+ start.upto(table.first.length - 2) do |i|
116
+ maxima ||= table.max{|a,b| a[i].size <=> b[i].size }[i].size
117
+ formats << "%-#{maxima + 2}s"
118
+ end
119
+
120
+ formats[0] = formats[0].insert(0, " " * ident)
121
+ formats << "%s"
122
+
123
+ table.each do |row|
124
+ sentence = ""
125
+
126
+ row.each_with_index do |column, i|
127
+ sentence << formats[i] % column.to_s
128
+ end
129
+
130
+ sentence = truncate(sentence, options[:truncate]) if options[:truncate]
131
+ stdout.puts sentence
132
+ end
133
+ end
134
+
135
+ # Prints a long string, word-wrapping the text to the current width of the
136
+ # terminal display. Ideal for printing heredocs.
137
+ #
138
+ # ==== Parameters
139
+ # String
140
+ #
141
+ # ==== Options
142
+ # ident<Integer>:: Indent each line of the printed paragraph by ident value.
143
+ #
144
+ def print_wrapped(message, options={})
145
+ ident = options[:ident] || 0
146
+ width = terminal_width - ident
147
+ paras = message.split("\n\n")
148
+
149
+ paras.map! do |unwrapped|
150
+ unwrapped.strip.gsub(/\n/, " ").squeeze(" ").
151
+ gsub(/.{1,#{width}}(?:\s|\Z)/){($& + 5.chr).
152
+ gsub(/\n\005/,"\n").gsub(/\005/,"\n")}
153
+ end
154
+
155
+ paras.each do |para|
156
+ para.split("\n").each do |line|
157
+ stdout.puts line.insert(0, " " * ident)
158
+ end
159
+ stdout.puts unless para == paras.last
160
+ end
161
+ end
162
+
163
+ # Deals with file collision and returns true if the file should be
164
+ # overwriten and false otherwise. If a block is given, it uses the block
165
+ # response as the content for the diff.
166
+ #
167
+ # ==== Parameters
168
+ # destination<String>:: the destination file to solve conflicts
169
+ # block<Proc>:: an optional block that returns the value to be used in diff
170
+ #
171
+ def file_collision(destination)
172
+ return true if @always_force
173
+ options = block_given? ? "[Ynaqdh]" : "[Ynaqh]"
174
+
175
+ while true
176
+ answer = ask %[Overwrite #{destination}? (enter "h" for help) #{options}]
177
+
178
+ case answer
179
+ when is?(:yes), is?(:force), ""
180
+ return true
181
+ when is?(:no), is?(:skip)
182
+ return false
183
+ when is?(:always)
184
+ return @always_force = true
185
+ when is?(:quit)
186
+ say 'Aborting...'
187
+ raise SystemExit
188
+ when is?(:diff)
189
+ show_diff(destination, yield) if block_given?
190
+ say 'Retrying...'
191
+ else
192
+ say file_collision_help
193
+ end
194
+ end
195
+ end
196
+
197
+ # Called if something goes wrong during the execution. This is used by Thor
198
+ # internally and should not be used inside your scripts. If something went
199
+ # wrong, you can always raise an exception. If you raise a Thor::Error, it
200
+ # will be rescued and wrapped in the method below.
201
+ #
202
+ def error(statement)
203
+ stderr.puts statement
204
+ end
205
+
206
+ # Apply color to the given string with optional bold. Disabled in the
207
+ # Thor::Shell::Basic class.
208
+ #
209
+ def set_color(string, color, bold=false) #:nodoc:
210
+ string
211
+ end
212
+
213
+ protected
214
+
215
+ def stdout
216
+ $stdout
217
+ end
218
+
219
+ def stdin
220
+ $stdin
221
+ end
222
+
223
+ def stderr
224
+ $stderr
225
+ end
226
+
227
+ def is?(value) #:nodoc:
228
+ value = value.to_s
229
+
230
+ if value.size == 1
231
+ /\A#{value}\z/i
232
+ else
233
+ /\A(#{value}|#{value[0,1]})\z/i
234
+ end
235
+ end
236
+
237
+ def file_collision_help #:nodoc:
238
+ <<HELP
239
+ Y - yes, overwrite
240
+ n - no, do not overwrite
241
+ a - all, overwrite this and all others
242
+ q - quit, abort
243
+ d - diff, show the differences between the old and the new
244
+ h - help, show this help
245
+ HELP
246
+ end
247
+
248
+ def show_diff(destination, content) #:nodoc:
249
+ diff_cmd = ENV['THOR_DIFF'] || ENV['RAILS_DIFF'] || 'diff -u'
250
+
251
+ Tempfile.open(File.basename(destination), File.dirname(destination)) do |temp|
252
+ temp.write content
253
+ temp.rewind
254
+ system %(#{diff_cmd} "#{destination}" "#{temp.path}")
255
+ end
256
+ end
257
+
258
+ def quiet? #:nodoc:
259
+ mute? || (base && base.options[:quiet])
260
+ end
261
+
262
+ # This code was copied from Rake, available under MIT-LICENSE
263
+ # Copyright (c) 2003, 2004 Jim Weirich
264
+ def terminal_width
265
+ if ENV['THOR_COLUMNS']
266
+ result = ENV['THOR_COLUMNS'].to_i
267
+ else
268
+ result = unix? ? dynamic_width : 80
269
+ end
270
+ (result < 10) ? 80 : result
271
+ rescue
272
+ 80
273
+ end
274
+
275
+ # Calculate the dynamic width of the terminal
276
+ def dynamic_width
277
+ @dynamic_width ||= (dynamic_width_stty.nonzero? || dynamic_width_tput)
278
+ end
279
+
280
+ def dynamic_width_stty
281
+ %x{stty size 2>/dev/null}.split[1].to_i
282
+ end
283
+
284
+ def dynamic_width_tput
285
+ %x{tput cols 2>/dev/null}.to_i
286
+ end
287
+
288
+ def unix?
289
+ RUBY_PLATFORM =~ /(aix|darwin|linux|(net|free|open)bsd|cygwin|solaris|irix|hpux)/i
290
+ end
291
+
292
+ def truncate(string, width)
293
+ if string.length <= width
294
+ string
295
+ else
296
+ ( string[0, width-3] || "" ) + "..."
297
+ end
298
+ end
299
+
300
+ end
301
+ end
302
+ 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