bscf-core 0.1.0 → 0.2.0

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.
Files changed (76) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +1 -1
  3. data/app/models/bscf/core/address.rb +7 -0
  4. data/app/models/bscf/core/business.rb +15 -0
  5. data/app/models/bscf/core/category.rb +11 -0
  6. data/app/models/bscf/core/order.rb +24 -0
  7. data/app/models/bscf/core/order_item.rb +15 -0
  8. data/app/models/bscf/core/product.rb +29 -0
  9. data/app/models/bscf/core/quotation.rb +29 -0
  10. data/app/models/bscf/core/quotation_item.rb +23 -0
  11. data/app/models/bscf/core/request_for_quotation.rb +13 -0
  12. data/app/models/bscf/core/rfq_item.rb +9 -0
  13. data/app/models/bscf/core/role.rb +10 -0
  14. data/app/models/bscf/core/user.rb +21 -0
  15. data/app/models/bscf/core/user_profile.rb +26 -0
  16. data/app/models/bscf/core/user_role.rb +8 -0
  17. data/app/models/bscf/core/virtual_account.rb +53 -0
  18. data/app/models/bscf/core/virtual_account_transaction.rb +158 -0
  19. data/db/migrate/20250326065606_create_bscf_core_users.rb +18 -0
  20. data/db/migrate/20250326075111_create_bscf_core_roles.rb +9 -0
  21. data/db/migrate/20250326080646_create_bscf_core_user_profiles.rb +19 -0
  22. data/db/migrate/20250326081052_create_bscf_core_addresses.rb +14 -0
  23. data/db/migrate/20250326084233_create_bscf_core_user_roles.rb +10 -0
  24. data/db/migrate/20250326085741_create_bscf_core_virtual_accounts.rb +24 -0
  25. data/db/migrate/20250326103305_create_bscf_core_categories.rb +11 -0
  26. data/db/migrate/20250326105652_create_bscf_core_products.rb +14 -0
  27. data/db/migrate/20250326112449_create_bscf_core_businesses.rb +14 -0
  28. data/db/migrate/20250326115203_create_bscf_core_request_for_quotations.rb +11 -0
  29. data/db/migrate/20250326120613_create_bscf_core_rfq_items.rb +12 -0
  30. data/db/migrate/20250326121246_create_bscf_core_bscf_core_virtual_account_transactions.rb +19 -0
  31. data/db/migrate/20250327041651_create_bscf_core_quotations.rb +15 -0
  32. data/db/migrate/20250327044020_create_bscf_core_quotation_items.rb +15 -0
  33. data/db/migrate/20250327102217_create_bscf_core_orders.rb +14 -0
  34. data/db/migrate/20250327112412_create_bscf_core_order_items.rb +14 -0
  35. data/lib/bscf/core/engine.rb +18 -0
  36. data/lib/bscf/core/version.rb +1 -1
  37. data/lib/tasks/release.rake +42 -0
  38. data/spec/dummy/db/schema.rb +246 -0
  39. data/spec/dummy/log/development.log +2060 -0
  40. data/spec/dummy/log/test.log +69259 -0
  41. data/spec/examples.txt +167 -3
  42. data/spec/factories/bscf/core/addresses.rb +10 -0
  43. data/spec/factories/bscf/core/businesses.rb +24 -0
  44. data/spec/factories/bscf/core/categories.rb +16 -0
  45. data/spec/factories/bscf/core/order_items.rb +10 -0
  46. data/spec/factories/bscf/core/orders.rb +10 -0
  47. data/spec/factories/bscf/core/products.rb +8 -0
  48. data/spec/factories/bscf/core/quotation_items.rb +11 -0
  49. data/spec/factories/bscf/core/quotations.rb +28 -0
  50. data/spec/factories/bscf/core/request_for_quotations.rb +7 -0
  51. data/spec/factories/bscf/core/rfq_items.rb +8 -0
  52. data/spec/factories/bscf/core/roles.rb +5 -0
  53. data/spec/factories/bscf/core/user_profiles.rb +15 -0
  54. data/spec/factories/bscf/core/user_roles.rb +6 -0
  55. data/spec/factories/bscf/core/users.rb +10 -0
  56. data/spec/factories/bscf/core/virtual_account_transactions.rb +34 -0
  57. data/spec/factories/bscf/core/virtual_accounts.rb +38 -0
  58. data/spec/models/bscf/core/address_spec.rb +12 -0
  59. data/spec/models/bscf/core/business_spec.rb +64 -0
  60. data/spec/models/bscf/core/category_spec.rb +43 -0
  61. data/spec/models/bscf/core/order_item_spec.rb +26 -0
  62. data/spec/models/bscf/core/order_spec.rb +16 -0
  63. data/spec/models/bscf/core/product_spec.rb +47 -0
  64. data/spec/models/bscf/core/quotation_item_spec.rb +44 -0
  65. data/spec/models/bscf/core/quotation_spec.rb +41 -0
  66. data/spec/models/bscf/core/request_for_quotation_spec.rb +13 -0
  67. data/spec/models/bscf/core/rfq_item_spec.rb +14 -0
  68. data/spec/models/bscf/core/role_spec.rb +14 -0
  69. data/spec/models/bscf/core/user_profile_spec.rb +20 -0
  70. data/spec/models/bscf/core/user_role_spec.rb +13 -0
  71. data/spec/models/bscf/core/user_spec.rb +22 -0
  72. data/spec/models/bscf/core/virtual_account_spec.rb +111 -0
  73. data/spec/models/bscf/core/virtual_account_transaction_spec.rb +133 -0
  74. data/spec/spec_helper.rb +4 -1
  75. data/spec/support/requests/shared_requests.rb +4 -4
  76. metadata +69 -2
