(directory-files *folder-path* *full-name* *match-regexp* *nosort*)
This file contains 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
*.html |
This file contains 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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import fire | |
import subprocess | |
class SubprocessUtil(object): | |
def exec_popen(self, command): | |
proc = subprocess.Popen( | |
command, |
This file contains 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
# frozen_string_literal: true | |
# using: `rails new . -m <this-file-url>` | |
gem_group :development, :test do | |
gem 'factory_bot_rails' | |
gem 'guard-rspec', require: false | |
gem 'guard-rubocop', require: false | |
gem 'rspec-rails' | |
gem 'rubocop-rails' | |
gem 'rubocop-rspec' |
This file contains 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
OTP_VERSION=22.2 | |
ELIXIR_VERSION=v1.10.2 | |
# Install required packages | |
sudo apt-get install git m4 libncurses5-dev libssl-dev | |
# Install OTP | |
wget http://erlang.org/download/otp_src_${OTP_VERSION}.tar.gz -O otp_src.tar.gz | |
mkdir otp_src; cd $_ | |
tar xzvf ../otp_src.tar.gz --strip=1 -C . |
This file contains 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
# frozen_string_literal: true | |
# using: `rails new . -m <this-file-url>` | |
gem_group :development, :test do | |
gem 'factory_bot_rails' | |
gem 'guard-rspec', require: false | |
gem 'guard-rubocop', require: false | |
gem 'rspec-rails' | |
gem 'rubocop-rails' | |
gem 'rubocop-rspec' |