cecil 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.yard/README.md +8 -7
- data/Gemfile.lock +1 -1
- data/README.md +8 -7
- data/lib/cecil/version.rb +1 -1
- metadata +7 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ef1d818707306795d00f2091aa0eeb727cdb9580ee2eea29a517e9a902189f21
|
|
4
|
+
data.tar.gz: 78241ae4094c59895b02d742d088df582b508c7a41a9c36a1375b0c52550fad2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 02af71be281767ce9358355e9f5eac2a539618709720c36f99d04077710d7ce2a64cb9bdbced15fe09d3be99bc3419bf10911f48bc06022acbb14dd075287b57
|
|
7
|
+
data.tar.gz: bbd187ae8064062dd8456aa359e53a8929f75190a23d8887441b44f8355d2a64d00d67eeba7bcf00d0960a6929a6360396d8729acc32690eb47cf3e420e74470
|
data/.yard/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# Cecil
|
|
2
|
+
[](https://www.rubydoc.info/github/nicholaides/cecil)
|
|
3
|
+
[](https://rubygems.org/gems/cecil)
|
|
2
4
|
|
|
3
|
-
An experimental templating library for generating source code.
|
|
5
|
+
An experimental templating library designed specifically for generating source code (especially for languages that aren’t as meta-programmable as Ruby).
|
|
4
6
|
|
|
5
|
-
Cecil templates
|
|
7
|
+
Cecil templates closely resemble the target source code, making templates easier to write, read, and maintain.
|
|
6
8
|
|
|
7
9
|
## Features
|
|
8
10
|
|
|
@@ -464,19 +466,18 @@ For example, the {Cecil::Lang::TypeScript::Helpers `Cecil::Lang::TypeScript`][{L
|
|
|
464
466
|
|
|
465
467
|
## Installation
|
|
466
468
|
|
|
467
|
-
Gem can be installed from github. Once I'm ready to bother with version numbers and releases and such, then I'll publish to Rubygems.
|
|
468
|
-
|
|
469
469
|
From your shell:
|
|
470
470
|
|
|
471
471
|
```sh
|
|
472
|
-
bundle add cecil
|
|
472
|
+
bundle add cecil
|
|
473
473
|
```
|
|
474
474
|
|
|
475
|
-
|
|
475
|
+
In your Gemfile like:
|
|
476
476
|
|
|
477
477
|
```ruby
|
|
478
|
-
gem 'cecil'
|
|
478
|
+
gem 'cecil'
|
|
479
479
|
```
|
|
480
|
+
|
|
480
481
|
## Development
|
|
481
482
|
|
|
482
483
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# Cecil
|
|
2
|
+
[](https://www.rubydoc.info/github/nicholaides/cecil)
|
|
3
|
+
[](https://rubygems.org/gems/cecil)
|
|
2
4
|
|
|
3
|
-
An experimental templating library for generating source code.
|
|
5
|
+
An experimental templating library designed specifically for generating source code (especially for languages that aren’t as meta-programmable as Ruby).
|
|
4
6
|
|
|
5
|
-
Cecil templates
|
|
7
|
+
Cecil templates closely resemble the target source code, making templates easier to write, read, and maintain.
|
|
6
8
|
|
|
7
9
|
## Features
|
|
8
10
|
|
|
@@ -464,19 +466,18 @@ For example, the [`Cecil::Lang::TypeScript`][{Lang::TypeScript}] subclass define
|
|
|
464
466
|
|
|
465
467
|
## Installation
|
|
466
468
|
|
|
467
|
-
Gem can be installed from github. Once I'm ready to bother with version numbers and releases and such, then I'll publish to Rubygems.
|
|
468
|
-
|
|
469
469
|
From your shell:
|
|
470
470
|
|
|
471
471
|
```sh
|
|
472
|
-
bundle add cecil
|
|
472
|
+
bundle add cecil
|
|
473
473
|
```
|
|
474
474
|
|
|
475
|
-
|
|
475
|
+
In your Gemfile like:
|
|
476
476
|
|
|
477
477
|
```ruby
|
|
478
|
-
gem 'cecil'
|
|
478
|
+
gem 'cecil'
|
|
479
479
|
```
|
|
480
|
+
|
|
480
481
|
## Development
|
|
481
482
|
|
|
482
483
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/lib/cecil/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cecil
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Nicholaides
|
|
@@ -10,8 +10,10 @@ bindir: exe
|
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2024-01-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description:
|
|
14
|
-
|
|
13
|
+
description: |
|
|
14
|
+
An experimental templating library designed specifically for generating source code (especially for languages that
|
|
15
|
+
aren’t as meta-programmable as Ruby). Cecil templates closely resemble the target source code, making templates
|
|
16
|
+
easier to write, read, and maintain.
|
|
15
17
|
email:
|
|
16
18
|
- mike@nicholaides.com
|
|
17
19
|
executables: []
|
|
@@ -66,5 +68,6 @@ requirements: []
|
|
|
66
68
|
rubygems_version: 3.3.26
|
|
67
69
|
signing_key:
|
|
68
70
|
specification_version: 4
|
|
69
|
-
summary: An experimental templating library for generating source
|
|
71
|
+
summary: An experimental templating library designed specifically for generating source
|
|
72
|
+
code.
|
|
70
73
|
test_files: []
|