aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
Diffstat (limited to 'actionview')
-rw-r--r--actionview/Rakefile7
-rw-r--r--actionview/test/actionpack/controller/render_test.rb2
2 files changed, 1 insertions, 8 deletions
diff --git a/actionview/Rakefile b/actionview/Rakefile
index 8190b3c027..2b884bf2a0 100644
--- a/actionview/Rakefile
+++ b/actionview/Rakefile
@@ -51,13 +51,6 @@ Gem::PackageTask.new(spec) do |p|
p.gem_spec = spec
end
-desc "Release to rubygems"
-task :release => :package do
- require 'rake/gemcutter'
- Rake::Gemcutter::Tasks.new(spec).define
- Rake::Task['gem:push'].invoke
-end
-
task :lines do
load File.expand_path('..', File.dirname(__FILE__)) + '/tools/line_statistics'
files = FileList["lib/**/*.rb"]
diff --git a/actionview/test/actionpack/controller/render_test.rb b/actionview/test/actionpack/controller/render_test.rb
index ecebd2d8c5..7cbc77f11f 100644
--- a/actionview/test/actionpack/controller/render_test.rb
+++ b/actionview/test/actionpack/controller/render_test.rb
@@ -682,7 +682,7 @@ class RenderTest < ActionController::TestCase
def case_sensitive_file_system?
fname = '.case_sensitive_file_system_test'
FileUtils.touch(fname)
- !File.exists?(fname.upcase)
+ !File.exist?(fname.upcase)
ensure
FileUtils.rm_f(fname)
end