https://github.com/stephendolan/lucky_diff
Show differences between scaffolded Lucky app versions!
https://github.com/stephendolan/lucky_diff
crystal lucky luckyframework
Last synced: 11 months ago
JSON representation
Show differences between scaffolded Lucky app versions!
- Host: GitHub
- URL: https://github.com/stephendolan/lucky_diff
- Owner: stephendolan
- License: mit
- Created: 2020-06-18T22:11:59.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-10-21T12:41:05.000Z (over 1 year ago)
- Last Synced: 2025-05-12T21:13:00.739Z (11 months ago)
- Topics: crystal, lucky, luckyframework
- Language: Crystal
- Homepage: https://luckydiff.com
- Size: 2.46 MB
- Stars: 11
- Watchers: 0
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# LuckyDiff
[](https://github.com/stephendolan/lucky_diff/actions/workflows/lucky.yml)
[](https://tuple.app)
This project compares released versions of [Lucky](https://luckyframework.org) apps. It's heavily inspired by [RailsDiff](http://railsdiff.org). Enjoy!
## Is a version you need missing?
All supported versions are placed in the [generated](/generated/) folder, so adding a new version is as simple as following these steps:
1. Fork it ( https://github.com/stephendolan/lucky_diff/fork )
1. Check out a new branch (git checkout -b add-version-x-x-x)
1. Run `./script/create_new_version vx.x.x`
1. Add your new version to `src/models/version.cr`
1. Run the server with `lucky dev` and verify the content
1. Commit your changes (git commit -am 'Add version x.x.x')
1. Push to the branch (git push origin add-version-x-x-x)
1. Create a new Pull Request
## Want to add something to the site?
1. Fork it ( https://github.com/stephendolan/lucky_diff/fork )
1. Create your feature branch (git checkout -b my-new-feature)
1. Run `script/setup`
1. Make your changes
1. Commit your changes (git commit -am 'Add some feature')
1. Push to the branch (git push origin my-new-feature)
1. Create a new Pull Request