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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7aebd276ab6179fdf0fda6e2f2e5931ce8ca8a6ae1ba6921dc4aef92e408419c
4
- data.tar.gz: bb381be1145ef880aa4348a156166c82eb51bc3e8cae94545683fbe928207d0a
3
+ metadata.gz: ef1d818707306795d00f2091aa0eeb727cdb9580ee2eea29a517e9a902189f21
4
+ data.tar.gz: 78241ae4094c59895b02d742d088df582b508c7a41a9c36a1375b0c52550fad2
5
5
  SHA512:
6
- metadata.gz: f311e7689597ca7d98bd9db7912d48e6bcc1105b73af29966ba4fc291ef77a0a0aedb6701a3700455b88ec9df8b8efc87e42467f7a4f2a612ab0d411fdc070c9
7
- data.tar.gz: 9651d08d7bc741d6ee1548d89e0e87ab17bcd28aed7a91eb5715dad7741e5f97fc24bbc7da0c57a34691874bf6e010b45472bf3519dc4d85e9154655634c6a48
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 look like the source code you want to generate thanks to Ruby's flexible syntax.
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 --github=nicholaides/cecil
472
+ bundle add cecil
473
473
  ```
474
474
 
475
- Add it to your Gemfile like:
475
+ In your Gemfile like:
476
476
 
477
477
  ```ruby
478
- gem 'cecil', github: 'nicholaides/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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cecil (0.1.0)
4
+ cecil (0.1.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
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 look like the source code you want to generate thanks to Ruby's flexible syntax.
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 --github=nicholaides/cecil
472
+ bundle add cecil
473
473
  ```
474
474
 
475
- Add it to your Gemfile like:
475
+ In your Gemfile like:
476
476
 
477
477
  ```ruby
478
- gem 'cecil', github: 'nicholaides/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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Cecil
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.2"
5
5
  end
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.0
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: Cecil templates look like the source code you want to generate thanks
14
- to Ruby's flexible syntax.
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 code.
71
+ summary: An experimental templating library designed specifically for generating source
72
+ code.
70
73
  test_files: []