Artifacts using Ceylon Logging (7)
Sort:
popular
|
newest
1. Specks
# specks
**specks** enables a different way to check that your Ceylon code works.
Instead of writing traditional tests, you write specifications.
The main difference is the focus: specifications focus on behaviour and outcomes, while unit tests focus on interactions and, most of the time, implementation details.
For example, here's a very simple Specification written with `specks`:
testExecutor (`class SpecksTestExecutor`)
test
shared Specification simpleSpec() => Specification {
...
Last Release on Oct 2, 2017
# What is IceCode Config
Having worked with many java configuration libraries. I have not found one that did what I wanted. This library addresses issue I found missing in other config libs
# Basics
A ConfigurationService is basically a String to String Map with facilities to manage conversion, validation,defaults, monitoring, and loading of values of that map.
# Getting Started:
```ceylon
value key = Key("key",stringConverter);
value config = createFromFile("test.properties",{key})
value val = ...
Last Release on Aug 26, 2017
## `ceylon-config`
A Ceylon Library for managing configuration from several sources, including
* config files
* env variables
* java system-properties
This library inspired by [The Twelve-Factor App](https://github.com/yogthos/config)
and [yogthos/config](https://github.com/yogthos/config) project.
Configuration is resolved in next order:
1. config `json/toml` file in current dir
2. profile `json/toml` file
3. custom config file `json/toml`, specified by cmd parameter `--config`
4. Environment ...
Last Release on Feb 7, 2019
4. Core
Depin Core - Dependency injection framework core module for Ceylon
## Logging
This module uses standard Ceylon logging defined via `module ceylon.logging`. Configuration of logging may be altered using [[log]] value.
Whole module uses [[log]] for logging purpose.
Reference to `module ceylon.logging` documentation for more information.
# Introduction
Whole concept of this framework, is based on [[Dependency]] and [[Injection]] abstract classes.
Both are tightly coupled together.
The [[Dependency]] ...
Last Release on Apr 15, 2020
Core engine module for Gecon framework. Provides [[Gecon]] class to be instantiated, as main entry point for executing of transformations.
Setup is done via [[herd.gecon.core.engine.configuration::Configuration]] class instance. Use Ceylon builder pattern for readable initiaiation.
All transformation are provided via [[Provider]] instances.
Example:
value gecon = Gecon {
provider = AutoProvider{
transformations = ScopeProvisioning{
scopes=[
`module herd.gecon.core.transformer`,
`module ...
Last Release on May 28, 2019
6. Core
gyokuro is a framework written in Ceylon, similar to Sinatra
and Spark, for creating web applications with very little boilerplate.
It is based on the Ceylon SDK and uses `ceylon.http.server`.
Last Release on Sep 24, 2017
- Prev
- 1
- Next