aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/commands.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-12-10 05:54:46 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-12-10 05:54:46 +0000
commitb1ce7e4d4ada3eedc361d90b637ca06274a0ac3d (patch)
treeaffedc3593d216a6b5c4d1c27f84a0b3c7b19e46 /railties/lib/rails_generator/commands.rb
parentc81fff2468bbf597457bf57cd599d2d4be77c715 (diff)
downloadrails-b1ce7e4d4ada3eedc361d90b637ca06274a0ac3d.tar.gz
rails-b1ce7e4d4ada3eedc361d90b637ca06274a0ac3d.tar.bz2
rails-b1ce7e4d4ada3eedc361d90b637ca06274a0ac3d.zip
Ruby 1.9 compat: File.exists\? -> File.exist\? en masse. References #1689 [Pratik Naik]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8365 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/lib/rails_generator/commands.rb')
-rw-r--r--railties/lib/rails_generator/commands.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/railties/lib/rails_generator/commands.rb b/railties/lib/rails_generator/commands.rb
index 98531d9771..6f90a44b8a 100644
--- a/railties/lib/rails_generator/commands.rb
+++ b/railties/lib/rails_generator/commands.rb
@@ -207,7 +207,7 @@ HELP
# Determine full paths for source and destination files.
source = source_path(relative_source)
destination = destination_path(relative_destination)
- destination_exists = File.exists?(destination)
+ destination_exists = File.exist?(destination)
# If source and destination are identical then we're done.
if destination_exists and identical?(source, destination, &block)
@@ -306,7 +306,7 @@ HELP
# Always directories which exist.
def directory(relative_path)
path = destination_path(relative_path)
- if File.exists?(path)
+ if File.exist?(path)
logger.exists relative_path
else
logger.create relative_path
@@ -415,7 +415,7 @@ end_message
# Remove a file if it exists and is a file.
def file(relative_source, relative_destination, file_options = {})
destination = destination_path(relative_destination)
- if File.exists?(destination)
+ if File.exist?(destination)
logger.rm relative_destination
unless options[:pretend]
if options[:svn]
@@ -450,7 +450,7 @@ end_message
until parts.empty?
partial = File.join(parts)
path = destination_path(partial)
- if File.exists?(path)
+ if File.exist?(path)
if Dir[File.join(path, '*')].empty?
logger.rmdir partial
unless options[:pretend]