Skip to content

Commit

Permalink
More Warnings removed for ruby trunk
Browse files Browse the repository at this point in the history
Same as 4d4ff53
  • Loading branch information
arunagw committed Nov 1, 2013
1 parent 026b6da commit c10a781
Show file tree
Hide file tree
Showing 19 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ gem 'dalli', '>= 2.2.1'

# Add your own local bundler stuff
local_gemfile = File.dirname(__FILE__) + "/.Gemfile"
instance_eval File.read local_gemfile if File.exists? local_gemfile
instance_eval File.read local_gemfile if File.exist? local_gemfile

group :test do
platforms :mri_19 do
Expand Down
2 changes: 1 addition & 1 deletion activerecord/test/cases/tasks/postgresql_rake_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def test_structure_dump
@connection.expects(:schema_search_path).returns("foo")

ActiveRecord::Tasks::DatabaseTasks.structure_dump(@configuration, filename)
assert File.exists?(filename)
assert File.exist?(filename)
ensure
FileUtils.rm(filename)
end
Expand Down
2 changes: 1 addition & 1 deletion railties/bin/rails
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

git_path = File.join(File.expand_path('../../..', __FILE__), '.git')

if File.exists?(git_path)
if File.exist?(git_path)
railties_path = File.expand_path('../../lib', __FILE__)
$:.unshift(railties_path)
end
Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails/app_rails_loader.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def self.exec_app_rails
end

def self.find_executable
EXECUTABLES.find { |exe| File.exists?(exe) }
EXECUTABLES.find { |exe| File.exist?(exe) }
end
end
end
2 changes: 1 addition & 1 deletion railties/lib/rails/commands/commands_tasks.rb
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def generate_or_destroy(command)
# This allows us to run `rails server` from other directories, but still get
# the main config.ru and properly set the tmp directory.
def set_application_directory!
Dir.chdir(File.expand_path('../../', APP_PATH)) unless File.exists?(File.expand_path("config.ru"))
Dir.chdir(File.expand_path('../../', APP_PATH)) unless File.exist?(File.expand_path("config.ru"))
end

def require_application_and_environment!
Expand Down
6 changes: 3 additions & 3 deletions railties/lib/rails/generators/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def self.default_source_root
return unless base_name && generator_name
return unless default_generator_root
path = File.join(default_generator_root, 'templates')
path if File.exists?(path)
path if File.exist?(path)
end

# Returns the base root for a common set of generators. This is used to dynamically
Expand Down Expand Up @@ -369,12 +369,12 @@ def self.usage_path
source_root && File.expand_path("../USAGE", source_root),
default_generator_root && File.join(default_generator_root, "USAGE")
]
paths.compact.detect { |path| File.exists? path }
paths.compact.detect { |path| File.exist? path }
end

def self.default_generator_root
path = File.expand_path(File.join(base_name, generator_name), base_root)
path if File.exists?(path)
path if File.exist?(path)
end

end
Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails/generators/rails/app/app_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def read_rc_file(railsrc)
end

def insert_railsrc_into_argv!(argv, railsrc)
return argv unless File.exists?(railsrc)
return argv unless File.exist?(railsrc)
extra_args = read_rc_file railsrc
argv.take(1) + extra_args + argv.drop(1)
end
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Set up gems listed in the Gemfile.
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)

require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ def application_definition
@application_definition ||= begin

dummy_application_path = File.expand_path("#{dummy_path}/config/application.rb", destination_root)
unless options[:pretend] || !File.exists?(dummy_application_path)
unless options[:pretend] || !File.exist?(dummy_application_path)
contents = File.read(dummy_application_path)
contents[(contents.index(/module ([\w]+)\n(.*)class Application/m))..-1]
end
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Set up gems listed in the Gemfile.
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)

require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
$LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
4 changes: 2 additions & 2 deletions railties/lib/rails/generators/testing/assertions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module Assertions
# end
def assert_file(relative, *contents)
absolute = File.expand_path(relative, destination_root).shellescape
assert File.exists?(absolute), "Expected file #{relative.inspect} to exist, but does not"
assert File.exist?(absolute), "Expected file #{relative.inspect} to exist, but does not"

read = File.read(absolute) if block_given? || !contents.empty?
yield read if block_given?
Expand All @@ -44,7 +44,7 @@ def assert_file(relative, *contents)
# assert_no_file "config/random.rb"
def assert_no_file(relative)
absolute = File.expand_path(relative, destination_root)
assert !File.exists?(absolute), "Expected file #{relative.inspect} to not exist, but does"
assert !File.exist?(absolute), "Expected file #{relative.inspect} to not exist, but does"
end
alias :assert_no_directory :assert_no_file

Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails/rack/log_tailer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def initialize(app, log = nil)
path = Pathname.new(log || "#{::File.expand_path(Rails.root)}/log/#{Rails.env}.log").cleanpath

@cursor = @file = nil
if ::File.exists?(path)
if ::File.exist?(path)
@cursor = ::File.size(path)
@file = ::File.open(path, 'r')
end
Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails/tasks/framework.rake
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ namespace :rails do
require 'rails/generators/rails/app/app_generator'
gen = Rails::Generators::AppGenerator.new ["rails"], { with_dispatchers: true },
destination_root: Rails.root
File.exists?(Rails.root.join("config", "application.rb")) ?
File.exist?(Rails.root.join("config", "application.rb")) ?
gen.send(:app_const) : gen.send(:valid_const?)
gen
end
Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails/tasks/log.rake
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace :log do
if ENV['LOGS']
ENV['LOGS'].split(',')
.map { |file| "log/#{file.strip}.log" }
.select { |file| File.exists?(file) }
.select { |file| File.exist?(file) }
else
FileList["log/*.log"]
end
Expand Down
2 changes: 1 addition & 1 deletion railties/test/application/assets_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def assert_file_exists(filename)
end

