-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
72f8596
commit 3d08d88
Showing
5 changed files
with
17 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
## [Unreleased] | ||
## [0.1.1] - 2021-12-16 | ||
|
||
- Expose get_entry method | ||
## [0.1.0] - 2021-11-18 | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
# frozen_string_literal: true | ||
|
||
module Hws::Transactions::Models | ||
class Base < ActiveRecord::Base # :nodoc: | ||
self.abstract_class = true | ||
class Hws::Transactions::Models::Base < ActiveRecord::Base # :nodoc: | ||
self.abstract_class = true | ||
|
||
before_create :set_uuid | ||
before_create :set_uuid | ||
|
||
def set_uuid | ||
self.id = LSUUID.generate if self.id.blank? | ||
end | ||
def set_uuid | ||
self.id = LSUUID.generate if self.id.blank? | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters