walkthrough_awanllm 0.1.0 → 0.1.11

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3a6b691e6d3f1023d32733347a61c412390434b93331905aad7679335a8686b4
4
- data.tar.gz: 2b765172c9465dfc2179061635f8e39d938386f3ecd40a1705e12015f4e6a874
3
+ metadata.gz: aa569e0418332a73d3c3b176db2eec63facd6ceff4bd37fb8524c09cb71eea69
4
+ data.tar.gz: 35532ba5da69b42a158601808a328be0defa3b65905e0f4ad300813362d26ad2
5
5
  SHA512:
6
- metadata.gz: 04617cdb004d1c65a118f4e66cb222dde75f58da432240885a66f24c2892bf6192cf7dc4031e16833940aea98d6d144c04cbebd394cae933cd1523687577990f
7
- data.tar.gz: 1fe5d80e013fefeba6fdb7cb2fad2ecba7261b5be15d9b8a8487007d96057c7a4696b855c006e601f0f1638f352aecbb2290c695a812419042bfd69eb25a3fb1
6
+ metadata.gz: 9e3a0b59b472762ca4a74746f84ceab7f44da83da09879e510c3b669dc93fcc9741514bfd364e40764c3ffe7b841bcb0f78a578d87d60ad1e42f6b1288e90500
7
+ data.tar.gz: c8893a61c9c521dfff2aea0d7e97f800cb6c8018c3e74fb6a5bcf13da84a87db11ee0a5b0fa14a061f5b0b941e87af022c74c210ca4fabd7a470a9fdfa1be6e6
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WalkthroughAwanllm
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.11"
5
5
  end
@@ -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 = "{UNDER DEVELOPMENT NOT FOR USE YET}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.0
4
+ version: 0.1.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mrudul John
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2024-06-06 00:00:00.000000000 Z
12
12
  dependencies:
@@ -66,11 +66,12 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '5.0'
69
- description: A Ruby gem to generate a walkthrough the project lifecycle with the AwanLLM
70
- API for generating and retrieving content.
69
+ description: "{UNDER DEVELOPMENT NOT FOR USE YET}A Ruby gem to generate a walkthrough
70
+ the project lifecycle with the AwanLLM 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
- ruby setup_awanllm.rb
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 Walthrough with the AwanLLM API.
115
+ summary: A Ruby gem to Generate Project Development Walkthrough with the AwanLLM API.
114
116
  test_files: []