├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console ├── setup └── try ├── lib └── mysql2 │ ├── reconnect_with_readonly.rb │ └── reconnect_with_readonly │ └── version.rb └── mysql2-reconnect_with_readonly.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/mysql2-reconnect_with_readonly/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/mysql2-reconnect_with_readonly/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/mysql2-reconnect_with_readonly/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/mysql2-reconnect_with_readonly/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/mysql2-reconnect_with_readonly/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/mysql2-reconnect_with_readonly/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/mysql2-reconnect_with_readonly/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/mysql2-reconnect_with_readonly/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/mysql2-reconnect_with_readonly/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/try: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/mysql2-reconnect_with_readonly/HEAD/bin/try -------------------------------------------------------------------------------- /lib/mysql2/reconnect_with_readonly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/mysql2-reconnect_with_readonly/HEAD/lib/mysql2/reconnect_with_readonly.rb -------------------------------------------------------------------------------- /lib/mysql2/reconnect_with_readonly/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/mysql2-reconnect_with_readonly/HEAD/lib/mysql2/reconnect_with_readonly/version.rb -------------------------------------------------------------------------------- /mysql2-reconnect_with_readonly.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/mysql2-reconnect_with_readonly/HEAD/mysql2-reconnect_with_readonly.gemspec --------------------------------------------------------------------------------