module CsvPirate
Constants
- BUILD
- MAJOR
- MINOR
- PATCH
- VERSION
- VERSION_ARRAY
Public Class Methods
create(*args)
click to toggle source
# File lib/csv_pirate.rb, line 43 def self.create(*args) warn "[DEPRECATION] \"CsvPirate.create\" is deprecated. Use \"CsvPirate::TheCapn.create\" instead. Called from: #{caller.first}" CsvPirate::TheCapn.create(*args) end
new(*args)
click to toggle source
Support the old (< v5.0.0) API
# File lib/csv_pirate.rb, line 38 def self.new(*args) warn "[DEPRECATION] \"CsvPirate.new\" is deprecated. Use \"CsvPirate::TheCapn.new\" instead. Called from: #{caller.first}" CsvPirate::TheCapn.new(*args) end