execgem 1.0.0

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/execgem +3 -0
  3. data/lib/execgem.rb +5 -0
  4. metadata +46 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 8edab8945301bd34271e2ddbc447f9ea8763089f20aec58d6eef3a3b0a7f029f
4
+ data.tar.gz: 68c92c07ee1834db8631270999bb4724db39cd416e18be42224f09a73e1e1380
5
+ SHA512:
6
+ metadata.gz: b2df5936255682ed1964104943f44c67d4fd5603c6fdd8e3d2bfdee00b84500aeeb934387ffc784f3844ab9029386f7e60ac1f20c5b856e4a4ce0c504525fe39
7
+ data.tar.gz: 2a3cfcf7e668d846f44fda588d68736e26e30a747cfbc5a8d09d2c3d5aaf347965344f8662ab5dcb2923155bf254ba1ccd45901ccf30839ccedb719080c94acd
data/bin/execgem ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require 'Execgem'
3
+ puts Execgem::hello_world
data/lib/execgem.rb ADDED
@@ -0,0 +1,5 @@
1
+ module Execgem
2
+ def self.hello_world
3
+ "Just trying to create executable gym!"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: execgem
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Ravi Shankar
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-11-28 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Creating ab executable gym, nothing much!
14
+ email:
15
+ - ravishankar.yadav@techigai.io
16
+ executables:
17
+ - execgem
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - bin/execgem
22
+ - lib/execgem.rb
23
+ homepage: http://rubygems.org/gems/execgem
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.25
43
+ signing_key:
44
+ specification_version: 4
45
+ summary: execgem Solutions tutorial gem
46
+ test_files: []