luo 0.2.2 → 0.2.3

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: 3e2f307cd4e0e397dfda5f5a540267d519bfac40dd0f7067948aa6211b6280a1
4
- data.tar.gz: 763b3ae18becb12d6546667567406673564ee5016675424986dcfc3bdf288528
3
+ metadata.gz: 12b18554758f8e56d6ed51c06479d5a7adb5307281ba070f55bbf7b8aeff7f39
4
+ data.tar.gz: e60117cc08d28b7e0be2e256bba326b727ef823e3cc050cadcf71bc2aa85b5ca
5
5
  SHA512:
6
- metadata.gz: 48dbac5c5f6101910faa01d556a29368ef5bc19289ca0021746bd3b6a62e1414b14efb71b63a3791c92ecc4c371b49168bd956cb01b5804309f8b18f6301aa44
7
- data.tar.gz: e048e9fa7ab6554a8752acbbeb757633bb149a9e8b24edd9dd023305fecef0b9d9ba32801a4ce9b2f8da35b99fbb0a7c5801b5bc2dc2e3620b68cb72b7b6e477
6
+ metadata.gz: ce08dc5d0136f7eff5939601544608caa4c5d8b06ba170fd56df3c69f393a96f6ea925254eb06f1cae545b3b2ed82367dedc5fbbc21d2c37e691c3f331507097
7
+ data.tar.gz: 203eb46cb4602bcbeaa985981322a95d682bff93c5f9382f38ba96af425233e31f7f8981f3d3e509543ef224d7916a63c6711d8e1c28a2800c065c06a72db75b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- luo (0.2.2)
4
+ luo (0.2.3)
5
5
  dotenv (~> 2.8, >= 2.8.1)
6
6
  dry-configurable (~> 1.0, >= 1.0.1)
7
7
  dry-schema (~> 1.13, >= 1.13.1)
data/lib/luo/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Luo
4
- VERSION = "0.2.2"
4
+ VERSION = "0.2.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: luo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - MJ
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-05-24 00:00:00.000000000 Z
11
+ date: 2023-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: zeitwerk
@@ -236,7 +236,6 @@ files:
236
236
  - lib/luo/error_handle.rb
237
237
  - lib/luo/helpers.rb
238
238
  - lib/luo/http_client.rb
239
- - lib/luo/init_project._rb
240
239
  - lib/luo/loader.rb
241
240
  - lib/luo/marqo.rb
242
241
  - lib/luo/memory_history.rb
@@ -270,7 +269,7 @@ files:
270
269
  - sig/luo/prompts.rbs
271
270
  - sig/luo/xinghuo.rbs
272
271
  - templates/AppGemfile
273
- - templates/NoteBookGemfile
272
+ - templates/NotebookGemfile
274
273
  - templates/application.rb
275
274
  - templates/env
276
275
  - templates/init.rb
@@ -1,71 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Luo
4
- module InitProject
5
- extend self
6
-
7
- def project_template_file(name)
8
- File.join(File.dirname(__FILE__), 'projects', name)
9
- end
10
- def create_bundle_file()
11
- puts "create Gemfile"
12
- version = Luo::VERSION
13
- unless File.exist?('Gemfile')
14
- gemfile = <<-GEMFILE.gsub(/^ */, '')
15
- source 'https://rubygems.org'
16
- gem 'luo'
17
- gem 'iruby'
18
- gem 'pry'
19
- GEMFILE
20
- File.open('Gemfile', 'w') do |file|
21
- file.puts(gemfile)
22
- end
23
- end
24
- end
25
-
26
- def create_templates
27
- puts "create templates directory"
28
- unless File.directory?('templates')
29
- FileUtils.cp_r(File.join(__dir__, 'projects', 'prompts'), 'prompts')
30
- end
31
- end
32
-
33
- def create_agent_directory
34
- puts "create agent directory"
35
- FileUtils.mkdir_p('agents')
36
- end
37
-
38
- def create_application
39
- puts "create application"
40
- copy_file('init.rb', 'init.rb')
41
- copy_file('application.rb', 'app.rb')
42
- copy_file('env', '.env')
43
- copy_file('time_agent.rb', 'agents/time_agent.rb')
44
- copy_file('weather_agent.rb', 'agents/weather_agent.rb')
45
- copy_file('luo.ipynb', 'luo.ipynb')
46
- copy_file("test.yml", "test.yml")
47
- end
48
-
49
- def copy_file(file_name, target_file_name)
50
- puts "copy #{file_name} to #{target_file_name}"
51
- unless File.exist?(target_file_name)
52
- FileUtils.copy_file(project_template_file(file_name), target_file_name)
53
- end
54
- end
55
-
56
- def run()
57
- create_bundle_file
58
- create_templates
59
- create_agent_directory
60
- create_application
61
-
62
- Helpers.print_md """
63
- ## Luo Project Initialized
64
- You can now run `bundle install` to install the dependencies
65
- and edit .env to add your API key.
66
- and `bundle exec ruby application.rb` to run the project.
67
- """
68
- end
69
-
70
- end
71
- end
File without changes