def assert_no_file_exists(filename)
assert !File.exists?(filename), "#{filename} does exist"
assert !File.exist?(filename), "#{filename} does exist"
end

test "assets routes have higher priority" do
Expand Down
4 changes: 2 additions & 2 deletions railties/test/application/rake/dbs_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ def db_create_and_drop
Dir.chdir(app_path) do
output = `bundle exec rake db:create`
assert_equal output, ""
assert File.exists?(expected[:database])
assert File.exist?(expected[:database])
assert_equal expected[:database],
ActiveRecord::Base.connection_config[:database]
output = `bundle exec rake db:drop`
assert_equal output, ""
assert !File.exists?(expected[:database])
assert !File.exist?(expected[:database])
end
end

Expand Down
10 changes: 5 additions & 5 deletions railties/test/application/rake_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def test_rake_dump_structure_should_respect_db_structure_env_variable
# ensure we have a schema_migrations table to dump
`bundle exec rake db:migrate db:structure:dump DB_STRUCTURE=db/my_structure.sql`
end
assert File.exists?(File.join(app_path, 'db', 'my_structure.sql'))
assert File.exist?(File.join(app_path, 'db', 'my_structure.sql'))
end

def test_rake_dump_structure_should_be_called_twice_when_migrate_redo
Expand All @@ -248,24 +248,24 @@ def test_rake_dump_schema_cache
rails generate model product name:string;
bundle exec rake db:migrate db:schema:cache:dump`
end
assert File.exists?(File.join(app_path, 'db', 'schema_cache.dump'))
assert File.exist?(File.join(app_path, 'db', 'schema_cache.dump'))
end

def test_rake_clear_schema_cache
Dir.chdir(app_path) do
`bundle exec rake db:schema:cache:dump db:schema:cache:clear`
end
assert !File.exists?(File.join(app_path, 'db', 'schema_cache.dump'))
assert !File.exist?(File.join(app_path, 'db', 'schema_cache.dump'))
end

def test_copy_templates
Dir.chdir(app_path) do
`bundle exec rake rails:templates:copy`
%w(controller mailer scaffold).each do |dir|
assert File.exists?(File.join(app_path, 'lib', 'templates', 'erb', dir))
assert File.exist?(File.join(app_path, 'lib', 'templates', 'erb', dir))
end
%w(controller helper scaffold_controller assets).each do |dir|
assert File.exists?(File.join(app_path, 'lib', 'templates', 'rails', dir))
assert File.exist?(File.join(app_path, 'lib', 'templates', 'rails', dir))
end
end
end
Expand Down
4 changes: 2 additions & 2 deletions railties/test/generators_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def teardown
end

def test_simple_invoke
assert File.exists?(File.join(@path, 'generators', 'model_generator.rb'))
assert File.exist?(File.join(@path, 'generators', 'model_generator.rb'))
TestUnit::Generators::ModelGenerator.expects(:start).with(["Account"], {})
Rails::Generators.invoke("test_unit:model", ["Account"])
end
Expand All @@ -31,7 +31,7 @@ def test_help_when_a_generator_with_required_arguments_is_invoked_without_argume
end

def test_should_give_higher_preference_to_rails_generators
assert File.exists?(File.join(@path, 'generators', 'model_generator.rb'))
assert File.exist?(File.join(@path, 'generators', 'model_generator.rb'))
Rails::Generators::ModelGenerator.expects(:start).with(["Account"], {})
warnings = capture(:stderr){ Rails::Generators.invoke :model, ["Account"] }
assert warnings.empty?
Expand Down
6 changes: 3 additions & 3 deletions railties/test/railties/engine_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ def up
Dir.chdir(app_path) do
output = `bundle exec rake bukkits:install:migrations`

assert File.exists?("#{app_path}/db/migrate/2_create_users.bukkits.rb")
assert File.exists?("#{app_path}/db/migrate/3_add_last_name_to_users.bukkits.rb")
assert File.exist?("#{app_path}/db/migrate/2_create_users.bukkits.rb")
assert File.exist?("#{app_path}/db/migrate/3_add_last_name_to_users.bukkits.rb")
assert_match(/Copied migration 2_create_users.bukkits.rb from bukkits/, output)
assert_match(/Copied migration 3_add_last_name_to_users.bukkits.rb from bukkits/, output)
assert_match(/NOTE: Migration 3_create_sessions.rb from bukkits has been skipped/, output)
Expand Down Expand Up @@ -136,7 +136,7 @@ class AddFirstNameToUsers < ActiveRecord::Migration

Dir.chdir(@plugin.path) do
output = `bundle exec rake app:bukkits:install:migrations`
assert File.exists?("#{app_path}/db/migrate/0_add_first_name_to_users.bukkits.rb")
assert File.exist?("#{app_path}/db/migrate/0_add_first_name_to_users.bukkits.rb")
assert_match(/Copied migration 0_add_first_name_to_users.bukkits.rb from bukkits/, output)
assert_equal 1, Dir["#{app_path}/db/migrate/*.rb"].length
end
Expand Down

0 comments on commit c10a781

Please sign in to comment.