luo 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/luo/version.rb +1 -1
- metadata +3 -4
- data/lib/luo/init_project._rb +0 -71
- /data/templates/{NoteBookGemfile → NotebookGemfile} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12b18554758f8e56d6ed51c06479d5a7adb5307281ba070f55bbf7b8aeff7f39
|
4
|
+
data.tar.gz: e60117cc08d28b7e0be2e256bba326b727ef823e3cc050cadcf71bc2aa85b5ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce08dc5d0136f7eff5939601544608caa4c5d8b06ba170fd56df3c69f393a96f6ea925254eb06f1cae545b3b2ed82367dedc5fbbc21d2c37e691c3f331507097
|
7
|
+
data.tar.gz: 203eb46cb4602bcbeaa985981322a95d682bff93c5f9382f38ba96af425233e31f7f8981f3d3e509543ef224d7916a63c6711d8e1c28a2800c065c06a72db75b
|
data/Gemfile.lock
CHANGED
data/lib/luo/version.rb
CHANGED
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.
|
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-
|
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/
|
272
|
+
- templates/NotebookGemfile
|
274
273
|
- templates/application.rb
|
275
274
|
- templates/env
|
276
275
|
- templates/init.rb
|
data/lib/luo/init_project._rb
DELETED
@@ -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
|