lib/tracksperanto.rb in tracksperanto-1.6.9 vs lib/tracksperanto.rb in tracksperanto-1.7.0
- old
+ new
@@ -2,24 +2,24 @@
require 'delegate'
require 'tempfile'
module Tracksperanto
PATH = File.expand_path(File.dirname(__FILE__))
- VERSION = '1.6.9'
+ VERSION = '1.7.0'
module Import; end
module Export; end
module Middleware; end
module Pipeline; end
class << self
# Returns the array of all exporter classes defined
attr_accessor :exporters
-
+
# Returns the array of all importer classes defined
attr_accessor :importers
-
+
# Returns the array of all available middlewares
attr_accessor :middlewares
# Returns the names of all the importers
def importer_names
@@ -33,17 +33,16 @@
# Returns the names of all the middlewares
def middleware_names
middlewares.map{|e| e.const_name }
end
-
end
self.exporters, self.importers, self.middlewares = [], [], []
end
-%w(
+%w(
const_name
casts
block_init
safety
zip_tuples
\ No newline at end of file