mytestdsl 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/mydsl +3 -0
  3. data/lib/testdsl.rb +7 -0
  4. metadata +45 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: bfa4f89c04b897cc235fdf31d42644cabeded9a598187a7f03a0f503ec3657ba
4
+ data.tar.gz: d989b528bbeec72a329cf53f1f85efef107b6f1cdf054b871bc637b589d3ddaf
5
+ SHA512:
6
+ metadata.gz: 4ee3ffea2cbba9fbf62061e2f14b95919c127aa57b1d84a77211c4a517a4dd3cee523f0276f72772be4e46a51fae40b53a2e6f371f7c3e6df35a9314a4dbbcf2
7
+ data.tar.gz: 58edc69b845eb5f80010bf9fa204ae45750cc9e841dad3026ad57debbbe8c90b9ae903d02f207387cc29d4d11520387a2c766b4ea480736691a64c1bb01933fa
data/bin/mydsl ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ puts "Hello, world"
data/lib/testdsl.rb ADDED
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ class Testdsl
4
+ def self.hi
5
+ puts "Hello world!"
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mytestdsl
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Test Test
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-05-01 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A simple hello world gem
14
+ email: test@test.com
15
+ executables:
16
+ - mydsl
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - bin/mydsl
21
+ - lib/testdsl.rb
22
+ homepage: https://rubygems.org/gems/hola
23
+ licenses:
24
+ - MIT
25
+ metadata: {}
26
+ post_install_message:
27
+ rdoc_options: []
28
+ require_paths:
29
+ - lib
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ requirements: []
41
+ rubygems_version: 3.3.5
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: Testdsl!
45
+ test_files: []