@@ -0,0 +1,44 @@
1
+ require 'rails_helper'
2
+
3
+ module Bscf
4
+ module Core
5
+ RSpec.describe QuotationItem, type: :model do
6
+ attributes = [
7
+ { quantity: [ :presence, :numericality ] },
8
+ { unit_price: [ :presence, :numericality ] },
9
+ { unit: :presence },
10
+ { quotation: :belong_to },
11
+ { rfq_item: :belong_to },
12
+ { product: :belong_to }
13
+ ]
14
+
15
+ include_examples("model_shared_spec", :quotation_item, attributes)
16
+
17
+ describe 'validations' do
18
+ it { should validate_numericality_of(:quantity).is_greater_than(0) }
19
+ it { should validate_numericality_of(:unit_price).is_greater_than_or_equal_to(0) }
20
+ end
21
+
22
+ describe '#calculate_subtotal' do
23
+ let(:quotation_item) { build(:quotation_item, quantity: 5, unit_price: 10.0) }
24
+
25
+ it 'calculates subtotal before validation' do
26
+ quotation_item.valid?
27
+ expect(quotation_item.subtotal).to eq(50.0)
28
+ end
29
+
30
+ it 'does not calculate subtotal if quantity is missing' do
31
+ quotation_item.quantity = nil
32
+ quotation_item.valid?
33
+ expect(quotation_item.subtotal).to eq(50.0)
34
+ end
35
+
36
+ it 'does not calculate subtotal if unit_price is missing' do
37
+ quotation_item.unit_price = nil
38
+ quotation_item.valid?
39
+ expect(quotation_item.subtotal).to eq(50.0)
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,41 @@
1
+ require 'rails_helper'
2
+
3
+ module Bscf
4
+ module Core
5
+ RSpec.describe Quotation, type: :model do
6
+ attributes = [
7
+ { price: [ :presence, :numericality ] },
8
+ { delivery_date: :presence },
9
+ { valid_until: :presence },
10
+ { status: :presence },
11
+ { request_for_quotation: :belong_to },
12
+ { business: :belong_to },
13
+ { quotation_items: :have_many },
14
+ { orders: :have_many },
15
+ { products: :have_many }
16
+ ]
17
+
18
+ include_examples("model_shared_spec", :quotation, attributes)
19
+
20
+ describe 'validations' do
21
+ it { should validate_numericality_of(:price).is_greater_than_or_equal_to(0) }
22
+ end
23
+
24
+ describe 'enums' do
25
+ it { should define_enum_for(:status).with_values(draft: 0, submitted: 1, accepted: 2, rejected: 3, expired: 4) }
26
+ end
27
+
28
+ describe 'scopes' do
29
+ let!(:draft_quotation) { create(:quotation) }
30
+ let!(:submitted_quotation) { create(:quotation, :submitted) }
31
+ let!(:rejected_quotation) { create(:quotation, :rejected) }
32
+ let!(:expired_quotation) { create(:quotation, :expired) }
33
+
34
+ it 'filters active quotations' do
35
+ expect(described_class.active).to include(draft_quotation, submitted_quotation)
36
+ expect(described_class.active).not_to include(rejected_quotation, expired_quotation)
37
+ end
38
+ end
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,13 @@
1
+ require 'rails_helper'
2
+
3
+ module Bscf
4
+ module Core
5
+ RSpec.describe RequestForQuotation, type: :model do
6
+ attributes = [
7
+ { user: :belong_to },
8
+ { status: :presence }
9
+ ]
10
+ include_examples("model_shared_spec", :request_for_quotation, attributes)
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,14 @@
1
+ require 'rails_helper'
2
+
3
+ module Bscf
4
+ module Core
5
+ RSpec.describe RfqItem, type: :model do
6
+ attributes = [
7
+ { request_for_quotation: :belong_to },
8
+ { product: :belong_to },
9
+ { quantity: :presence }
10
+ ]
11
+ include_examples("model_shared_spec", :rfq_item, attributes)
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,14 @@
1
+ require 'rails_helper'
2
+
3
+ module Bscf
4
+ module Core
5
+ RSpec.describe Role, type: :model do
6
+ attributes = [
7
+ { name: :presence },
8
+ { user_roles: :have_many },
9
+ { users: :have_many }
10
+ ]
11
+ include_examples("model_shared_spec", :role, attributes)
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,20 @@
1
+ require 'rails_helper'
2
+
3
+ module Bscf
4
+ module Core
5
+ RSpec.describe UserProfile, type: :model do
6
+ attributes = [
7
+ { date_of_birth: :presence },
8
+ { nationality: :presence },
9
+ { occupation: :presence },
10
+ { source_of_funds: :presence },
11
+ { gender: :presence },
12
+ { user: :belong_to },
13
+ { address: :belong_to }
14
+ ]
15
+ include_examples("model_shared_spec", :user_profile, attributes)
16
+
17
+ it { is_expected.to belong_to(:verified_by).class_name('User').optional }
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,13 @@
1
+ require 'rails_helper'
2
+
3
+ module Bscf
4
+ module Core
5
+ RSpec.describe UserRole, type: :model do
6
+ attributes = [
7
+ { user: :belong_to },
8
+ { role: :belong_to }
9
+ ]
10
+ include_examples("model_shared_spec", :user_role, attributes)
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,22 @@
1
+ require 'rails_helper'
2
+
3
+ module Bscf
4
+ module Core
5
+ RSpec.describe User, type: :model do
6
+ attributes = [
7
+ { first_name: :presence },
8
+ { middle_name: :presence },
9
+ { last_name: :presence },
10
+ { password: :presence },
11
+ { phone_number: %i[presence uniqueness] },
12
+ { email: %i[presence uniqueness] },
13
+ { user_profile: :have_one },
14
+ { user_roles: :have_many },
15
+ { roles: :have_many },
16
+ { orders_placed: :have_many },
17
+ { orders_received: :have_many }
18
+ ]
19
+ include_examples("model_shared_spec", :user, attributes)
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,111 @@
1
+ require 'rails_helper'
2
+
3
+ module Bscf
4
+ module Core
5
+ RSpec.describe VirtualAccount, type: :model do
6
+ attributes = [
7
+ { account_number: %i[presence uniqueness] },
8
+ { cbs_account_number: %i[presence uniqueness] },
9
+ { balance: [ :presence, :numericality ] },
10
+ { interest_rate: [ :presence, :numericality ] },
11
+ { interest_type: :presence },
12
+ { branch_code: :presence },
13
+ { product_scheme: [ :presence ] },
14
+ { voucher_type: [ :presence ] },
15
+ { status: :presence },
16
+ { user: :belong_to }
17
+ ]
18
+
19
+ include_examples("model_shared_spec", :virtual_account, attributes)
20
+
21
+ it { should validate_numericality_of(:balance).is_greater_than_or_equal_to(0) }
22
+ it { should validate_numericality_of(:interest_rate).is_greater_than_or_equal_to(0) }
23
+ it { should validate_inclusion_of(:product_scheme).in_array(VirtualAccount::PRODUCT_SCHEMES) }
24
+ it { should validate_inclusion_of(:voucher_type).in_array(VirtualAccount::VOUCHER_TYPES) }
25
+
26
+ describe 'scopes' do
27
+ let!(:active_account) { create(:virtual_account, :active_status) }
28
+ let!(:pending_account) { create(:virtual_account) }
29
+ let!(:savings_account) { create(:virtual_account) }
30
+ let!(:current_account) { create(:virtual_account, :current_account) }
31
+ let!(:loan_account) { create(:virtual_account, :loan_account) }
32
+
33
+ it 'filters active accounts' do
34
+ expect(described_class.active_accounts).to include(active_account)
35
+ expect(described_class.active_accounts).not_to include(pending_account)
36
+ end
37
+
38
+ it 'filters by branch' do
39
+ expect(described_class.by_branch('BR001')).to include(active_account)
40
+ end
41
+
42
+ it 'filters by product scheme' do
43
+ expect(described_class.by_product('SAVINGS')).to include(savings_account)
44
+ expect(described_class.by_product('SAVINGS')).not_to include(current_account)
45
+ expect(described_class.by_product('CURRENT')).to include(current_account)
46
+ expect(described_class.by_product('LOAN')).to include(loan_account)
47
+ end
48
+ end
49
+
50
+ describe '#generate_account_number' do
51
+ let(:virtual_account) { build(:virtual_account) }
52
+
53
+ it 'generates account number on create' do
54
+ expect(virtual_account.account_number).to be_nil
55
+ virtual_account.save
56
+ expect(virtual_account.account_number).to be_present
57
+ expect(virtual_account.account_number).to match(/\ABR001SAVINGSREGULAR\d{6}\z/)
58
+ end
59
+
60
+ it 'maintains existing account number' do
61
+ existing_number = 'BR001SAVINGSREGULAR000001'
62
+ virtual_account.account_number = existing_number
63
+ virtual_account.save
64
+ expect(virtual_account.account_number).to eq(existing_number)
65
+ end
66
+
67
+ it 'increments sequence number' do
68
+ first_account = create(:virtual_account)
69
+ second_account = create(:virtual_account)
70
+
71
+ first_seq = first_account.account_number[-6..-1].to_i
72
+ second_seq = second_account.account_number[-6..-1].to_i
73
+
74
+ expect(second_seq).to eq(first_seq + 1)
75
+ end
76
+ end
77
+
78
+ describe 'interest types' do
79
+ it 'supports simple interest' do
80
+ account = build(:virtual_account)
81
+ expect(account.interest_type).to eq('simple')
82
+ end
83
+
84
+ it 'supports compound interest' do
85
+ account = build(:virtual_account, :compound_interest)
86
+ expect(account.interest_type).to eq('compound')
87
+ end
88
+ end
89
+
90
+ describe 'account types' do
91
+ it 'creates savings account by default' do
92
+ account = create(:virtual_account)
93
+ expect(account.product_scheme).to eq('SAVINGS')
94
+ expect(account.interest_rate).to eq(2.5)
95
+ end
96
+
97
+ it 'creates current account' do
98
+ account = create(:virtual_account, :current_account)
99
+ expect(account.product_scheme).to eq('CURRENT')
100
+ expect(account.interest_rate).to eq(0.0)
101
+ end
102
+
103
+ it 'creates loan account' do
104
+ account = create(:virtual_account, :loan_account)
105
+ expect(account.product_scheme).to eq('LOAN')
106
+ expect(account.interest_rate).to eq(12.5)
107
+ end
108
+ end
109
+ end
110
+ end
111
+ end
@@ -0,0 +1,133 @@
1
+ require 'rails_helper'
2
+
3
+ module Bscf
4
+ module Core
5
+ RSpec.describe VirtualAccountTransaction, type: :model do
6
+ attributes = [
7
+ { amount: [ :presence, :numericality ] },
8
+ { transaction_type: :presence },
9
+ { status: :presence },
10
+ { reference_number: [ :presence, :uniqueness ] }
11
+ ]
12
+
13
+ include_examples("model_shared_spec", :virtual_account_transaction, attributes)
14
+
15
+ describe 'validations' do
16
+ it { should validate_numericality_of(:amount).is_greater_than(0) }
17
+ end
18
+
19
+ describe 'enums' do
20
+ it { should define_enum_for(:transaction_type).with_values(transfer: 0, deposit: 1, withdrawal: 2) }
21
+ it { should define_enum_for(:status).with_values(pending: 0, completed: 1, failed: 2, cancelled: 3) }
22
+ end
23
+
24
+ describe '#generate_reference_number' do
25
+ let(:transaction) { build(:virtual_account_transaction) }
26
+
27
+ it 'generates reference number before validation on create' do
28
+ transaction.save
29
+ expect(transaction.reference_number).to be_present
30
+ expect(transaction.reference_number).to match(/\ATXN\d{14}[0-9a-f]{6}\z/)
31
+ end
32
+
33
+ it 'does not override existing reference number' do
34
+ existing_ref = 'TXN20230101123456abc123'
35
+ transaction.reference_number = existing_ref
36
+ transaction.save
37
+ expect(transaction.reference_number).to eq(existing_ref)
38
+ end
39
+ end
40
+
41
+ describe 'transaction processing' do
42
+ let(:from_account) { create(:virtual_account, balance: 1000.00, status: :active) }
43
+ let(:to_account) { create(:virtual_account, balance: 500.00, status: :active) }
44
+ let(:transaction) do
45
+ build(:virtual_account_transaction,
46
+ from_account: from_account,
47
+ to_account: to_account,
48
+ amount: 300.00)
49
+ end
50
+
51
+ context 'when processing transfer' do
52
+ it 'updates account balances on successful transfer' do
53
+ expect(transaction.save).to be true
54
+ expect(transaction.process!).to be true
55
+
56
+ expect(from_account.reload.balance.round(2)).to eq(700.00)
57
+ expect(to_account.reload.balance.round(2)).to eq(800.00)
58
+ expect(transaction.reload.status).to eq('completed')
59
+ end
60
+
61
+ it 'validates sufficient balance' do
62
+ transaction.amount = 2000.00
63
+ expect(transaction.save).to be false
64
+ expect(transaction.errors[:from_account]).to include('insufficient balance')
65
+ end
66
+
67
+ it 'validates account status' do
68
+ from_account.update!(status: :suspended)
69
+ expect(transaction.save).to be false
70
+ expect(transaction.errors[:from_account]).to include('must be active')
71
+ end
72
+ end
73
+
74
+ context 'when processing deposit' do
75
+ let(:transaction) do
76
+ build(:virtual_account_transaction, :deposit,
77
+ to_account: to_account,
78
+ amount: 300.00)
79
+ end
80
+
81
+ it 'updates recipient account balance' do
82
+ expect(transaction.save).to be true
83
+ expect(transaction.process!).to be true
84
+
85
+ expect(to_account.reload.balance.round(2)).to eq(800.00)
86
+ expect(transaction.reload.status).to eq('completed')
87
+ end
88
+
89
+ it 'validates recipient account status' do
90
+ to_account.update!(status: :suspended)
91
+ expect(transaction.save).to be false
92
+ expect(transaction.errors[:to_account]).to include('must be active')
93
+ end
94
+ end
95
+
96
+ context 'when processing withdrawal' do
97
+ let(:transaction) do
98
+ build(:virtual_account_transaction, :withdrawal,
99
+ from_account: from_account,
100
+ amount: 300.00)
101
+ end
102
+
103
+ it 'updates source account balance' do
104
+ expect(transaction.save).to be true
105
+ expect(transaction.process!).to be true
106
+
107
+ expect(from_account.reload.balance.round(2)).to eq(700.00)
108
+ expect(transaction.reload.status).to eq('completed')
109
+ end
110
+
111
+ it 'validates source account status' do
112
+ from_account.update!(status: :suspended)
113
+ expect(transaction.save).to be false
114
+ expect(transaction.errors[:from_account]).to include('must be active')
115
+ end
116
+ end
117
+ end
118
+
119
+ describe '#cancel!' do
120
+ it 'cancels pending transaction' do
121
+ transaction = create(:virtual_account_transaction)
122
+ expect(transaction.cancel!).to be true
123
+ expect(transaction.status).to eq('cancelled')
124
+ end
125
+
126
+ it 'cannot cancel completed transaction' do
127
+ transaction = create(:virtual_account_transaction, :completed)
128
+ expect(transaction.cancel!).to be false
129
+ end
130
+ end
131
+ end
132
+ end
133
+ end
data/spec/spec_helper.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require "simplecov"
2
- # require "./spec/support/models/shared_examples"
2
+ require "./spec/support/models/shared_examples"
3
3
  # require "./spec/support/requests/shared_requests"
