sayhello12 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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 976a92c4dc77f7dca06f551d832aa92ef19102ee872a20f63c42ac60840de7a5
4
+ data.tar.gz: a6f274d31a19cb2ecf0bf07a71920dd73e1731378b104b135ddc91a962939f3b
5
+ SHA512:
6
+ metadata.gz: 0642fd55494792fe462659c9e7d10bf13ff1386cef7d998f2f0ab4ee391134680fd595bf28ec53e1c837ef38f16b8242d42a81b522b65a4d2c9b52e7218ac889
7
+ data.tar.gz: aab710d9e5436a0fc777fa41f67330a20e0c08d7314b01c369905d08c99c8f88d0f5992b5cccdf328bf9adf29c8cd7157555d2f7d1066a94852612f756d9c05b
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ *.gem
data/GemFile ADDED
@@ -0,0 +1,2 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
data/app.rb ADDED
@@ -0,0 +1,4 @@
1
+ require './lib/sayhello12'
2
+
3
+ t=SayHello.new()
4
+ puts t.say_hello
data/lib/sayhello12.rb ADDED
@@ -0,0 +1,8 @@
1
+
2
+
3
+ class SayHello
4
+ def say_hello()
5
+ "hello"
6
+ end
7
+ end
8
+
@@ -0,0 +1,24 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $LOAD_PATH.push File.expand_path("../lib", __FILE__)
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = "sayhello12"
6
+ s.version = '0.0.1'
7
+ s.platform = Gem::Platform::RUBY
8
+ s.licenses = ['MIT']
9
+ s.authors = ["arash abedi"]
10
+ s.email = ["arashabedi.dev@gmail.com"]
11
+ s.homepage = "https://github.com/arashabedii/telebot"
12
+ s.summary = 'test .'
13
+ s.description = 'test dead easy.'
14
+
15
+ s.required_ruby_version = '>= 2.3.0'
16
+
17
+ # If this line is removed, all hard partying will cease.
18
+ s.post_install_message = "When you HTTParty, you must party hard!"
19
+
20
+ all_files = `git ls-files`.split("\n")
21
+
22
+ s.files = all_files
23
+ s.require_paths = ["lib"]
24
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sayhello12
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - arash abedi
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-06-21 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: test dead easy.
14
+ email:
15
+ - arashabedi.dev@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".gitignore"
21
+ - GemFile
22
+ - app.rb
23
+ - lib/sayhello12.rb
24
+ - sayhello12.gemspec
25
+ homepage: https://github.com/arashabedii/telebot
26
+ licenses:
27
+ - MIT
28
+ metadata: {}
29
+ post_install_message: When you HTTParty, you must party hard!
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: 2.3.0
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubygems_version: 3.4.10
45
+ signing_key:
46
+ specification_version: 4
47
+ summary: test .
48
+ test_files: []