Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 563 Bytes

DEVELOPMENT_ENVIRONMENT_GUIDE.md

File metadata and controls

33 lines (23 loc) · 563 Bytes

Development environment guide

Preparing

Clone truemail repository:

git clone https://github.com/truemail-rb/truemail.git
cd  truemail

Configure latest Ruby environment:

echo 'ruby-3.1.2' > .ruby-version
cp .circleci/gemspec_latest truemail.gemspec

Installing dependencies

bundle install
bundle exec smtp_mock -s -i ~

Commiting

Commit your changes excluding .ruby-version, truemail.gemspec

git add . ':!.ruby-version' ':!truemail.gemspec'
git commit -m 'Your new awesome truemail feature'