-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update main Gemfile to Rails 7.2 and add test. (#20)
* Removed Rails 5.2, 6.0 test
- Loading branch information
Showing
9 changed files
with
167 additions
and
125 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
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# DEVELOPMENT GUIDE | ||
|
||
```bash | ||
docker-compose up -d | ||
``` | ||
|
||
Create local datebase | ||
|
||
```bash | ||
bundle install | ||
rails db:create db:migrate | ||
``` | ||
|
||
Run tests | ||
|
||
```bash | ||
rails test | ||
``` | ||
|
||
## Publish new RubyGem version | ||
|
||
- Update version in `lib/action_store/version.rb` | ||
- Run `bundle install`. | ||
- Create a new tag in the format `vX.X.X` and push it to the repository. | ||
- Run `rake release` to publish the new version to RubyGems. | ||
- Write release notes in GitHub releases: https://github.com/rails-engine/action-store/releases |
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
source "https://rubygems.org" | ||
|
||
gemspec | ||
gem "rails", "~> 7.1.0" | ||
gem "rails", "~> 7.2.0" |
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
Oops, something went wrong.