active_prompt_rails 0.1.14 → 0.1.16

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: a873c6d8dc089798c08a5f056a8260fd2976bc834212c2b1f93bae52a030d68e
4
- data.tar.gz: 93f5d4323c87e266ad8508b3322ab3e82b3b92a422547e03949a8b292c61d400
3
+ metadata.gz: cbcc6b67633bb249817ae5116777bbc5608997e88a9a90327062c57f7b0b5e05
4
+ data.tar.gz: f551319c27839c42a9d713c07599698a080465d81c9e4312fc25940d3df4a019
5
5
  SHA512:
6
- metadata.gz: 6a118d8c1771793370da74122aaa63a7072104dab3da16098a3cc8f3d512f6f73ce838cffa2e258fef20876f29083505125f536c93ec0b49a53dd9dcc782b42d
7
- data.tar.gz: 2b328dbe56276178d6c6084ebbff68cbaaeea0c403990941622d04ac87bbd79804db7339edddb7f90f6143f077d62580dde88f42662ab767f0eb69f72f1e812f
6
+ metadata.gz: 52e1eead573874c4e7b4af689de7bf24f6e55035f51dcd2c624323b490bd14416daa33199b871303c6fbd8ecb5ccef3aed3e40878fe180f1008dba21c6c2487a
7
+ data.tar.gz: 8c09402217c7d068ddc3be06376c7fe2e47a1760361d95716b79e6215ae0c1ec53cd2895ade5f1a30ef0cf828c8bdde90fe8dd562ea0e6b33a8d5d69995f3361
@@ -43,7 +43,7 @@ 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|
@@ -4,6 +4,6 @@ require "rails/railtie"
4
4
 
5
5
  module ActivePrompt
6
6
  class Railtie < Rails::Railtie
7
- eager_load_namespaces << ActivePrompt
7
+ config.eager_load_namespaces << ActivePrompt
8
8
  end
9
9
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActivePrompt
4
- VERSION = "0.1.14"
4
+ VERSION = "0.1.16"
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.14
4
+ version: 0.1.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shane Perreault