This project compares released versions of Lucky apps. It's heavily inspired by RailsDiff. Enjoy!
All supported versions are placed in the generated folder, so adding a new version is as simple as following these steps:
- Fork it ( https://github.com/stephendolan/lucky_diff/fork )
- Check out a new branch (git checkout -b add-version-x-x-x)
- Run
./script/create_new_version vx.x.x
- Add your new version to
src/models/version.cr
- Run the server with
lucky dev
and verify the content - Commit your changes (git commit -am 'Add version x.x.x')
- Push to the branch (git push origin add-version-x-x-x)
- Create a new Pull Request
- Fork it ( https://github.com/stephendolan/lucky_diff/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Run
script/setup
- Make your changes
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request