--- !ruby/object:Gem::Specification name: activerecord-jdbc-adapter version: !ruby/object:Gem::Version prerelease: version: 1.2.2.1 platform: ruby authors: - Nick Sieger, Ola Bini and JRuby contributors autorequire: bindir: bin cert_chain: [] date: 2012-10-19 00:00:00 Z dependencies: [] description: |- activerecord-jdbc-adapter is a database adapter for Rails\' ActiveRecord component that can be used with JRuby[http://www.jruby.org/]. It allows use of virtually any JDBC-compliant database with your JRuby on Rails application. email: nick@nicksieger.com, ola.bini@gmail.com executables: [] extensions: [] extra_rdoc_files: [] files: - .gitignore - .travis.yml - Gemfile - Gemfile.lock - History.txt - LICENSE.txt - README.rdoc - Rakefile - activerecord-jdbc-adapter.gemspec - bench/bench_attributes.rb - bench/bench_attributes_new.rb - bench/bench_create.rb - bench/bench_find_all.rb - bench/bench_find_all_mt.rb - bench/bench_model.rb - bench/bench_new.rb - bench/bench_new_valid.rb - bench/bench_valid.rb - lib/active_record/connection_adapters/derby_adapter.rb - lib/active_record/connection_adapters/h2_adapter.rb - lib/active_record/connection_adapters/hsqldb_adapter.rb - lib/active_record/connection_adapters/informix_adapter.rb - lib/active_record/connection_adapters/jdbc_adapter.rb - lib/active_record/connection_adapters/jndi_adapter.rb - lib/active_record/connection_adapters/mssql_adapter.rb - lib/active_record/connection_adapters/mysql2_adapter.rb - lib/active_record/connection_adapters/mysql_adapter.rb - lib/active_record/connection_adapters/oracle_adapter.rb - lib/active_record/connection_adapters/postgresql_adapter.rb - lib/active_record/connection_adapters/sqlite3_adapter.rb - lib/activerecord-jdbc-adapter.rb - lib/arel/engines/sql/compilers/db2_compiler.rb - lib/arel/engines/sql/compilers/derby_compiler.rb - lib/arel/engines/sql/compilers/h2_compiler.rb - lib/arel/engines/sql/compilers/hsqldb_compiler.rb - lib/arel/engines/sql/compilers/jdbc_compiler.rb - lib/arel/engines/sql/compilers/mssql_compiler.rb - lib/arel/visitors/compat.rb - lib/arel/visitors/db2.rb - lib/arel/visitors/derby.rb - lib/arel/visitors/firebird.rb - lib/arel/visitors/hsqldb.rb - lib/arel/visitors/sql_server.rb - lib/arjdbc.rb - lib/arjdbc/db2.rb - lib/arjdbc/db2/adapter.rb - lib/arjdbc/derby.rb - lib/arjdbc/derby/adapter.rb - lib/arjdbc/derby/connection_methods.rb - lib/arjdbc/discover.rb - lib/arjdbc/firebird.rb - lib/arjdbc/firebird/adapter.rb - lib/arjdbc/h2.rb - lib/arjdbc/h2/adapter.rb - lib/arjdbc/h2/connection_methods.rb - lib/arjdbc/hsqldb.rb - lib/arjdbc/hsqldb/adapter.rb - lib/arjdbc/hsqldb/connection_methods.rb - lib/arjdbc/informix.rb - lib/arjdbc/informix/adapter.rb - lib/arjdbc/informix/connection_methods.rb - lib/arjdbc/jdbc.rb - lib/arjdbc/jdbc/adapter.rb - lib/arjdbc/jdbc/adapter_java.jar - lib/arjdbc/jdbc/base_ext.rb - lib/arjdbc/jdbc/callbacks.rb - lib/arjdbc/jdbc/column.rb - lib/arjdbc/jdbc/compatibility.rb - lib/arjdbc/jdbc/connection.rb - lib/arjdbc/jdbc/connection_methods.rb - lib/arjdbc/jdbc/core_ext.rb - lib/arjdbc/jdbc/discover.rb - lib/arjdbc/jdbc/driver.rb - lib/arjdbc/jdbc/extension.rb - lib/arjdbc/jdbc/java.rb - lib/arjdbc/jdbc/jdbc.rake - lib/arjdbc/jdbc/missing_functionality_helper.rb - lib/arjdbc/jdbc/quoted_primary_key.rb - lib/arjdbc/jdbc/railtie.rb - lib/arjdbc/jdbc/rake_tasks.rb - lib/arjdbc/jdbc/require_driver.rb - lib/arjdbc/jdbc/type_converter.rb - lib/arjdbc/mimer.rb - lib/arjdbc/mimer/adapter.rb - lib/arjdbc/mssql.rb - lib/arjdbc/mssql/adapter.rb - lib/arjdbc/mssql/connection_methods.rb - lib/arjdbc/mssql/limit_helpers.rb - lib/arjdbc/mssql/lock_helpers.rb - lib/arjdbc/mssql/tsql_helper.rb - lib/arjdbc/mysql.rb - lib/arjdbc/mysql/adapter.rb - lib/arjdbc/mysql/connection_methods.rb - lib/arjdbc/oracle.rb - lib/arjdbc/oracle/adapter.rb - lib/arjdbc/oracle/connection_methods.rb - lib/arjdbc/postgresql.rb - lib/arjdbc/postgresql/adapter.rb - lib/arjdbc/postgresql/connection_methods.rb - lib/arjdbc/sqlite3.rb - lib/arjdbc/sqlite3/adapter.rb - lib/arjdbc/sqlite3/connection_methods.rb - lib/arjdbc/sybase.rb - lib/arjdbc/sybase/adapter.rb - lib/arjdbc/version.rb - lib/generators/jdbc/USAGE - lib/generators/jdbc/jdbc_generator.rb - lib/jdbc_adapter.rb - lib/jdbc_adapter/rake_tasks.rb - lib/jdbc_adapter/version.rb - lib/pg.rb - pom.xml - rails_generators/jdbc_generator.rb - rails_generators/templates/config/initializers/jdbc.rb - rails_generators/templates/lib/tasks/jdbc.rake - rakelib/bundler_ext.rb - rakelib/compile.rake - rakelib/db.rake - rakelib/rails.rake - rakelib/test.rake - src/java/arjdbc/db2/DB2RubyJdbcConnection.java - src/java/arjdbc/derby/DerbyModule.java - src/java/arjdbc/h2/H2RubyJdbcConnection.java - src/java/arjdbc/informix/InformixRubyJdbcConnection.java - src/java/arjdbc/jdbc/AdapterJavaService.java - src/java/arjdbc/jdbc/JdbcConnectionFactory.java - src/java/arjdbc/jdbc/RubyJdbcConnection.java - src/java/arjdbc/jdbc/SQLBlock.java - src/java/arjdbc/mssql/MssqlRubyJdbcConnection.java - src/java/arjdbc/mysql/MySQLModule.java - src/java/arjdbc/mysql/MySQLRubyJdbcConnection.java - src/java/arjdbc/oracle/OracleRubyJdbcConnection.java - src/java/arjdbc/postgresql/PostgresqlRubyJdbcConnection.java - src/java/arjdbc/sqlite3/Sqlite3RubyJdbcConnection.java - test/abstract_db_create.rb - test/activerecord/connection_adapters/type_conversion_test.rb - test/activerecord/connections/native_jdbc_mysql/connection.rb - test/activerecord/jall.sh - test/activerecord/jtest.sh - test/db/db2.rb - test/db/derby.rb - test/db/h2.rb - test/db/hsqldb.rb - test/db/informix.rb - test/db/jdbc.rb - test/db/jndi_config.rb - test/db/logger.rb - test/db/mssql.rb - test/db/mysql.rb - test/db/oracle.rb - test/db/postgres.rb - test/db/sqlite3.rb - test/db2_reset_column_information_test.rb - test/db2_simple_test.rb - test/derby_migration_test.rb - test/derby_multibyte_test.rb - test/derby_reset_column_information_test.rb - test/derby_row_locking_test.rb - test/derby_simple_test.rb - test/generic_jdbc_connection_test.rb - test/h2_change_column_test.rb - test/h2_simple_test.rb - test/has_many_through.rb - test/helper.rb - test/hsqldb_simple_test.rb - test/informix_simple_test.rb - test/jdbc_common.rb - test/jndi_callbacks_test.rb - test/jndi_test.rb - test/manualTestDatabase.rb - test/models/add_not_null_column_to_table.rb - test/models/auto_id.rb - test/models/data_types.rb - test/models/entry.rb - test/models/mixed_case.rb - test/models/reserved_word.rb - test/models/string_id.rb - test/models/thing.rb - test/models/validates_uniqueness_of_string.rb - test/mssql_db_create_test.rb - test/mssql_identity_insert_test.rb - test/mssql_ignore_system_views_test.rb - test/mssql_legacy_types_test.rb - test/mssql_limit_offset_test.rb - test/mssql_multibyte_test.rb - test/mssql_null_test.rb - test/mssql_reset_column_information_test.rb - test/mssql_row_locking_sql_test.rb - test/mssql_row_locking_test.rb - test/mssql_simple_test.rb - test/mysql_db_create_test.rb - test/mysql_index_length_test.rb - test/mysql_info_test.rb - test/mysql_multibyte_test.rb - test/mysql_nonstandard_primary_key_test.rb - test/mysql_reset_column_information_test.rb - test/mysql_simple_test.rb - test/oracle_reset_column_information_test.rb - test/oracle_simple_test.rb - test/oracle_specific_test.rb - test/postgres_db_create_test.rb - test/postgres_drop_db_test.rb - test/postgres_information_schema_leak_test.rb - test/postgres_mixed_case_test.rb - test/postgres_native_type_mapping_test.rb - test/postgres_nonseq_pkey_test.rb - test/postgres_reserved_test.rb - test/postgres_reset_column_information_test.rb - test/postgres_schema_search_path_test.rb - test/postgres_simple_test.rb - test/postgres_table_alias_length_test.rb - test/postgres_type_conversion_test.rb - test/row_locking.rb - test/simple.rb - test/sqlite3_reset_column_information_test.rb - test/sqlite3_simple_test.rb - test/sybase_jtds_simple_test.rb - test/sybase_reset_column_information_test.rb homepage: https://github.com/jruby/activerecord-jdbc-adapter licenses: [] post_install_message: rdoc_options: - --main - README.txt - -SHN - -f - darkfish require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement none: false requirements: - - ">=" - !ruby/object:Gem::Version hash: 2 segments: - 0 version: "0" required_rubygems_version: !ruby/object:Gem::Requirement none: false requirements: - - ">=" - !ruby/object:Gem::Version version: "0" requirements: [] rubyforge_project: jruby-extras rubygems_version: 1.8.24 signing_key: specification_version: 3 summary: JDBC adapter for ActiveRecord, for use within JRuby on Rails. test_files: - test/abstract_db_create.rb - test/activerecord/connection_adapters/type_conversion_test.rb - test/activerecord/connections/native_jdbc_mysql/connection.rb - test/activerecord/jall.sh - test/activerecord/jtest.sh - test/db/db2.rb - test/db/derby.rb - test/db/h2.rb - test/db/hsqldb.rb - test/db/informix.rb - test/db/jdbc.rb - test/db/jndi_config.rb - test/db/logger.rb - test/db/mssql.rb - test/db/mysql.rb - test/db/oracle.rb - test/db/postgres.rb - test/db/sqlite3.rb - test/db2_reset_column_information_test.rb - test/db2_simple_test.rb - test/derby_migration_test.rb - test/derby_multibyte_test.rb - test/derby_reset_column_information_test.rb - test/derby_row_locking_test.rb - test/derby_simple_test.rb - test/generic_jdbc_connection_test.rb - test/h2_change_column_test.rb - test/h2_simple_test.rb - test/has_many_through.rb - test/helper.rb - test/hsqldb_simple_test.rb - test/informix_simple_test.rb - test/jdbc_common.rb - test/jndi_callbacks_test.rb - test/jndi_test.rb - test/manualTestDatabase.rb - test/models/add_not_null_column_to_table.rb - test/models/auto_id.rb - test/models/data_types.rb - test/models/entry.rb - test/models/mixed_case.rb - test/models/reserved_word.rb - test/models/string_id.rb - test/models/thing.rb - test/models/validates_uniqueness_of_string.rb - test/mssql_db_create_test.rb - test/mssql_identity_insert_test.rb - test/mssql_ignore_system_views_test.rb - test/mssql_legacy_types_test.rb - test/mssql_limit_offset_test.rb - test/mssql_multibyte_test.rb - test/mssql_null_test.rb - test/mssql_reset_column_information_test.rb - test/mssql_row_locking_sql_test.rb - test/mssql_row_locking_test.rb - test/mssql_simple_test.rb - test/mysql_db_create_test.rb - test/mysql_index_length_test.rb - test/mysql_info_test.rb - test/mysql_multibyte_test.rb - test/mysql_nonstandard_primary_key_test.rb - test/mysql_reset_column_information_test.rb - test/mysql_simple_test.rb - test/oracle_reset_column_information_test.rb - test/oracle_simple_test.rb - test/oracle_specific_test.rb - test/postgres_db_create_test.rb - test/postgres_drop_db_test.rb - test/postgres_information_schema_leak_test.rb - test/postgres_mixed_case_test.rb - test/postgres_native_type_mapping_test.rb - test/postgres_nonseq_pkey_test.rb - test/postgres_reserved_test.rb - test/postgres_reset_column_information_test.rb - test/postgres_schema_search_path_test.rb - test/postgres_simple_test.rb - test/postgres_table_alias_length_test.rb - test/postgres_type_conversion_test.rb - test/row_locking.rb - test/simple.rb - test/sqlite3_reset_column_information_test.rb - test/sqlite3_simple_test.rb - test/sybase_jtds_simple_test.rb - test/sybase_reset_column_information_test.rb