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;








3















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










share|improve this question

















  • 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

















3















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










share|improve this question

















  • 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













3












3








3








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










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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 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












  • 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







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












1 Answer
1






active

oldest

votes


















5














I would also use rubocop for that:



rubocop --safe-auto-correct --only "Style/StringLiterals" .


As spickermann suggested






share|improve this answer

























    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
    );



    );













    draft saved

    draft discarded


















    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









    5














    I would also use rubocop for that:



    rubocop --safe-auto-correct --only "Style/StringLiterals" .


    As spickermann suggested






    share|improve this answer



























      5














      I would also use rubocop for that:



      rubocop --safe-auto-correct --only "Style/StringLiterals" .


      As spickermann suggested






      share|improve this answer

























        5












        5








        5







        I would also use rubocop for that:



        rubocop --safe-auto-correct --only "Style/StringLiterals" .


        As spickermann suggested






        share|improve this answer













        I would also use rubocop for that:



        rubocop --safe-auto-correct --only "Style/StringLiterals" .


        As spickermann suggested







        share|improve this answer












        share|improve this answer



        share|improve this answer










        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





























            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript