├── .gitignore ├── .rspec ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── db_bot.gemspec ├── lib ├── db_bot.rb └── db_bot │ ├── translate.rb │ └── version.rb └── spec ├── bot_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawilster/db_bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawilster/db_bot/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawilster/db_bot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawilster/db_bot/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawilster/db_bot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawilster/db_bot/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawilster/db_bot/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawilster/db_bot/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawilster/db_bot/HEAD/bin/setup -------------------------------------------------------------------------------- /db_bot.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawilster/db_bot/HEAD/db_bot.gemspec -------------------------------------------------------------------------------- /lib/db_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawilster/db_bot/HEAD/lib/db_bot.rb -------------------------------------------------------------------------------- /lib/db_bot/translate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawilster/db_bot/HEAD/lib/db_bot/translate.rb -------------------------------------------------------------------------------- /lib/db_bot/version.rb: -------------------------------------------------------------------------------- 1 | module DbBot 2 | VERSION = "0.1.0" 3 | end 4 | -------------------------------------------------------------------------------- /spec/bot_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawilster/db_bot/HEAD/spec/bot_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawilster/db_bot/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------