active_prompt_rails 0.1.16 → 0.1.18

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cbcc6b67633bb249817ae5116777bbc5608997e88a9a90327062c57f7b0b5e05
4
- data.tar.gz: f551319c27839c42a9d713c07599698a080465d81c9e4312fc25940d3df4a019
3
+ metadata.gz: 0cce75514b94749199f3bd2b3dbbb3a5017ae5bd69d2c32af838a4aa84268a2c
4
+ data.tar.gz: 6fc57f049084c4e4f804c606eb9e9b1f482d06cad1ff48e203f8c517863c1b58
5
5
  SHA512:
6
- metadata.gz: 52e1eead573874c4e7b4af689de7bf24f6e55035f51dcd2c624323b490bd14416daa33199b871303c6fbd8ecb5ccef3aed3e40878fe180f1008dba21c6c2487a
7
- data.tar.gz: 8c09402217c7d068ddc3be06376c7fe2e47a1760361d95716b79e6215ae0c1ec53cd2895ade5f1a30ef0cf828c8bdde90fe8dd562ea0e6b33a8d5d69995f3361
6
+ metadata.gz: 9dfbb0943bab181f662da38f69b92a2141f8599743d4e14ad6870cef3d9218c2d35c5a9335ec473085e05d3896eb10365766e46b5bffe122c8c4900c4bea8c41
7
+ data.tar.gz: 72e5e29a24e415e5b467464fe0b44d35c7bd8398e76db307159aa00575f2703cd33cfe4e1875719769fae6ff75d0ad9387d32049b4435a5a8bce391d8c345552
@@ -43,13 +43,13 @@ module ActivePrompt
43
43
  private
44
44
 
45
45
  def render_template(template_name)
46
- template_path = File.join("app", "prompts", "#{self.class.name.underscore}", template_name)
46
+ template_path = File.join("app", "prompts", "templates", "#{self.class.name.underscore}", template_name)
47
47
  template = File.read(template_path)
48
48
  context = # Dynamic method call to get the variable value
49
49
  self.class.variables.map do |var|
50
50
  [var, send(var)]
51
51
  end.to_h
52
- Liquid::Template.parse(template).render(context)
52
+ Liquid::Template.parse(template).render(context.stringify_keys)
53
53
  end
54
54
  end
55
55
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActivePrompt
4
- VERSION = "0.1.16"
4
+ VERSION = "0.1.18"
5
5
  end
@@ -10,9 +10,9 @@ module ActivePrompt
10
10
  source_root File.expand_path("templates", __dir__)
11
11
 
12
12
  def create_prompt_files
13
- empty_directory "app/prompts/#{name.underscore}_prompt"
14
- template "system.liquid", "app/prompts/#{name.underscore}_prompt/system.liquid"
15
- template "user.liquid", "app/prompts/#{name.underscore}_prompt/user.liquid"
13
+ empty_directory "app/prompts/templates/#{name.underscore}_prompt"
14
+ template "system.liquid", "app/prompts/templates/#{name.underscore}_prompt/system.liquid"
15
+ template "user.liquid", "app/prompts/templates/#{name.underscore}_prompt/user.liquid"
16
16
  create_file "app/prompts/#{name.underscore}_prompt.rb", <<~RUBY
17
17
  # This is a generated prompt class for #{file_name}
18
18
  class #{name.camelize}Prompt < ActivePrompt::Base
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_prompt_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.16
4
+ version: 0.1.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shane Perreault