lucky_diff

Version, currently main branch1 version
  • main branchlatestJun 15, 2026

github.com/LuckyCasts/lucky_diff

Show differences between scaffolded Lucky app versions!

11 stars
0 dependents
License: MIT

Installation

# Add this to your shard.yml
dependencies:
  lucky_diff:
    github: LuckyCasts/lucky_diff
    branch: main

main is a branch, not a release, so this tracks it rather than pinning a version.

Then run:

shards install

shard.yml

Crystal
>= 1.16.0
Author
Stephen Dolan <stephen@stephencodes.com>
Target
  • webserver from src/lucky_diff.cr

Dependencies

Runtime Dependencies

  • avram~> 1.4.0github: luckyframework/avram
  • lucky~> 1.4.0github: luckyframework/lucky
  • raven~> 1.9.0github: Sija/raven.cr
  • lucky_env~> 0.3.0github: luckyframework/lucky_env
  • lucky_task~> 0.3.0github: luckyframework/lucky_task

Development Dependencies

  • ameba*github: crystal-ameba/ameba, branch: masterdev
  • lucky_flow~> 0.10.0github: luckyframework/lucky_flowdev

README

# LuckyDiff

[![Lucky](https://github.com/stephendolan/lucky_diff/actions/workflows/lucky.yml/badge.svg)](https://github.com/stephendolan/lucky_diff/actions/workflows/lucky.yml)
[![Tuple](https://img.shields.io/badge/Pairing%20with-Tuple-5A67D8)](https://tuple.app)

This project compares released versions of [Lucky](https://luckyframework.org) apps. It's heavily inspired by [RailsDiff](http://railsdiff.org). Enjoy!

## Requirements

- Crystal 1.16.3 or higher

## 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
1. Once the pull request is merged, manually run the Deploy action

## 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