walkthrough_awanllm 0.1.0 → 0.1.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 +4 -4
- data/lib/walkthrough_awanllm/version.rb +1 -1
- data/walkthrough_awanllm.gemspec +44 -0
- metadata +7 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f4b8b2dda25499d5a831efefe5538b0b0011061edf1eebc5c8e9e627f9a84b7
|
4
|
+
data.tar.gz: c3f7eab6972b222a356aad93687a5e09998c5ed5fab5b572f7c50d2e66a2e332
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6721772222bd6f7fd464c900e0c0badd24328c32baa88ac7e48b5b6c8dcd1b97e85fc30762c1888067c079c12f75595e9abc8b903b228be59d30f77a2c54a83
|
7
|
+
data.tar.gz: 72f36b1397dc05a8609f46f7bfaa6513b20852a5c35b9ac65e2019ccdd4dc9a0ff78bc279b9bb5974e8f5df073960d2920d8394da400bb7a348be99c2a06aab2
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "lib/walkthrough_awanllm/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "walkthrough_awanllm"
|
7
|
+
spec.version = WalkthroughAwanllm::VERSION
|
8
|
+
spec.authors = ["Mrudul John"]
|
9
|
+
spec.email = ["mrudulmathews@gmail.com"]
|
10
|
+
|
11
|
+
spec.summary = "A Ruby gem to Generate Project Development Walkthrough with the AwanLLM API."
|
12
|
+
spec.description = "A Ruby gem to generate a walkthrough the project lifecycle with the AwanLLM API for generating and retrieving content."
|
13
|
+
spec.homepage = "https://github.com/mruduljohn/Walkthrough_awanllm_gem"
|
14
|
+
spec.license = "MIT"
|
15
|
+
spec.required_ruby_version = ">= 3.0.0"
|
16
|
+
|
17
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
18
|
+
|
19
|
+
# Specify which files should be added to the gem when it is released.
|
20
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
21
|
+
spec.files = IO.popen(%w[git ls-files -z], chdir: __dir__, err: IO::NULL) do |ls|
|
22
|
+
ls.readlines("\x0", chomp: true).reject do |f|
|
23
|
+
f.start_with?(*%w[bin/ test/ spec/ features/ .git appveyor Gemfile])
|
24
|
+
end
|
25
|
+
end + [
|
26
|
+
"lib/walkthrough_awanllm.rb",
|
27
|
+
"lib/walkthrough_awanllm/railtie.rb",
|
28
|
+
"lib/walkthrough_awanllm/version.rb",
|
29
|
+
"bin/setup_awanllm.rb", # Include setup_awanllm.rb file
|
30
|
+
]
|
31
|
+
|
32
|
+
spec.bindir = "bin"
|
33
|
+
spec.executables = ["setup_awanllm.rb"]
|
34
|
+
spec.require_paths = ["lib"]
|
35
|
+
spec.add_dependency "httparty"
|
36
|
+
spec.add_development_dependency "bundler", "~> 2.0"
|
37
|
+
spec.add_development_dependency "rake", "~> 13.0"
|
38
|
+
spec.add_development_dependency "minitest", "~> 5.0"
|
39
|
+
spec.post_install_message = <<-MESSAGE
|
40
|
+
Thank you for installing the AwanLLM gem!
|
41
|
+
To complete the setup, please run the following command:
|
42
|
+
setup_awanllm
|
43
|
+
MESSAGE
|
44
|
+
end
|
metadata
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: walkthrough_awanllm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mrudul John
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
date: 2024-06-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
@@ -70,7 +70,8 @@ description: A Ruby gem to generate a walkthrough the project lifecycle with the
|
|
70
70
|
API for generating and retrieving content.
|
71
71
|
email:
|
72
72
|
- mrudulmathews@gmail.com
|
73
|
-
executables:
|
73
|
+
executables:
|
74
|
+
- setup_awanllm.rb
|
74
75
|
extensions: []
|
75
76
|
extra_rdoc_files: []
|
76
77
|
files:
|
@@ -84,6 +85,7 @@ files:
|
|
84
85
|
- lib/walkthrough_awanllm/railtie.rb
|
85
86
|
- lib/walkthrough_awanllm/version.rb
|
86
87
|
- sig/walkthrough_awanllm.rbs
|
88
|
+
- walkthrough_awanllm.gemspec
|
87
89
|
homepage: https://github.com/mruduljohn/Walkthrough_awanllm_gem
|
88
90
|
licenses:
|
89
91
|
- MIT
|
@@ -92,7 +94,7 @@ metadata:
|
|
92
94
|
post_install_message: |2
|
93
95
|
Thank you for installing the AwanLLM gem!
|
94
96
|
To complete the setup, please run the following command:
|
95
|
-
|
97
|
+
setup_awanllm
|
96
98
|
rdoc_options: []
|
97
99
|
require_paths:
|
98
100
|
- lib
|
@@ -110,5 +112,5 @@ requirements: []
|
|
110
112
|
rubygems_version: 3.5.3
|
111
113
|
signing_key:
|
112
114
|
specification_version: 4
|
113
|
-
summary: A Ruby gem to Generate Project Development
|
115
|
+
summary: A Ruby gem to Generate Project Development Walkthrough with the AwanLLM API.
|
114
116
|
test_files: []
|