ruby_ex_org 0.1.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/lib/ruby_ex.rb +10 -0
  3. data/lib/ruby_ex/version.rb +4 -0
  4. metadata +44 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 837ff43267860d371eaff9129e7a60223c149cf6c89ba2f3e8d825b8088bad24
4
+ data.tar.gz: e45fd959cb3432c023eac7943d5f0999049048a938dbe3a6643b888fc94bedb9
5
+ SHA512:
6
+ metadata.gz: b57232820b0c77e7c21c74fc651c52978d176f6c872e1e22705d0b941b66adf37273e2c8cf7bd06953bf9d53c4c2ca54bd6cf05900fb97116e0cca5a5f8a1fb8
7
+ data.tar.gz: d9b994caaa3ccb6f0a33e2fe4d59cce57622c98484f4baa87ed0cc54322afe6983eb9ecc78a866d0d1e0560bc628585b97e2c029ad24ac0ff99935819ab0e2f4
@@ -0,0 +1,10 @@
1
+ require "ruby_ex/version"
2
+
3
+ module RubyEx
4
+ class Error < StandardError; end
5
+
6
+ def self.greet(name)
7
+ put "Hello, #{name}! I'm Ruby"
8
+ end
9
+
10
+ end
@@ -0,0 +1,4 @@
1
+ module RubyEx
2
+ VERSION = "0.1.0"
3
+ SOURCE_CODE_URI= 'https://github.com/Orgensthe/exe'
4
+ end
metadata ADDED
@@ -0,0 +1,44 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby_ex_org
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - orgensthe
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-02-04 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Attempting to build a gem
14
+ email: w4102945@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/ruby_ex.rb
20
+ - lib/ruby_ex/version.rb
21
+ homepage: ''
22
+ licenses:
23
+ - MIT
24
+ metadata: {}
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ requirements: []
40
+ rubygems_version: 3.1.2
41
+ signing_key:
42
+ specification_version: 4
43
+ summary: ruby_ex
44
+ test_files: []