This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'fileutils' | |
| path = '' # Add folder where all projects live | |
| skip_folder = %w[] # Add any folders you'd like to skip | |
| Dir.chdir(path) | |
| folders = Dir.glob('*').select {|f| File.directory? f} | |
| parsed_folders = folders - skip_folder | |
| parsed_folders.each do |folder| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'benchmark/ips' | |
| # gem install benchmark-ips -v 2.7.2 | |
| class TestClass | |
| def echo(value) | |
| value | |
| end | |
| end | |
| module TestModule |
OlderNewer