• Stars
    star
    93
  • Rank 347,837 (Top 8 %)
  • Language
    Crystal
  • License
    MIT License
  • Created about 7 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Rake-like task manager

Sam Build Status Latest Release

Sam is a Make-like utility which allows to specify tasks like Ruby's Rake do using plain Crystal code. This allows you to reuse existing application code base and/or include tasks from your dependencies.

Installation

Add this to your application's shard.yml:

dependencies:
  sam:
    github: imdrasil/sam.cr
    version: 0.5.0

After executing shards install Sam-file will be added to the root of your project (unless you already have one).

Usage

Task

Tasks are the main unit in sam.cr. Task has a name, a list of prerequisites and a list of actions (block of a code).

Sam extends the global context with own DSL. To define a task use task method which accepts the task name as the 1st argument.

task "name" do
end

If you want to define prerequisites, add the array with their names as the 2nd argument:

task "name", ["prereq1", "prereq2"] do
end

Executing a task

Sam does no magic with your sam.cr file - it is just a common .cr source file which allows you to recompile it with any possible code you want such amount of times you need. Therefore the most obvious way to execute any task is:

$ crystal sam.cr name

In addition to this you are able to configure your makefile to invoke sam tasks. This allows you to use shorten variant

$ make sam name

To automatically modify your Makefile run

$ crystal sam.cr generate:makefile

This will modify existing Makefile or create new one. Be careful - this will silent all nonexisting makefile tasks on invocation.

To see a list of all available tasks with their descriptions:

$ crystal sam.cr help

If you pass no arguments - the task "default" will be invoked.

task "default" do
  puts "Hi"
end
$ crystal sam.cr
Hi

Tasks with arguments

To pass arguments to your task just list them after it's name:

$ crystal sam.cr name john rob ned

They are passed to a task as a 2nd block argument.

task "name" do |_, args|
  puts args[0].as(String)
end

args here is an instance of Sam::Args class that contains arguments and named arguments passed to each task. Any argument passed from a console is treated as a String but Int32 and Float64 values also can be specified during task invocation from inside of another one.

Each task has own collection of arguments; only prerequisites shares with target task same Args instance.

Named argument also can be specified by the following ways:

  • -argument value
  • -argument "value with spaces"
  • argument=value
  • argument="value with spaces"

Two important restriction with named arguments usage and makefile-style task invocation:

  • -- should be placed to explicitly specify that specified named arguments belongs to task not to Makefile:
$ make sam name john
$ # but
$ make same name -- argument=john
  • makefile doesn't support named arguments with = sign

To invoke More than one task list them one by one (including their arguments) separating them with @ symbol:

$ crystal sam.cr name john @ surname argument=snow

Accessing tasks programmatically

Sam allow you to invoke tasks within another ones and even passing own args object. To do this just call #invoke method with task name (and arguments if needed) on task object passed as 1st argument:

task "name" do |t|
  t.invoke("surname")
end

task "surname" do
  puts "Snow"
end

If specified task was already invoked before - it will be ignored. To force task invocation - use #execute.

Another task could be invoked from current using invoke method. It has next signatures:

Namespaces

as projects grow amount of defined tasks grow as well. To simplify navigation and increase readability tasks can be grouped in namespaces:

namespace "main" do
  task "build" do
    # Build the main program
  end
end

namespace "samples" do
  task "build" do
    # Build the sample programs
  end
end

task "build", %w[main:build samples:build] do
end

Name resolution

When task is invoked from other one, provided path will float up through current task namespace and search given task path on each level until top level. Task could have same name as any existing namespace.

task "one" do
end

namespace "one" do
  namespace "two"
    task "test" do |t|
      t.invoke("one")
    end
  end
end

In the example above next paths are checked (in given order):

  • one:two:one
  • one:one
  • one (as task not namespace)

Share tasks

Sam tasks can be loaded from installed dependencies. To do this helper macro load_dependencies can be used:

load_dependencies "lib1", "lib2"

This is translated to

require "./lib/lib1/tasks/sam.cr"

Development

Before running tests call

$ crystal examples/sam.cr setup

Contributing

  1. Fork it
  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

  • imdrasil Roman Kalnytskyi - creator, maintainer

More Repositories

1

jennifer.cr

Crystal ORM using ActiveRecord pattern with flexible query DSL
Crystal
411
star
2

hermes.cr

Datamapper like Crystal ORM and adapter for Elasticsearch
Crystal
37
star
3

crymagick

A crystal wrapper for ImageMagick command line.
Crystal
35
star
4

kemal_and_jennifer_sample_app

Crystal
15
star
5

jennifer_sqlite3_adapter

SQLite3 adapter for Jennifer ORM
Crystal
13
star
6

serializer

Simple and fast Crystal object serializer
Crystal
10
star
7

form_object

Form objects decoupled from models.
Crystal
9
star
8

factory

Library for factorizing objects
Crystal
8
star
9

time_zone

Time Zone provides daylight savings aware transformations between times in different time zones.
Crystal
8
star
10

sage

Minimal authorization library
Crystal
7
star
11

pager

Easy to use paginator for modern crystal web framework
Crystal
6
star
12

amber_and_jennifer_sample_app

Crystal
6
star
13

view_model.cr

ViewModel pattern implementation and extended form builder
Crystal
6
star
14

flash_container.cr

Simple framework-agnostic flash message container.
Crystal
4
star
15

spider-gazelle_and_jennifer_sample_app

Crystal
4
star
16

ifrit

Crystal lib with different useful stuff
Crystal
4
star
17

jennifer_twin

Jennifer presenter library
Crystal
3
star
18

email_opener

Preview email in the default browser instead of sending it
Crystal
3
star
19

glushkov

Extended mathematical shard
Crystal
3
star
20

hydrogel

Ruby Elasticsearch query builder
Ruby
2
star
21

asu_git_5122

TRPZ git lab work
JavaScript
1
star
22

pear_warranty

HTML
1
star
23

http_method_emulator

Simple HTTP method emulator for form submitted data.
Crystal
1
star
24

imdrasil.github.io

Personal site
HTML
1
star
25

r_omega

JavaScript
1
star
26

change-api

Just simple rails-api application for change coins and bancnotes
Ruby
1
star
27

y_object

Ruby
1
star
28

asu_git_tutorial

JavaScript
1
star
29

release-docs-action

Dockerfile
1
star