--- !ruby/object:Gem::Specification name: activerecord-import version: !ruby/object:Gem::Version version: 1.6.0 platform: ruby authors: - Zach Dennis autorequire: bindir: bin cert_chain: [] date: 2024-03-15 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: activerecord requirement: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '4.2' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '4.2' - !ruby/object:Gem::Dependency name: rake requirement: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' description: A library for bulk inserting data using ActiveRecord. email: - zach.dennis@gmail.com executables: [] extensions: [] extra_rdoc_files: [] files: - ".github/workflows/test.yaml" - ".gitignore" - ".rubocop.yml" - ".rubocop_todo.yml" - Brewfile - CHANGELOG.md - Dockerfile - Gemfile - LICENSE - README.markdown - Rakefile - activerecord-import.gemspec - benchmarks/README - benchmarks/benchmark.rb - benchmarks/lib/base.rb - benchmarks/lib/cli_parser.rb - benchmarks/lib/float.rb - benchmarks/lib/mysql2_benchmark.rb - benchmarks/lib/output_to_csv.rb - benchmarks/lib/output_to_html.rb - benchmarks/models/test_innodb.rb - benchmarks/models/test_memory.rb - benchmarks/models/test_myisam.rb - benchmarks/schema/mysql2_schema.rb - docker-compose.yml - gemfiles/4.2.gemfile - gemfiles/5.0.gemfile - gemfiles/5.1.gemfile - gemfiles/5.2.gemfile - gemfiles/6.0.gemfile - gemfiles/6.1.gemfile - gemfiles/7.0.gemfile - gemfiles/7.1.gemfile - lib/activerecord-import.rb - lib/activerecord-import/active_record/adapters/abstract_adapter.rb - lib/activerecord-import/active_record/adapters/jdbcmysql_adapter.rb - lib/activerecord-import/active_record/adapters/jdbcpostgresql_adapter.rb - lib/activerecord-import/active_record/adapters/jdbcsqlite3_adapter.rb - lib/activerecord-import/active_record/adapters/mysql2_adapter.rb - lib/activerecord-import/active_record/adapters/postgresql_adapter.rb - lib/activerecord-import/active_record/adapters/seamless_database_pool_adapter.rb - lib/activerecord-import/active_record/adapters/sqlite3_adapter.rb - lib/activerecord-import/active_record/adapters/trilogy_adapter.rb - lib/activerecord-import/adapters/abstract_adapter.rb - lib/activerecord-import/adapters/em_mysql2_adapter.rb - lib/activerecord-import/adapters/mysql2_adapter.rb - lib/activerecord-import/adapters/mysql_adapter.rb - lib/activerecord-import/adapters/postgresql_adapter.rb - lib/activerecord-import/adapters/sqlite3_adapter.rb - lib/activerecord-import/adapters/trilogy_adapter.rb - lib/activerecord-import/base.rb - lib/activerecord-import/import.rb - lib/activerecord-import/mysql2.rb - lib/activerecord-import/postgresql.rb - lib/activerecord-import/sqlite3.rb - lib/activerecord-import/synchronize.rb - lib/activerecord-import/value_sets_parser.rb - lib/activerecord-import/version.rb - test/adapters/jdbcmysql.rb - test/adapters/jdbcpostgresql.rb - test/adapters/jdbcsqlite3.rb - test/adapters/makara_postgis.rb - test/adapters/mysql2.rb - test/adapters/mysql2_makara.rb - test/adapters/mysql2spatial.rb - test/adapters/postgis.rb - test/adapters/postgresql.rb - test/adapters/postgresql_makara.rb - test/adapters/seamless_database_pool.rb - test/adapters/spatialite.rb - test/adapters/sqlite3.rb - test/adapters/trilogy.rb - test/database.yml.sample - test/github/database.yml - test/import_test.rb - test/jdbcmysql/import_test.rb - test/jdbcpostgresql/import_test.rb - test/jdbcsqlite3/import_test.rb - test/makara_postgis/import_test.rb - test/models/account.rb - test/models/alarm.rb - test/models/animal.rb - test/models/bike_maker.rb - test/models/book.rb - test/models/car.rb - test/models/card.rb - test/models/chapter.rb - test/models/customer.rb - test/models/deck.rb - test/models/dictionary.rb - test/models/discount.rb - test/models/end_note.rb - test/models/group.rb - test/models/order.rb - test/models/playing_card.rb - test/models/promotion.rb - test/models/question.rb - test/models/rule.rb - test/models/tag.rb - test/models/tag_alias.rb - test/models/topic.rb - test/models/user.rb - test/models/user_token.rb - test/models/vendor.rb - test/models/widget.rb - test/mysql2/import_test.rb - test/mysql2_makara/import_test.rb - test/mysqlspatial2/import_test.rb - test/postgis/import_test.rb - test/postgresql/import_test.rb - test/schema/generic_schema.rb - test/schema/jdbcpostgresql_schema.rb - test/schema/mysql2_schema.rb - test/schema/postgis_schema.rb - test/schema/postgresql_schema.rb - test/schema/sqlite3_schema.rb - test/schema/version.rb - test/sqlite3/import_test.rb - test/support/active_support/test_case_extensions.rb - test/support/assertions.rb - test/support/factories.rb - test/support/generate.rb - test/support/mysql/import_examples.rb - test/support/postgresql/import_examples.rb - test/support/shared_examples/on_duplicate_key_ignore.rb - test/support/shared_examples/on_duplicate_key_update.rb - test/support/shared_examples/recursive_import.rb - test/support/sqlite3/import_examples.rb - test/synchronize_test.rb - test/test_helper.rb - test/trilogy/import_test.rb - test/value_sets_bytes_parser_test.rb - test/value_sets_records_parser_test.rb homepage: https://github.com/zdennis/activerecord-import licenses: - MIT metadata: {} post_install_message: rdoc_options: [] require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: 2.4.0 required_rubygems_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' requirements: [] rubygems_version: 3.0.3.1 signing_key: specification_version: 4 summary: Bulk insert extension for ActiveRecord test_files: - test/adapters/jdbcmysql.rb - test/adapters/jdbcpostgresql.rb - test/adapters/jdbcsqlite3.rb - test/adapters/makara_postgis.rb - test/adapters/mysql2.rb - test/adapters/mysql2_makara.rb - test/adapters/mysql2spatial.rb - test/adapters/postgis.rb - test/adapters/postgresql.rb - test/adapters/postgresql_makara.rb - test/adapters/seamless_database_pool.rb - test/adapters/spatialite.rb - test/adapters/sqlite3.rb - test/adapters/trilogy.rb - test/database.yml.sample - test/github/database.yml - test/import_test.rb - test/jdbcmysql/import_test.rb - test/jdbcpostgresql/import_test.rb - test/jdbcsqlite3/import_test.rb - test/makara_postgis/import_test.rb - test/models/account.rb - test/models/alarm.rb - test/models/animal.rb - test/models/bike_maker.rb - test/models/book.rb - test/models/car.rb - test/models/card.rb - test/models/chapter.rb - test/models/customer.rb - test/models/deck.rb - test/models/dictionary.rb - test/models/discount.rb - test/models/end_note.rb - test/models/group.rb - test/models/order.rb - test/models/playing_card.rb - test/models/promotion.rb - test/models/question.rb - test/models/rule.rb - test/models/tag.rb - test/models/tag_alias.rb - test/models/topic.rb - test/models/user.rb - test/models/user_token.rb - test/models/vendor.rb - test/models/widget.rb - test/mysql2/import_test.rb - test/mysql2_makara/import_test.rb - test/mysqlspatial2/import_test.rb - test/postgis/import_test.rb - test/postgresql/import_test.rb - test/schema/generic_schema.rb - test/schema/jdbcpostgresql_schema.rb - test/schema/mysql2_schema.rb - test/schema/postgis_schema.rb - test/schema/postgresql_schema.rb - test/schema/sqlite3_schema.rb - test/schema/version.rb - test/sqlite3/import_test.rb - test/support/active_support/test_case_extensions.rb - test/support/assertions.rb - test/support/factories.rb - test/support/generate.rb - test/support/mysql/import_examples.rb - test/support/postgresql/import_examples.rb - test/support/shared_examples/on_duplicate_key_ignore.rb - test/support/shared_examples/on_duplicate_key_update.rb - test/support/shared_examples/recursive_import.rb - test/support/sqlite3/import_examples.rb - test/synchronize_test.rb - test/test_helper.rb - test/trilogy/import_test.rb - test/value_sets_bytes_parser_test.rb - test/value_sets_records_parser_test.rb