├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── etl.gemspec ├── lib ├── etl.rb └── etl │ ├── topology.rb │ ├── version.rb │ └── workflow.rb └── spec ├── lib └── etl │ ├── topology_spec.rb │ └── workflow_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OBSLabs/etl/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OBSLabs/etl/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OBSLabs/etl/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OBSLabs/etl/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OBSLabs/etl/HEAD/Rakefile -------------------------------------------------------------------------------- /etl.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OBSLabs/etl/HEAD/etl.gemspec -------------------------------------------------------------------------------- /lib/etl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OBSLabs/etl/HEAD/lib/etl.rb -------------------------------------------------------------------------------- /lib/etl/topology.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OBSLabs/etl/HEAD/lib/etl/topology.rb -------------------------------------------------------------------------------- /lib/etl/version.rb: -------------------------------------------------------------------------------- 1 | module Etl 2 | VERSION = "0.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /lib/etl/workflow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OBSLabs/etl/HEAD/lib/etl/workflow.rb -------------------------------------------------------------------------------- /spec/lib/etl/topology_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OBSLabs/etl/HEAD/spec/lib/etl/topology_spec.rb -------------------------------------------------------------------------------- /spec/lib/etl/workflow_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OBSLabs/etl/HEAD/spec/lib/etl/workflow_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OBSLabs/etl/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------