ruby_conversations 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6fda09ad54e7d90af2ce6a245d5cf605eeed8fda82417c767e05da1d508de675
4
- data.tar.gz: 001e00fa324dd5dde21ee3e023bc1234a33af45e05c53e72f7c4ea0fbf76a74d
3
+ metadata.gz: b290c737d59d0eb2cefab58afdb2a1f87f9f52cbe4b3396a63fbcee88b3ab7fd
4
+ data.tar.gz: 951c13ba7e151aefaab4b5c8bff4dce2e1f783f43d4670ccc06a42f63b1d5245
5
5
  SHA512:
6
- metadata.gz: e7f7c1de4df1b8a716e0dd2e8e80ae4f993632edff5707633defe3a8e2812c6245b1c0795884d48d80f1f3f2329139fc8dc8458e20ffcb3811b2bef8f7b00016
7
- data.tar.gz: 1a07daa45e40aeb337a2f87db2dfdaeb58516268d9b54e1476656ecdf068529a143e0ee6dbadfe25ec9d180e01308812379a358a9228c947354fd229ca8578f7
6
+ metadata.gz: f37b409fc142074098da0ac7cb94e7c7d14164bcbd654d6314e9c5f512f89d6d921deec70ef9cd6532a9bc594d5e29fbc2ec0b0328f15e0bbc510424fcf64dec
7
+ data.tar.gz: ab706df48294795c1064f2e36ccda7a151a6b2e1f0485b57acac140aad203fc13b7ac058004c3eb161286b579f277ba3f3e248f52774a68bbdffd9c8881258ee
@@ -10,7 +10,7 @@ module RubyConversations
10
10
 
11
11
  # Associations
12
12
  has_many :versions, class_name: RubyConversations.configuration.prompt_version_class
13
- has_many :message_prompts, class_name: RubyConversations.configuration.message_prompt_class
13
+ has_many :message_prompts, class_name: RubyConversations.configuration.message_prompt_class, dependent: :nullify
14
14
  has_many :messages, through: :message_prompts, class_name: RubyConversations.configuration.message_class,
15
15
  source: :ai_message, dependent: :nullify
16
16
  belongs_to :organization, optional: true
@@ -3,7 +3,7 @@
3
3
  module RubyConversations
4
4
  MAJOR = 1
5
5
  MINOR = 0
6
- PATCH = 4
6
+ PATCH = 5
7
7
 
8
8
  VERSION = "#{RubyConversations::MAJOR}.#{RubyConversations::MINOR}.#{RubyConversations::PATCH}".freeze
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_conversations
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Shippy