├── .gitignore ├── Gemfile ├── MIT-LICENSE ├── README.md ├── Rakefile ├── lib └── mysql2-cs-bind.rb ├── mysql2-cs-bind.gemspec └── spec ├── mysql2 ├── client_spec.rb └── error_spec.rb ├── rcov.opts └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagomoris/mysql2-cs-bind/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagomoris/mysql2-cs-bind/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagomoris/mysql2-cs-bind/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagomoris/mysql2-cs-bind/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env rake 2 | require "bundler/gem_tasks" 3 | -------------------------------------------------------------------------------- /lib/mysql2-cs-bind.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagomoris/mysql2-cs-bind/HEAD/lib/mysql2-cs-bind.rb -------------------------------------------------------------------------------- /mysql2-cs-bind.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagomoris/mysql2-cs-bind/HEAD/mysql2-cs-bind.gemspec -------------------------------------------------------------------------------- /spec/mysql2/client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagomoris/mysql2-cs-bind/HEAD/spec/mysql2/client_spec.rb -------------------------------------------------------------------------------- /spec/mysql2/error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagomoris/mysql2-cs-bind/HEAD/spec/mysql2/error_spec.rb -------------------------------------------------------------------------------- /spec/rcov.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagomoris/mysql2-cs-bind/HEAD/spec/rcov.opts -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagomoris/mysql2-cs-bind/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------