svl-hola 0.2.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/hola +4 -0
  3. data/lib/hola.rb +5 -0
  4. metadata +46 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b1e030fa3bc9d7850e9afc5f410a97c784b0b23b
4
+ data.tar.gz: 11fd5bf47545bc2fc0183384b8a53b9eb9d061cd
5
+ SHA512:
6
+ metadata.gz: 00b03707e68ea58b27b98cab7bbc994c91daaa29a04b50f87bfa4ee595b2936d4eb1dd4866220a46673753787e8980fc2859d94cb5704b8c4110b1bddca7c724
7
+ data.tar.gz: 26a7965f44ed04d7ad104967774c84249c1d980aa53512fd2b48d1420e66e4b420a32b0541a1bc8704467d72468294e90b1ef9c4ce254df68bdbf9db50595af6
data/bin/hola ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'hola'
4
+ puts Hola.hi(ARGV[0])
data/lib/hola.rb ADDED
@@ -0,0 +1,5 @@
1
+ class Hola
2
+ def self.hi message
3
+ "Hello #{message}!"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: svl-hola
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Nick Quaranto
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-04-25 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A simple hello world gem
14
+ email: nick@quaran.to
15
+ executables:
16
+ - hola
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - bin/hola
21
+ - lib/hola.rb
22
+ homepage: http://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
+ rubyforge_project:
42
+ rubygems_version: 2.5.2
43
+ signing_key:
44
+ specification_version: 4
45
+ summary: Hola!
46
+ test_files: []