<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Marcelo Toledo</title>
    <description>The latest articles on DEV Community by Marcelo Toledo (@marcelotoledo).</description>
    <link>https://dev.to/marcelotoledo</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F373638%2F8058693e-cc01-4bd1-811a-fea6a703a173.jpeg</url>
      <title>DEV Community: Marcelo Toledo</title>
      <link>https://dev.to/marcelotoledo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/marcelotoledo"/>
    <language>en</language>
    <item>
      <title>Travis-CI x GitHub Actions. Which one is the best?</title>
      <dc:creator>Marcelo Toledo</dc:creator>
      <pubDate>Fri, 07 Aug 2020 02:58:10 +0000</pubDate>
      <link>https://dev.to/marcelotoledo/travis-ci-x-github-actions-which-one-is-the-best-37ce</link>
      <guid>https://dev.to/marcelotoledo/travis-ci-x-github-actions-which-one-is-the-best-37ce</guid>
      <description>&lt;p&gt;I've always used the &lt;strong&gt;Travis-CI&lt;/strong&gt; for all my personal projects during years and I'm still liking it very much, but recently I've been testing &lt;strong&gt;GitHub Actions&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;In this case, I'm using the same project and the same process, so I compared the time of execution between these two tools to do it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Run Rubocop&lt;/li&gt;
&lt;li&gt;Run tests with Rspec&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Okay, these are the times I got when I run the build:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Travis-CI result:&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--KzUCedHy--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/uvu3fb56b6c6w5p8xs40.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--KzUCedHy--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/uvu3fb56b6c6w5p8xs40.png" alt="Travis-CI"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;and GitHub Actions result:&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--FNTXoTqH--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/rgrbgvb8h47f6ktwnk2n.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--FNTXoTqH--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/rgrbgvb8h47f6ktwnk2n.png" alt="Github-Actions"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What do you think about it?&lt;br&gt;
Make your own tests and share them!&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>github</category>
      <category>travis</category>
      <category>ci</category>
    </item>
    <item>
      <title>How to hide Ruby 2.7 deprecation warnings in docker</title>
      <dc:creator>Marcelo Toledo</dc:creator>
      <pubDate>Sat, 25 Apr 2020 19:09:25 +0000</pubDate>
      <link>https://dev.to/marcelotoledo/how-to-hide-ruby-2-7-deprecation-warnings-in-docker-181g</link>
      <guid>https://dev.to/marcelotoledo/how-to-hide-ruby-2-7-deprecation-warnings-in-docker-181g</guid>
      <description>&lt;p&gt;Tired of Ruby ​​2.7 alerts in your docker application? Put this key into your environment: &lt;code&gt;RUBYOPT=-W0&lt;/code&gt;. In your docker-compose.yml:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight docker"&gt;&lt;code&gt;&lt;span class="c"&gt;# docker-compose.yml&lt;/span&gt;

version: '3.6'

services:
  server:
    image: "your_image"
    container_name: "your_application_name"
    ports:
      - "3000:3000"
    environment:
      - BUNDLE_PATH=vendor/bundle
      - BUNDLE_DISABLE_SHARED_GEMS=1
      - RUBYOPT=-W0
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;Cheers 🍻&lt;/p&gt;

</description>
      <category>docker</category>
      <category>ruby</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
