active_prompt_rails 0.1.12 → 0.1.13

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: b6f33ae20b1d80118ce6616297eccff17755e1fc74b719026eb3c65662861ea6
4
- data.tar.gz: 876e8703497ee0402a25185a052951b6269769cf5cdd165fa15a1b699bc5146b
3
+ metadata.gz: 8f1db637faba44dcd244dc2ea3da17178b23be8ec8d5ee8d8b7f2edc53493b26
4
+ data.tar.gz: 617603e5d44ed4f51e187a9f9f6b9b0f5cfa2ff06c73f040c01d387a26ebd533
5
5
  SHA512:
6
- metadata.gz: aaea2125194efc9c22e9c7349910ee933363fccc03fc0d97c9ae46e245d77dc2bbd1fbc1b2c4f939ae1e3d2408416d45e44c66a783438eb1d9043650abd50fb2
7
- data.tar.gz: c430c2b2ac87d9b8a4302a72d739679a74267f1372e80a5f2be1edcbc953c44a70f1f5518d16ac5993ef0822db29a0b509a1e2c20651f21dfefaabe1eb27ce69
6
+ metadata.gz: 1129428b3d8128f6ccd4ace4a4320eb08fd40168b6b573b97277cada67d0093dc918eba199232bdf99520000a45dfae3c082377c3a0dcc30817378b0e933bd29
7
+ data.tar.gz: a5c1bbffeb386557fdf07f50f1588b8b93f71e418df54100b4ac35e27cd1913297111fc7cc287139663c61577e8c484950bc8cc04d9e03ea27c05d4f38316ccc
@@ -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, template_name)
46
+ template_path = File.join("app", "prompts", "#{self.class.name.underscore}_prompt", 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
- config.autoload_paths += Dir["#{config.root}/app/prompts/**/"]
7
+ config.autoload_paths << Dir["#{config.root}/app/prompts/**/"]
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.12"
4
+ VERSION = "0.1.13"
5
5
  end
data/lib/active_prompt.rb CHANGED
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "active_prompt/base"
4
- require_relative "active_prompt/errors"
5
- require_relative "active_prompt/version"
6
- require_relative "active_prompt/railtie" if defined?(::Rails::Railtie)
3
+ require "active_prompt/railtie" if defined?(::Rails::Railtie)
4
+ require "active_prompt/base"
5
+ require "active_prompt/errors"
6
+ require "active_prompt/version"
7
7
 
8
8
  module ActivePrompt
9
9
  class Error < StandardError; end
@@ -11,8 +11,8 @@ module ActivePrompt
11
11
 
12
12
  def create_prompt_files
13
13
  empty_directory "app/prompts/#{name.underscore}"
14
- template "system.liquid", "app/prompts/#{name.underscore}/system.liquid"
15
- template "user.liquid", "app/prompts/#{name.underscore}/user.liquid"
14
+ template "system.liquid", "app/prompts/#{name.underscore}_prompt/system.liquid"
15
+ template "user.liquid", "app/prompts/#{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.12
4
+ version: 0.1.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shane Perreault