├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── squcumber-redshift.rb └── squcumber-redshift │ ├── mock │ └── database.rb │ ├── rake │ └── task.rb │ ├── step_definitions │ └── common_steps.rb │ └── support │ ├── database.rb │ ├── matchers.rb │ └── output.rb ├── spec ├── spec_helper.rb └── squcumber-redshift │ └── mock │ └── database_spec.rb └── squcumber-redshift.gemspec /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moertel/sQucumber-redshift/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moertel/sQucumber-redshift/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moertel/sQucumber-redshift/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moertel/sQucumber-redshift/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moertel/sQucumber-redshift/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/squcumber-redshift.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moertel/sQucumber-redshift/HEAD/lib/squcumber-redshift.rb -------------------------------------------------------------------------------- /lib/squcumber-redshift/mock/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moertel/sQucumber-redshift/HEAD/lib/squcumber-redshift/mock/database.rb -------------------------------------------------------------------------------- /lib/squcumber-redshift/rake/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moertel/sQucumber-redshift/HEAD/lib/squcumber-redshift/rake/task.rb -------------------------------------------------------------------------------- /lib/squcumber-redshift/step_definitions/common_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moertel/sQucumber-redshift/HEAD/lib/squcumber-redshift/step_definitions/common_steps.rb -------------------------------------------------------------------------------- /lib/squcumber-redshift/support/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moertel/sQucumber-redshift/HEAD/lib/squcumber-redshift/support/database.rb -------------------------------------------------------------------------------- /lib/squcumber-redshift/support/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moertel/sQucumber-redshift/HEAD/lib/squcumber-redshift/support/matchers.rb -------------------------------------------------------------------------------- /lib/squcumber-redshift/support/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moertel/sQucumber-redshift/HEAD/lib/squcumber-redshift/support/output.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moertel/sQucumber-redshift/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/squcumber-redshift/mock/database_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moertel/sQucumber-redshift/HEAD/spec/squcumber-redshift/mock/database_spec.rb -------------------------------------------------------------------------------- /squcumber-redshift.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moertel/sQucumber-redshift/HEAD/squcumber-redshift.gemspec --------------------------------------------------------------------------------