├── .gitignore ├── README.md ├── Rakefile ├── bin └── drebs ├── config └── example.yml ├── drebs.gemspec ├── lib ├── drebs.rb └── drebs │ ├── cloud.rb │ └── main.rb └── test ├── helper.rb └── unit └── drebs ├── drebs_test.rb └── main_test.rb /.gitignore: -------------------------------------------------------------------------------- 1 | pkg 2 | *.swp 3 | tmp_test_data 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojo4/drebs/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojo4/drebs/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/drebs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojo4/drebs/HEAD/bin/drebs -------------------------------------------------------------------------------- /config/example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojo4/drebs/HEAD/config/example.yml -------------------------------------------------------------------------------- /drebs.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojo4/drebs/HEAD/drebs.gemspec -------------------------------------------------------------------------------- /lib/drebs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojo4/drebs/HEAD/lib/drebs.rb -------------------------------------------------------------------------------- /lib/drebs/cloud.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojo4/drebs/HEAD/lib/drebs/cloud.rb -------------------------------------------------------------------------------- /lib/drebs/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojo4/drebs/HEAD/lib/drebs/main.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojo4/drebs/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/unit/drebs/drebs_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojo4/drebs/HEAD/test/unit/drebs/drebs_test.rb -------------------------------------------------------------------------------- /test/unit/drebs/main_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dojo4/drebs/HEAD/test/unit/drebs/main_test.rb --------------------------------------------------------------------------------