active_prompt_rails 0.1.15 → 0.1.17

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: 669de17537172fcd6a97aaafcedaa4941f54ab367a2896be2b3edbf8def8bd01
4
- data.tar.gz: 6bf0f56be8d62f4d19eccf0417419a8c3216e8ffbadaad2c2175b50ed3a0a8db
3
+ metadata.gz: df889c73c63dcc2e26df997462cd642c181e816eb2bf7288ebd16073530b2c78
4
+ data.tar.gz: 5b0410dc6666a2522b284ca57414b5ac9b3033002ca8772f037ae884d74ef51a
5
5
  SHA512:
6
- metadata.gz: 2362c8ab8fb54333169873c4aed3a52b4c8b17338aab205f50c750b081f152a61e719379b440432385163f7eda7dcfbc6ed2d65f6a6a4b60c07a7a16317aa9aa
7
- data.tar.gz: a26e71742117fbd82bfe87822d7b90bbdf35f5c5306ae5e5b047b0a69dfd80e4233104e2b9aa29db8a5b534a601b99489c44e6b4a64ca3ba12d572902d318c89
6
+ metadata.gz: 79326076dcec72e9dea1647210023938f005b597b3ca156dcae35bb619fc4ae55c4466c170a3349b53122be705c30eccfa875e8d2f1ac97ea6aaffcd174abbec
7
+ data.tar.gz: d8051dc16be682e9a00905abecb845a75e8590cfecda2845a428c777606fc65d41e6cf63ff9ea0ffa64864d2e76819f1eea4fed816de595296eca30240acb0e2
@@ -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}_prompt", template_name)
46
+ template_path = File.join("app", "prompts", "#{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.15"
4
+ VERSION = "0.1.17"
5
5
  end
@@ -10,7 +10,7 @@ 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}"
13
+ empty_directory "app/prompts/#{name.underscore}_prompt"
14
14
  template "system.liquid", "app/prompts/#{name.underscore}_prompt/system.liquid"
15
15
  template "user.liquid", "app/prompts/#{name.underscore}_prompt/user.liquid"
16
16
  create_file "app/prompts/#{name.underscore}_prompt.rb", <<~RUBY
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.15
4
+ version: 0.1.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shane Perreault