cecil 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yard/README.md +4 -2
- data/Gemfile.lock +1 -1
- data/README.md +4 -2
- data/lib/cecil/version.rb +1 -1
- metadata +6 -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
|
+
[![Yard Documentation](https://img.shields.io/badge/rdoc.info-blue?label=docs)](https://www.rubydoc.info/github/nicholaides/cecil)
|
3
|
+
[![Gem Version](https://img.shields.io/gem/v/cecil)](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
|
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
# Cecil
|
2
|
+
[![Yard Documentation](https://img.shields.io/badge/rdoc.info-blue?label=docs)](https://www.rubydoc.info/github/nicholaides/cecil)
|
3
|
+
[![Gem Version](https://img.shields.io/gem/v/cecil)](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
|
|
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
|
@@ -11,8 +11,9 @@ cert_chain: []
|
|
11
11
|
date: 2024-01-21 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |
|
14
|
-
An experimental templating library for generating source code
|
15
|
-
|
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.
|
16
17
|
email:
|
17
18
|
- mike@nicholaides.com
|
18
19
|
executables: []
|
@@ -67,5 +68,6 @@ requirements: []
|
|
67
68
|
rubygems_version: 3.3.26
|
68
69
|
signing_key:
|
69
70
|
specification_version: 4
|
70
|
-
summary: An experimental templating library for generating source
|
71
|
+
summary: An experimental templating library designed specifically for generating source
|
72
|
+
code.
|
71
73
|
test_files: []
|