cake-bake

Bake Cakefile into native Crystal code 🍞 cake docker
0.1.0 released

Bake

Bake Cakefile into native Crystal code.

Why?

Because sometimes cake tasks are wanted to be run as binaries.

For example, to run from a Docker container with an already built application: docker run my-crystal-app bin/cake db:migrate.

Installation

Add this to your application's shard.yml:

targets:
  cake:
    main: src/run/cake.cr

dependencies:
  bake:
    github: vladfaust/bake

Usage

Given ./Cakefile:

require "./src/some_file" # These requires

task :foo
  puts "bar"
end

./src/run/cake:

require "bake"
bake("../../Cakefile") # Full path to Cakefile needed to properly resolve requires (see above)

Then execute from ./:

$ crystal src/run/cake -- foo
bar

$ crystal build src/run/cake
$ ./cake foo
bar

$ shards build
$ ./bin/cake foo
bar

Contributing

  1. Fork it ( https://github.com/vladfaust/bake/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors

cake-bake:
  github: vladfaust/cake-bake.cr
  version: ~> 0.1.0
License MIT
Crystal 0.23.1

Authors

Dependencies 0

Development Dependencies 0

Dependents 1

Last synced .
search fire star recently