├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── redshift_runner.rb └── redshift_runner │ ├── connection.rb │ ├── result.rb │ └── version.rb └── redshift_runner.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFTTT/redshift_runner/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFTTT/redshift_runner/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFTTT/redshift_runner/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFTTT/redshift_runner/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /lib/redshift_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFTTT/redshift_runner/HEAD/lib/redshift_runner.rb -------------------------------------------------------------------------------- /lib/redshift_runner/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFTTT/redshift_runner/HEAD/lib/redshift_runner/connection.rb -------------------------------------------------------------------------------- /lib/redshift_runner/result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFTTT/redshift_runner/HEAD/lib/redshift_runner/result.rb -------------------------------------------------------------------------------- /lib/redshift_runner/version.rb: -------------------------------------------------------------------------------- 1 | module RedshiftRunner 2 | VERSION = "0.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /redshift_runner.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFTTT/redshift_runner/HEAD/redshift_runner.gemspec --------------------------------------------------------------------------------