Ruby on Rails, convert projectwide single quotes to double quotesA concise explanation of nil v. empty v. blank in Ruby on RailsUnderstanding the Rails Authenticity TokenHow to write a switch statement in RubyHow to convert a string to lower or upper case in RubyHow do I escape a single quote in SQL Server?Check if a value exists in an array in RubyHow can I rename a database column in a Ruby on Rails migration?How do I get the current absolute URL in Ruby on Rails?What is attr_accessor in Ruby?PHP: Convert single-quoted string into double-quoted
Unusual mail headers, evidence of an attempted attack. Have I been pwned?
Is my Rep in Stack-Exchange Form?
Can the negators "jamais, rien, personne, plus, ni, aucun" be used in a single sentence?
Why aren't (poly-)cotton tents more popular?
What reason would an alien civilization have for building a Dyson Sphere (or Swarm) if cheap Nuclear fusion is available?
C-152 carb heat on before landing in hot weather?
Would a two-seat light aircaft with a landing speed of 20 knots and a top speed of 180 knots be technically possible?
How can I deal with a coworker killed on the job
Are all instances of trolls turning to stone ultimately references back to Tolkien?
Catching generic Exception in a toString implementation - bad practice?
Why doesn't a marching band have strings?
Change CPU MHz from Registry
Animation advice please
Cascading Repair Costs following Blown Head Gasket on a 2004 Subaru Outback
No IMPLICIT_CONVERSION warning in this query plan
Is there a maximum distance from a planet that a moon can orbit?
Isn't this a trivial corollary?
In the Marvel universe, can a human have a baby with any non-human?
Is there any set of 2-6 notes that doesn't have a chord name?
Does Marvel have an equivalent of the Green Lantern?
Could Sauron have read Tom Bombadil's mind if Tom had held the Palantir?
Change the boot order with no option in UEFI settings
Using “sparkling” as a diminutive of “spark” in a poem
How to get cool night-vision without lame drawbacks?
Ruby on Rails, convert projectwide single quotes to double quotes
A concise explanation of nil v. empty v. blank in Ruby on RailsUnderstanding the Rails Authenticity TokenHow to write a switch statement in RubyHow to convert a string to lower or upper case in RubyHow do I escape a single quote in SQL Server?Check if a value exists in an array in RubyHow can I rename a database column in a Ruby on Rails migration?How do I get the current absolute URL in Ruby on Rails?What is attr_accessor in Ruby?PHP: Convert single-quoted string into double-quoted
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I wonder if anyone has come up with a shortcut to correctly
convert ALL single quotes to double quotes in a new rails project. Thank you in advance. I would do that at the end of generating new project with a template.rb
ruby-on-rails ruby double-quotes single-quotes
add a comment |
I wonder if anyone has come up with a shortcut to correctly
convert ALL single quotes to double quotes in a new rails project. Thank you in advance. I would do that at the end of generating new project with a template.rb
ruby-on-rails ruby double-quotes single-quotes
8
I would use Rubocop. Configure it to use the quotes you prefer and then runrubocop -a
to automatically fix all issues.
– spickermann
Mar 25 at 10:31
@spickermann you seem to indeed really trust rubocop. I would go withsed
:)
– Aleksei Matiushkin
Mar 25 at 10:40
5
@AlekseiMatiushkin Indeed, I trust Rubocop more to cover all these encodings, escaping and edge cases. I prefer spending the time to review Rubocop's changes instead of building a correct regexp in sed.
– spickermann
Mar 25 at 10:50
rubocop it is, I didn't remember it had auto fix capability
– webgen
Mar 25 at 11:09
add a comment |
I wonder if anyone has come up with a shortcut to correctly
convert ALL single quotes to double quotes in a new rails project. Thank you in advance. I would do that at the end of generating new project with a template.rb
ruby-on-rails ruby double-quotes single-quotes
I wonder if anyone has come up with a shortcut to correctly
convert ALL single quotes to double quotes in a new rails project. Thank you in advance. I would do that at the end of generating new project with a template.rb
ruby-on-rails ruby double-quotes single-quotes
ruby-on-rails ruby double-quotes single-quotes
asked Mar 25 at 10:26
webgenwebgen
901 silver badge4 bronze badges
901 silver badge4 bronze badges
8
I would use Rubocop. Configure it to use the quotes you prefer and then runrubocop -a
to automatically fix all issues.
– spickermann
Mar 25 at 10:31
@spickermann you seem to indeed really trust rubocop. I would go withsed
:)
– Aleksei Matiushkin
Mar 25 at 10:40
5
@AlekseiMatiushkin Indeed, I trust Rubocop more to cover all these encodings, escaping and edge cases. I prefer spending the time to review Rubocop's changes instead of building a correct regexp in sed.
– spickermann
Mar 25 at 10:50
rubocop it is, I didn't remember it had auto fix capability
– webgen
Mar 25 at 11:09
add a comment |
8
I would use Rubocop. Configure it to use the quotes you prefer and then runrubocop -a
to automatically fix all issues.
– spickermann
Mar 25 at 10:31
@spickermann you seem to indeed really trust rubocop. I would go withsed
:)
– Aleksei Matiushkin
Mar 25 at 10:40
5
@AlekseiMatiushkin Indeed, I trust Rubocop more to cover all these encodings, escaping and edge cases. I prefer spending the time to review Rubocop's changes instead of building a correct regexp in sed.
– spickermann
Mar 25 at 10:50
rubocop it is, I didn't remember it had auto fix capability
– webgen
Mar 25 at 11:09
8
8
I would use Rubocop. Configure it to use the quotes you prefer and then run
rubocop -a
to automatically fix all issues.– spickermann
Mar 25 at 10:31
I would use Rubocop. Configure it to use the quotes you prefer and then run
rubocop -a
to automatically fix all issues.– spickermann
Mar 25 at 10:31
@spickermann you seem to indeed really trust rubocop. I would go with
sed
:)– Aleksei Matiushkin
Mar 25 at 10:40
@spickermann you seem to indeed really trust rubocop. I would go with
sed
:)– Aleksei Matiushkin
Mar 25 at 10:40
5
5
@AlekseiMatiushkin Indeed, I trust Rubocop more to cover all these encodings, escaping and edge cases. I prefer spending the time to review Rubocop's changes instead of building a correct regexp in sed.
– spickermann
Mar 25 at 10:50
@AlekseiMatiushkin Indeed, I trust Rubocop more to cover all these encodings, escaping and edge cases. I prefer spending the time to review Rubocop's changes instead of building a correct regexp in sed.
– spickermann
Mar 25 at 10:50
rubocop it is, I didn't remember it had auto fix capability
– webgen
Mar 25 at 11:09
rubocop it is, I didn't remember it had auto fix capability
– webgen
Mar 25 at 11:09
add a comment |
1 Answer
1
active
oldest
votes
I would also use rubocop
for that:
rubocop --safe-auto-correct --only "Style/StringLiterals" .
As spickermann
suggested
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55335692%2fruby-on-rails-convert-projectwide-single-quotes-to-double-quotes%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I would also use rubocop
for that:
rubocop --safe-auto-correct --only "Style/StringLiterals" .
As spickermann
suggested
add a comment |
I would also use rubocop
for that:
rubocop --safe-auto-correct --only "Style/StringLiterals" .
As spickermann
suggested
add a comment |
I would also use rubocop
for that:
rubocop --safe-auto-correct --only "Style/StringLiterals" .
As spickermann
suggested
I would also use rubocop
for that:
rubocop --safe-auto-correct --only "Style/StringLiterals" .
As spickermann
suggested
answered Mar 25 at 12:25
Martin ZinovskyMartin Zinovsky
1,9251 gold badge11 silver badges17 bronze badges
1,9251 gold badge11 silver badges17 bronze badges
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55335692%2fruby-on-rails-convert-projectwide-single-quotes-to-double-quotes%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
8
I would use Rubocop. Configure it to use the quotes you prefer and then run
rubocop -a
to automatically fix all issues.– spickermann
Mar 25 at 10:31
@spickermann you seem to indeed really trust rubocop. I would go with
sed
:)– Aleksei Matiushkin
Mar 25 at 10:40
5
@AlekseiMatiushkin Indeed, I trust Rubocop more to cover all these encodings, escaping and edge cases. I prefer spending the time to review Rubocop's changes instead of building a correct regexp in sed.
– spickermann
Mar 25 at 10:50
rubocop it is, I didn't remember it had auto fix capability
– webgen
Mar 25 at 11:09