From e6ab70c439301d533f14b3387ee181d843a86b30 Mon Sep 17 00:00:00 2001 From: Xavier Noria Date: Sat, 6 Aug 2016 19:28:46 +0200 Subject: applies new string literal convention to the rest of the project The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default. --- Rakefile | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'Rakefile') diff --git a/Rakefile b/Rakefile index 1d70ce96ea..02e9e5997c 100644 --- a/Rakefile +++ b/Rakefile @@ -1,8 +1,8 @@ -require 'net/http' +require "net/http" -$:.unshift File.expand_path('..', __FILE__) +$:.unshift File.expand_path("..", __FILE__) require "tasks/release" -require 'railties/lib/rails/api/task' +require "railties/lib/rails/api/task" desc "Build gem files for all projects" task :build => "all:build" @@ -13,7 +13,7 @@ task :prep_release => "all:prep_release" desc "Release all gems to rubygems and create a tag" task :release => "all:release" -desc 'Run all tests by default' +desc "Run all tests by default" task :default => %w(test test:isolated) %w(test test:isolated package gem).each do |task_name| @@ -24,7 +24,7 @@ task :default => %w(test test:isolated) system(%(cd #{project} && #{$0} #{task_name} --trace)) || errors << project end if task_name =~ /test/ - system(%(cd actioncable && env FAYE=1 #{$0} #{task_name} --trace)) || errors << 'actioncable-faye' + system(%(cd actioncable && env FAYE=1 #{$0} #{task_name} --trace)) || errors << "actioncable-faye" end fail("Errors in #{errors.join(', ')}") unless errors.empty? end @@ -43,13 +43,13 @@ desc "Install gems for all projects." task :install => "all:install" desc "Generate documentation for the Rails framework" -if ENV['EDGE'] - Rails::API::EdgeTask.new('rdoc') +if ENV["EDGE"] + Rails::API::EdgeTask.new("rdoc") else - Rails::API::StableTask.new('rdoc') + Rails::API::StableTask.new("rdoc") end -desc 'Bump all versions to match RAILS_VERSION' +desc "Bump all versions to match RAILS_VERSION" task :update_versions => "all:update_versions" # We have a webhook configured in GitHub that gets invoked after pushes. @@ -61,10 +61,10 @@ task :update_versions => "all:update_versions" # * if there's a new stable tag, generates and publishes stable docs # # Everything is automated and you do NOT need to run this task normally. -desc 'Publishes docs, run this AFTER a new stable tag has been pushed' +desc "Publishes docs, run this AFTER a new stable tag has been pushed" task :publish_docs do - Net::HTTP.new('api.rubyonrails.org', 8080).start do |http| - request = Net::HTTP::Post.new('/rails-master-hook') + Net::HTTP.new("api.rubyonrails.org", 8080).start do |http| + request = Net::HTTP::Post.new("/rails-master-hook") response = http.request(request) puts response.body end -- cgit v1.2.3