liquidot 0.0.1

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.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/bin/liquidot +4 -0
  3. data/lib/liquidot.rb +5 -0
  4. metadata +46 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 201924e4b9598fea7ec71f7f7ce505c93a7d20292c525c6172616f11f2d679f6
4
+ data.tar.gz: 3680e795b4a911abc17725e44b474802841c0bd9052bcbfff155098ab167ad61
5
+ SHA512:
6
+ metadata.gz: f5ec952c0a6b43dcce9ff15f30485c50e29e886d986adb6cdd49b62b196a66598257d840ec5b37ef1b3c43b565c794e1d39cc659448c6b60dc35801f4fb3e35a
7
+ data.tar.gz: 5a99845b0df0a217e7d87e1a488461e015491bd7243c2b785775b700edbe4baf545bde87d1bce73613ba6c755dd5573ddaba6d23b4b9b5c10d5ed1187ee04933
data/bin/liquidot ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby3.0
2
+
3
+ require 'liquidot'
4
+ puts LiquiDot::hello_world
data/lib/liquidot.rb ADDED
@@ -0,0 +1,5 @@
1
+ module LiquiDot
2
+ def self.hello_world
3
+ "Hello world!"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: liquidot
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Ronni Elken Lindsgaard
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-06-03 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Generates graphviz DOT files formatted using liquid
14
+ email:
15
+ - ronni.lindsgaard@gmail.com
16
+ executables:
17
+ - liquidot
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - bin/liquidot
22
+ - lib/liquidot.rb
23
+ homepage: http://rubygems.org/gems/liquidot
24
+ licenses:
25
+ - MIT
26
+ metadata: {}
27
+ post_install_message:
28
+ rdoc_options: []
29
+ require_paths:
30
+ - lib
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ requirements: []
42
+ rubygems_version: 3.3.5
43
+ signing_key:
44
+ specification_version: 4
45
+ summary: A simple tool for generating dot files using liquid templating
46
+ test_files: []