-
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Technical/Update truemail gemspec (#210)
* Added development environment guide * Updated truemail.gemspec * Updated contributing docs * Updated gem version, changelog
- Loading branch information
Showing
6 changed files
with
58 additions
and
20 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Development environment guide | ||
|
||
## Preparing | ||
|
||
Clone `truemail` repository: | ||
|
||
```bash | ||
git clone https://github.com/truemail-rb/truemail.git | ||
cd truemail | ||
``` | ||
|
||
Configure latest Ruby environment: | ||
|
||
```bash | ||
echo 'ruby-3.1.0' > .ruby-version | ||
cp .circleci/gemspec_latest truemail.gemspec | ||
``` | ||
|
||
## Installing dependencies | ||
|
||
```bash | ||
bundle install | ||
bundle exec smtp_mock -s -i ~ | ||
``` | ||
|
||
## Commiting | ||
|
||
Commit your changes excluding `.ruby-version`, `truemail.gemspec` | ||
|
||
```bash | ||
git add . ':!.ruby-version' ':!truemail.gemspec' | ||
git commit -m 'Your new awesome truemail feature' | ||
``` |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module Truemail | ||
VERSION = '2.6.5' | ||
VERSION = '2.6.6' | ||
end |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'pry' | ||
require 'pry' if ::RUBY_VERSION[/\A3\.1.+\z/] |
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