├── .github └── workflows │ └── test.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── Appraisals ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── armg.gemspec ├── bin ├── console └── setup ├── docker-compose.yml ├── gemfiles ├── .bundle │ └── config ├── ar70.gemfile ├── ar71.gemfile ├── ar72.gemfile └── ar80.gemfile ├── lib ├── armg.rb └── armg │ ├── abstract_mysql_adapter_ext.rb │ ├── armg.rb │ ├── mysql_geometry.rb │ ├── table_definition_ext.rb │ ├── utils.rb │ ├── version.rb │ ├── wkb_deserializer.rb │ ├── wkb_serializer.rb │ ├── wkt_deserializer.rb │ └── wkt_serializer.rb └── spec ├── armg_spec.rb ├── migration_spec.rb ├── mysql_helper.rb ├── spec_helper.rb ├── utils_spec.rb └── wkt_spec.rb /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/Appraisals -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/Rakefile -------------------------------------------------------------------------------- /armg.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/armg.gemspec -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/bin/setup -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /gemfiles/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_RETRY: "1" 3 | -------------------------------------------------------------------------------- /gemfiles/ar70.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/gemfiles/ar70.gemfile -------------------------------------------------------------------------------- /gemfiles/ar71.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/gemfiles/ar71.gemfile -------------------------------------------------------------------------------- /gemfiles/ar72.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/gemfiles/ar72.gemfile -------------------------------------------------------------------------------- /gemfiles/ar80.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/gemfiles/ar80.gemfile -------------------------------------------------------------------------------- /lib/armg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/lib/armg.rb -------------------------------------------------------------------------------- /lib/armg/abstract_mysql_adapter_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/lib/armg/abstract_mysql_adapter_ext.rb -------------------------------------------------------------------------------- /lib/armg/armg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/lib/armg/armg.rb -------------------------------------------------------------------------------- /lib/armg/mysql_geometry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/lib/armg/mysql_geometry.rb -------------------------------------------------------------------------------- /lib/armg/table_definition_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/lib/armg/table_definition_ext.rb -------------------------------------------------------------------------------- /lib/armg/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/lib/armg/utils.rb -------------------------------------------------------------------------------- /lib/armg/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Armg 4 | VERSION = '0.12.0' 5 | end 6 | -------------------------------------------------------------------------------- /lib/armg/wkb_deserializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/lib/armg/wkb_deserializer.rb -------------------------------------------------------------------------------- /lib/armg/wkb_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/lib/armg/wkb_serializer.rb -------------------------------------------------------------------------------- /lib/armg/wkt_deserializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/lib/armg/wkt_deserializer.rb -------------------------------------------------------------------------------- /lib/armg/wkt_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/lib/armg/wkt_serializer.rb -------------------------------------------------------------------------------- /spec/armg_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/spec/armg_spec.rb -------------------------------------------------------------------------------- /spec/migration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/spec/migration_spec.rb -------------------------------------------------------------------------------- /spec/mysql_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/spec/mysql_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/utils_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/spec/utils_spec.rb -------------------------------------------------------------------------------- /spec/wkt_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookpad/armg/HEAD/spec/wkt_spec.rb --------------------------------------------------------------------------------