Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 492 Bytes

DEVELOPMENT_ENVIRONMENT_GUIDE.md

File metadata and controls

26 lines (18 loc) · 492 Bytes

Development environment guide

Preparing

Clone rom-mongodb repository:

git clone https://github.com/bestwebua/rom-mongo.git
cd  rom-mongo

Configure latest Ruby environment:

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

Commiting

Commit your changes excluding .ruby-version, rom-mongodb.gemspec

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