4
4
  require "rspec/retry"
5
5
 
@@ -15,6 +15,9 @@ RSpec.configure do |config|
15
15
  config.shared_context_metadata_behavior = :apply_to_host_groups
16
16
  config.example_status_persistence_file_path = "spec/examples.txt"
17
17
  config.disable_monkey_patching!
18
+
19
+ config.formatter = RSpec::Core::Formatters::DocumentationFormatter
20
+
18
21
  config.profile_examples = 10
19
22
  config.order = :random
20
23
  Kernel.srand config.seed
@@ -39,7 +39,7 @@ module Bscf
39
39
  describe "POST /create" do
40
40
  context "with valid params" do
41
41
  it "creates a new object" do
42
- params = {payload: valid_attributes}
42
+ params = { payload: valid_attributes }
43
43
  expect do
44
44
  post(
45
45
  send("#{controller}_url"),
@@ -58,7 +58,7 @@ module Bscf
58
58
 
59
59
  context "with invalid params" do
60
60
  it "renders a JSON response with errors for the new object" do
61
- params = {payload: invalid_attributes}
61
+ params = { payload: invalid_attributes }
62
62
  post(
63
63
  send("#{controller}_url"),
64
64
  params: params,
@@ -82,7 +82,7 @@ module Bscf
82
82
  context "with valid params" do
83
83
  it "updates the requested object" do
84
84
  obj = create(factory)
85
- params = {id: obj.to_param, payload: new_attributes}
85
+ params = { id: obj.to_param, payload: new_attributes }
86
86
  put(
87
87
  send("#{controller.singularize}_url", obj),
88
88
  headers: headers,
@@ -103,7 +103,7 @@ module Bscf
103
103
  context "with invalid params" do
104
104
  it "renders a JSON response with errors for the object" do
105
105
  obj = create(factory)
106
- params = {id: obj.to_param, payload: invalid_attributes}
106
+ params = { id: obj.to_param, payload: invalid_attributes }
107
107
  put(
108
108
  send("#{controller.singularize}_url", obj),
109
109
  headers: headers,
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bscf-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Asrat
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-24 00:00:00.000000000 Z
10
+ date: 2025-03-27 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: active_model_serializers
@@ -286,13 +286,46 @@ files:
286
286
  - app/controllers/bscf/core/application_controller.rb
287
287
  - app/jobs/bscf/core/application_job.rb
288
288
  - app/mailers/bscf/core/application_mailer.rb
289
+ - app/models/bscf/core/address.rb
289
290
  - app/models/bscf/core/application_record.rb
291
+ - app/models/bscf/core/business.rb
292
+ - app/models/bscf/core/category.rb
293
+ - app/models/bscf/core/order.rb
294
+ - app/models/bscf/core/order_item.rb
295
+ - app/models/bscf/core/product.rb
296
+ - app/models/bscf/core/quotation.rb
297
+ - app/models/bscf/core/quotation_item.rb
298
+ - app/models/bscf/core/request_for_quotation.rb
299
+ - app/models/bscf/core/rfq_item.rb
300
+ - app/models/bscf/core/role.rb
301
+ - app/models/bscf/core/user.rb
302
+ - app/models/bscf/core/user_profile.rb
303
+ - app/models/bscf/core/user_role.rb
304
+ - app/models/bscf/core/virtual_account.rb
305
+ - app/models/bscf/core/virtual_account_transaction.rb
290
306
  - config/database.yml
291
307
  - config/routes.rb
308
+ - db/migrate/20250326065606_create_bscf_core_users.rb
309
+ - db/migrate/20250326075111_create_bscf_core_roles.rb
310
+ - db/migrate/20250326080646_create_bscf_core_user_profiles.rb
311
+ - db/migrate/20250326081052_create_bscf_core_addresses.rb
312
+ - db/migrate/20250326084233_create_bscf_core_user_roles.rb
313
+ - db/migrate/20250326085741_create_bscf_core_virtual_accounts.rb
314
+ - db/migrate/20250326103305_create_bscf_core_categories.rb
315
+ - db/migrate/20250326105652_create_bscf_core_products.rb
316
+ - db/migrate/20250326112449_create_bscf_core_businesses.rb
317
+ - db/migrate/20250326115203_create_bscf_core_request_for_quotations.rb
318
+ - db/migrate/20250326120613_create_bscf_core_rfq_items.rb
319
+ - db/migrate/20250326121246_create_bscf_core_bscf_core_virtual_account_transactions.rb
320
+ - db/migrate/20250327041651_create_bscf_core_quotations.rb
321
+ - db/migrate/20250327044020_create_bscf_core_quotation_items.rb
322
+ - db/migrate/20250327102217_create_bscf_core_orders.rb
323
+ - db/migrate/20250327112412_create_bscf_core_order_items.rb
292
324
  - lib/bscf/core.rb
293
325
  - lib/bscf/core/engine.rb
294
326
  - lib/bscf/core/version.rb
295
327
  - lib/tasks/bscf/core_tasks.rake
328
+ - lib/tasks/release.rake
296
329
  - spec/dummy/Rakefile
297
330
  - spec/dummy/app/assets/stylesheets/application.css
298
331
  - spec/dummy/app/controllers/application_controller.rb
@@ -321,9 +354,43 @@ files:
321
354
  - spec/dummy/config/puma.rb
322
355
  - spec/dummy/config/routes.rb
323
356
  - spec/dummy/config/storage.yml
357
+ - spec/dummy/db/schema.rb
324
358
  - spec/dummy/log/development.log
359
+ - spec/dummy/log/test.log
325
360
  - spec/dummy/tmp/local_secret.txt
326
361
  - spec/examples.txt
362
+ - spec/factories/bscf/core/addresses.rb
363
+ - spec/factories/bscf/core/businesses.rb
364
+ - spec/factories/bscf/core/categories.rb
365
+ - spec/factories/bscf/core/order_items.rb
366
+ - spec/factories/bscf/core/orders.rb
367
+ - spec/factories/bscf/core/products.rb
368
+ - spec/factories/bscf/core/quotation_items.rb
369
+ - spec/factories/bscf/core/quotations.rb
370
+ - spec/factories/bscf/core/request_for_quotations.rb
371
+ - spec/factories/bscf/core/rfq_items.rb
372
+ - spec/factories/bscf/core/roles.rb
373
+ - spec/factories/bscf/core/user_profiles.rb
374
+ - spec/factories/bscf/core/user_roles.rb
375
+ - spec/factories/bscf/core/users.rb
376
+ - spec/factories/bscf/core/virtual_account_transactions.rb
377
+ - spec/factories/bscf/core/virtual_accounts.rb
378
+ - spec/models/bscf/core/address_spec.rb
379
+ - spec/models/bscf/core/business_spec.rb
380
+ - spec/models/bscf/core/category_spec.rb
381
+ - spec/models/bscf/core/order_item_spec.rb
382
+ - spec/models/bscf/core/order_spec.rb
383
+ - spec/models/bscf/core/product_spec.rb
384
+ - spec/models/bscf/core/quotation_item_spec.rb
385
+ - spec/models/bscf/core/quotation_spec.rb
386
+ - spec/models/bscf/core/request_for_quotation_spec.rb
387
+ - spec/models/bscf/core/rfq_item_spec.rb
388
+ - spec/models/bscf/core/role_spec.rb
389
+ - spec/models/bscf/core/user_profile_spec.rb
390
+ - spec/models/bscf/core/user_role_spec.rb
391
+ - spec/models/bscf/core/user_spec.rb
392
+ - spec/models/bscf/core/virtual_account_spec.rb
393
+ - spec/models/bscf/core/virtual_account_transaction_spec.rb
327
394
  - spec/rails_helper.rb
328
395
  - spec/spec_helper.rb
329
396
  - spec/support/models/shared_examples.rb