instantramen-pro 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.
- checksums.yaml +7 -0
- data/README.md +33 -0
- data/lib/instantramen_pro.rb +19 -0
- metadata +49 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 27094708c386d9ae6d5e3c95f3e5ebdda9d134b8e36bce49dac3ec23f12f9e2e
|
|
4
|
+
data.tar.gz: 22c177ed1bb37a5914f161737d745223c4f87096a43c9b4599d7bb8e90470d7a
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: feb7b25c7a9d806e6c85f493a7f33c3afdc0dd10c58eb7c3552d8c9313e34761ed9c9481b1adbf7f638f1f149b2ff2da55433a5c380117a763f81a3fffd6751d
|
|
7
|
+
data.tar.gz: f996cae56df89114c0a7dad3722e8ea835f1b4c0ecfead463b18b73125ccb67534d824e55827e7ee815dcc890045a0551d29d06c7bd3aece022df7350354f688
|
data/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# instantramen-pro
|
|
2
|
+
|
|
3
|
+
Ruby metadata helper package for [instantramen.pro](https://instantramen.pro).
|
|
4
|
+
|
|
5
|
+
This gem provides a small Ruby entry point for Instant Ramen Pro website
|
|
6
|
+
metadata. It is ready to publish to RubyGems once a RubyGems API key is
|
|
7
|
+
configured locally.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
gem install instantramen-pro
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
```ruby
|
|
18
|
+
require "instantramen_pro"
|
|
19
|
+
|
|
20
|
+
puts InstantramenPro.hello
|
|
21
|
+
puts InstantramenPro::HOMEPAGE
|
|
22
|
+
puts InstantramenPro.site_info
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Links
|
|
26
|
+
|
|
27
|
+
- Website: https://instantramen.pro
|
|
28
|
+
- Documentation: https://instantramen.pro/docs
|
|
29
|
+
- Source: https://github.com/youram470-art/instantramen-pro-ruby
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
|
|
33
|
+
MIT
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
module InstantramenPro
|
|
2
|
+
VERSION = "0.1.0"
|
|
3
|
+
HOMEPAGE = "https://instantramen.pro"
|
|
4
|
+
DOCUMENTATION = "https://instantramen.pro/docs"
|
|
5
|
+
REPOSITORY = "https://github.com/youram470-art/instantramen-pro-ruby"
|
|
6
|
+
|
|
7
|
+
def self.hello
|
|
8
|
+
"hello from instantramen.pro"
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def self.site_info
|
|
12
|
+
{
|
|
13
|
+
name: "instantramen.pro",
|
|
14
|
+
homepage: HOMEPAGE,
|
|
15
|
+
documentation: DOCUMENTATION,
|
|
16
|
+
repository: REPOSITORY
|
|
17
|
+
}
|
|
18
|
+
end
|
|
19
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: instantramen-pro
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- instantramen.pro
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-06-26 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: A lightweight Ruby integration metadata package for the Instant Ramen
|
|
14
|
+
Pro website at https://instantramen.pro.
|
|
15
|
+
email:
|
|
16
|
+
- support@instantramen.pro
|
|
17
|
+
executables: []
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- README.md
|
|
22
|
+
- lib/instantramen_pro.rb
|
|
23
|
+
homepage: https://instantramen.pro
|
|
24
|
+
licenses:
|
|
25
|
+
- MIT
|
|
26
|
+
metadata:
|
|
27
|
+
homepage_uri: https://instantramen.pro
|
|
28
|
+
source_code_uri: https://github.com/youram470-art/instantramen-pro-ruby
|
|
29
|
+
documentation_uri: https://instantramen.pro/docs
|
|
30
|
+
post_install_message:
|
|
31
|
+
rdoc_options: []
|
|
32
|
+
require_paths:
|
|
33
|
+
- lib
|
|
34
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - ">="
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '0'
|
|
39
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
40
|
+
requirements:
|
|
41
|
+
- - ">="
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: '0'
|
|
44
|
+
requirements: []
|
|
45
|
+
rubygems_version: 3.0.3.1
|
|
46
|
+
signing_key:
|
|
47
|
+
specification_version: 4
|
|
48
|
+
summary: Ruby metadata helper package for https://instantramen.pro
|
|
49
|
+
test_files: []
|