ci_power 0.0.25 → 0.0.26
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.
- data/lib/ci_power/export.rb +6 -0
- data/lib/ci_power/version.rb +1 -1
- metadata +1 -1
data/lib/ci_power/export.rb
CHANGED
@@ -102,6 +102,12 @@ module CiPower
|
|
102
102
|
record CiPower::OpenAppointment.new, attributes
|
103
103
|
end
|
104
104
|
|
105
|
+
##
|
106
|
+
# Creates a new open appointment record described by the +attributes+ hash
|
107
|
+
def process_data_record(attributes)
|
108
|
+
record CiPower::ProcessData.new, attributes
|
109
|
+
end
|
110
|
+
|
105
111
|
##
|
106
112
|
# Creates a new installment plan record described by the +attributes+ hash
|
107
113
|
def installment_plan_record(attributes)
|
data/lib/ci_power/version.rb
CHANGED