bulk_insert 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 449bfe0d3987075fcf560eecb0ad8d8c81b3239d
4
- data.tar.gz: 7484ff28b2ab6ed401977c67b5296af5e6359986
3
+ metadata.gz: 55608bd96c8779425aebdefda3a989aee60b7890
4
+ data.tar.gz: 0dafe737191770da482b9f3ebf1a5ec4878c1a56
5
5
  SHA512:
6
- metadata.gz: ad244bb00d9f45fae61c1c0dea28b0b17e997fcfbf3e2c123211fc7f417ab94328f56623978b4e80289b2214fd4a76d81dcccc432cd8c52de562bdff7b7630da
7
- data.tar.gz: a0640187afe8277f22542694b91749b95f53107a5b2930222e0a4d4d538c1d33f021fd8d86c310efa09629a83bbec1328fd86b0131495c95d5c9ed2d91b88ad0
6
+ metadata.gz: 0ffa48bfabdf5793664b68ad954995bbb50ec6f1f96d17a58791dad23a45ca89fe2c250c68c386484690a8c92bdaae2ff51f3576c8e8a4b29aaf2cdc24d687af
7
+ data.tar.gz: b434dc5134c5f9dd1a0c55edd6e6bafd244bf4110c898a97f60e7badbfb885cc5c8e5cfaddcb089a97ba380cad9e158258ea097a1f842c4954ec97ece3bca462
@@ -3,7 +3,7 @@ require 'bulk_insert/worker'
3
3
  module BulkInsert
4
4
  extend ActiveSupport::Concern
5
5
 
6
- class_methods do
6
+ module ClassMethods
7
7
  def bulk_insert(*columns, values: nil, set_size:500)
8
8
  columns = default_bulk_columns if columns.empty?
9
9
  worker = BulkInsert::Worker.new(connection, table_name, columns, set_size)
@@ -1,7 +1,7 @@
1
1
  module BulkInsert
2
2
  MAJOR = 1
3
3
  MINOR = 1
4
- TINY = 0
4
+ TINY = 1
5
5
 
6
6
  VERSION = [MAJOR, MINOR, TINY].join(".")
7
7
  end
@@ -1314,3 +1314,257 @@ BulkInsertWorkerTest: test_add_should_save_automatically_when_overflowing_set_si
1314
1314
  BulkInsertWorkerTest: test_pending_count_should_describe_size_of_pending_set
1315
1315
  ----------------------------------------------------------------------------
1316
1316
   (0.1ms) rollback transaction
1317
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1318
+  (0.1ms) begin transaction
1319
+ --------------------------------------------------------
1320
+ BulkInsertWorkerTest: test_save!_inserts_pending_records
1321
+ --------------------------------------------------------
1322
+  (1.2ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Yo',15,'f','2016-03-20 19:58:37.248792','2016-03-20 19:58:37.248792','chartreuse'),('Hello',25,'t','2016-03-20 19:58:37.248792','2016-03-20 19:58:37.248792','chartreuse')
1323
+ Testing Load (0.2ms) SELECT "testings".* FROM "testings" WHERE "testings"."greeting" = ? LIMIT 1 [["greeting", "Yo"]]
1324
+ Testing Load (0.1ms) SELECT "testings".* FROM "testings" WHERE "testings"."greeting" = ? LIMIT 1 [["greeting", "Hello"]]
1325
+  (0.8ms) rollback transaction
1326
+  (0.1ms) begin transaction
1327
+ ---------------------------------------------------------------------
1328
+ BulkInsertWorkerTest: test_add_all_should_append_all_items_to_the_set
1329
+ ---------------------------------------------------------------------
1330
+  (0.0ms) rollback transaction
1331
+  (0.1ms) begin transaction
1332
+ ----------------------------------------------------------------------------------------------
1333
+ BulkInsertWorkerTest: test_default_timestamp_columns_should_be_equivalent_for_the_entire_batch
1334
+ ----------------------------------------------------------------------------------------------
1335
+  (0.2ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Hello',15,'t','2016-03-20 19:58:37.266113','2016-03-20 19:58:37.266113','chartreuse'),('Howdy',20,'f','2016-03-20 19:58:37.266113','2016-03-20 19:58:37.266113','chartreuse')
1336
+ Testing Load (0.1ms) SELECT "testings".* FROM "testings"
1337
+  (0.4ms) rollback transaction
1338
+  (0.1ms) begin transaction
1339
+ --------------------------------------------------------------------
1340
+ BulkInsertWorkerTest: test_adding_row_to_insert_makes_insert_pending
1341
+ --------------------------------------------------------------------
1342
+  (0.1ms) rollback transaction
1343
+  (0.1ms) begin transaction
1344
+ ------------------------------------------------------------------------------
1345
+ BulkInsertWorkerTest: test_add_should_use_database_default_values_when_present
1346
+ ------------------------------------------------------------------------------
1347
+  (0.2ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Hello',20,'f','2016-03-20 19:58:37.268988','2016-03-20 19:58:37.268988','chartreuse')
1348
+ Testing Load (0.1ms) SELECT "testings".* FROM "testings" ORDER BY "testings"."id" ASC LIMIT 1
1349
+  (0.4ms) rollback transaction
1350
+  (0.1ms) begin transaction
1351
+ ---------------------------------------------------------
1352
+ BulkInsertWorkerTest: test_save!_makes_insert_not_pending
1353
+ ---------------------------------------------------------
1354
+  (0.2ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Hello',15,'t','2016-03-20 19:58:37.270984','2016-03-20 19:58:37.270984','chartreuse')
1355
+  (0.4ms) rollback transaction
1356
+  (0.1ms) begin transaction
1357
+ -------------------------------------------
1358
+ BulkInsertWorkerTest: test_default_set_size
1359
+ -------------------------------------------
1360
+  (0.0ms) rollback transaction
1361
+  (0.1ms) begin transaction
1362
+ ----------------------------------------------------------------
1363
+ BulkInsertWorkerTest: test_explicit_nil_should_override_defaults
1364
+ ----------------------------------------------------------------
1365
+  (0.2ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Hello',20,'f','2016-03-20 19:58:37.273126','2016-03-20 19:58:37.273126',NULL)
1366
+ Testing Load (0.1ms) SELECT "testings".* FROM "testings" ORDER BY "testings"."id" ASC LIMIT 1
1367
+  (0.4ms) rollback transaction
1368
+  (0.1ms) begin transaction
1369
+ ----------------------------------------------------------------------------------
1370
+ BulkInsertWorkerTest: test_add_should_save_automatically_when_overflowing_set_size
1371
+ ----------------------------------------------------------------------------------
1372
+  (0.2ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Hello',15,'t','2016-03-20 19:58:37.275191','2016-03-20 19:58:37.275191','chartreuse')
1373
+  (0.1ms) SELECT COUNT(*) FROM "testings"
1374
+ Testing Load (0.1ms) SELECT "testings".* FROM "testings" ORDER BY "testings"."id" ASC LIMIT 1
1375
+  (0.4ms) rollback transaction
1376
+  (0.0ms) begin transaction
1377
+ -------------------------------------------------------------------
1378
+ BulkInsertWorkerTest: test_save!_when_not_pending_should_do_nothing
1379
+ -------------------------------------------------------------------
1380
+  (0.1ms) SELECT COUNT(*) FROM "testings"
1381
+  (0.0ms) SELECT COUNT(*) FROM "testings"
1382
+  (0.0ms) rollback transaction
1383
+  (0.1ms) begin transaction
1384
+ ----------------------------------------------------------------
1385
+ BulkInsertWorkerTest: test_add_should_allow_values_given_as_Hash
1386
+ ----------------------------------------------------------------
1387
+  (0.2ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Yo',20,'f','2016-03-20 19:58:37.279127','2016-03-20 19:58:37.279127','chartreuse')
1388
+ Testing Load (0.1ms) SELECT "testings".* FROM "testings" ORDER BY "testings"."id" ASC LIMIT 1
1389
+  (0.3ms) rollback transaction
1390
+  (0.1ms) begin transaction
1391
+ -------------------------------------------------------------------------------
1392
+ BulkInsertWorkerTest: test_add_should_default_timestamp_columns_to_current_time
1393
+ -------------------------------------------------------------------------------
1394
+  (0.2ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Hello',15,'t','2016-03-20 19:58:37.282420','2016-03-20 19:58:37.282420','chartreuse')
1395
+ Testing Load (0.1ms) SELECT "testings".* FROM "testings" ORDER BY "testings"."id" ASC LIMIT 1
1396
+  (0.5ms) rollback transaction
1397
+  (0.0ms) begin transaction
1398
+ ----------------------------------------------------------------------------
1399
+ BulkInsertWorkerTest: test_pending_count_should_describe_size_of_pending_set
1400
+ ----------------------------------------------------------------------------
1401
+  (0.0ms) rollback transaction
1402
+  (0.1ms) begin transaction
1403
+ ------------------------------------------------------
1404
+ BulkInsertWorkerTest: test_empty_insert_is_not_pending
1405
+ ------------------------------------------------------
1406
+  (0.1ms) rollback transaction
1407
+  (0.1ms) begin transaction
1408
+ -------------------------------------------------------------------
1409
+ BulkInsertTest: test_bulk_insert_without_block_should_return_worker
1410
+ -------------------------------------------------------------------
1411
+  (0.0ms) rollback transaction
1412
+  (0.0ms) begin transaction
1413
+ -----------------------------------------------------------------------------
1414
+ BulkInsertTest: test_bulk_insert_with_array_should_save_the_array_immediately
1415
+ -----------------------------------------------------------------------------
1416
+  (0.2ms) SELECT COUNT(*) FROM "testings"
1417
+  (0.0ms) SAVEPOINT active_record_1
1418
+  (0.2ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Hello',15,'t','green','2016-03-20 19:58:37.290869','chartreuse'),('Hey',20,'f','2016-03-20 19:58:37.290869','2016-03-20 19:58:37.290869','chartreuse')
1419
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1420
+  (0.0ms) SELECT COUNT(*) FROM "testings"
1421
+  (0.5ms) rollback transaction
1422
+  (0.1ms) begin transaction
1423
+ ---------------------------------------------------------------
1424
+ BulkInsertTest: test_bulk_insert_with_block_should_yield_worker
1425
+ ---------------------------------------------------------------
1426
+  (0.1ms) SAVEPOINT active_record_1
1427
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1428
+  (0.1ms) rollback transaction
1429
+  (0.1ms) begin transaction
1430
+ ------------------------------------------------------------------------------
1431
+ BulkInsertTest: test_default_bulk_columns_should_return_all_columns_without_id
1432
+ ------------------------------------------------------------------------------
1433
+  (0.1ms) rollback transaction
1434
+  (0.1ms) begin transaction
1435
+ ---------------------------------------------------------------------
1436
+ BulkInsertTest: test_bulk_insert_with_block_should_save_automatically
1437
+ ---------------------------------------------------------------------
1438
+  (0.2ms) SELECT COUNT(*) FROM "testings"
1439
+  (0.1ms) SAVEPOINT active_record_1
1440
+  (0.2ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Hello',NULL,NULL,'2016-03-20 19:58:37.296764','2016-03-20 19:58:37.296764','chartreuse')
1441
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1442
+  (0.1ms) SELECT COUNT(*) FROM "testings"
1443
+  (0.4ms) rollback transaction
1444
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1445
+  (0.1ms) begin transaction
1446
+ ----------------------------------------------------------------------------
1447
+ BulkInsertWorkerTest: test_pending_count_should_describe_size_of_pending_set
1448
+ ----------------------------------------------------------------------------
1449
+  (0.0ms) rollback transaction
1450
+  (0.1ms) begin transaction
1451
+ ---------------------------------------------------------------------
1452
+ BulkInsertWorkerTest: test_add_all_should_append_all_items_to_the_set
1453
+ ---------------------------------------------------------------------
1454
+  (0.0ms) rollback transaction
1455
+  (0.1ms) begin transaction
1456
+ --------------------------------------------------------
1457
+ BulkInsertWorkerTest: test_save!_inserts_pending_records
1458
+ --------------------------------------------------------
1459
+  (0.3ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Yo',15,'f','2016-03-20 19:59:08.351204','2016-03-20 19:59:08.351204','chartreuse'),('Hello',25,'t','2016-03-20 19:59:08.351204','2016-03-20 19:59:08.351204','chartreuse')
1460
+ Testing Load (0.3ms) SELECT "testings".* FROM "testings" WHERE "testings"."greeting" = ? LIMIT 1 [["greeting", "Yo"]]
1461
+ Testing Load (0.1ms) SELECT "testings".* FROM "testings" WHERE "testings"."greeting" = ? LIMIT 1 [["greeting", "Hello"]]
1462
+  (2.4ms) rollback transaction
1463
+  (0.1ms) begin transaction
1464
+ ------------------------------------------------------
1465
+ BulkInsertWorkerTest: test_empty_insert_is_not_pending
1466
+ ------------------------------------------------------
1467
+  (0.0ms) rollback transaction
1468
+  (0.1ms) begin transaction
1469
+ --------------------------------------------------------------------
1470
+ BulkInsertWorkerTest: test_adding_row_to_insert_makes_insert_pending
1471
+ --------------------------------------------------------------------
1472
+  (0.0ms) rollback transaction
1473
+  (0.1ms) begin transaction
1474
+ ----------------------------------------------------------------------------------------------
1475
+ BulkInsertWorkerTest: test_default_timestamp_columns_should_be_equivalent_for_the_entire_batch
1476
+ ----------------------------------------------------------------------------------------------
1477
+  (0.2ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Hello',15,'t','2016-03-20 19:59:08.369272','2016-03-20 19:59:08.369272','chartreuse'),('Howdy',20,'f','2016-03-20 19:59:08.369272','2016-03-20 19:59:08.369272','chartreuse')
1478
+ Testing Load (0.1ms) SELECT "testings".* FROM "testings"
1479
+  (0.5ms) rollback transaction
1480
+  (0.1ms) begin transaction
1481
+ -------------------------------------------
1482
+ BulkInsertWorkerTest: test_default_set_size
1483
+ -------------------------------------------
1484
+  (0.0ms) rollback transaction
1485
+  (0.1ms) begin transaction
1486
+ ------------------------------------------------------------------------------
1487
+ BulkInsertWorkerTest: test_add_should_use_database_default_values_when_present
1488
+ ------------------------------------------------------------------------------
1489
+  (0.2ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Hello',20,'f','2016-03-20 19:59:08.372173','2016-03-20 19:59:08.372173','chartreuse')
1490
+ Testing Load (0.1ms) SELECT "testings".* FROM "testings" ORDER BY "testings"."id" ASC LIMIT 1
1491
+  (0.4ms) rollback transaction
1492
+  (0.0ms) begin transaction
1493
+ ----------------------------------------------------------------------------------
1494
+ BulkInsertWorkerTest: test_add_should_save_automatically_when_overflowing_set_size
1495
+ ----------------------------------------------------------------------------------
1496
+  (0.2ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Hello',15,'t','2016-03-20 19:59:08.374123','2016-03-20 19:59:08.374123','chartreuse')
1497
+  (0.1ms) SELECT COUNT(*) FROM "testings"
1498
+ Testing Load (0.1ms) SELECT "testings".* FROM "testings" ORDER BY "testings"."id" ASC LIMIT 1
1499
+  (0.4ms) rollback transaction
1500
+  (0.1ms) begin transaction
1501
+ -------------------------------------------------------------------------------
1502
+ BulkInsertWorkerTest: test_add_should_default_timestamp_columns_to_current_time
1503
+ -------------------------------------------------------------------------------
1504
+  (0.3ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Hello',15,'t','2016-03-20 19:59:08.376668','2016-03-20 19:59:08.376668','chartreuse')
1505
+ Testing Load (0.1ms) SELECT "testings".* FROM "testings" ORDER BY "testings"."id" ASC LIMIT 1
1506
+  (0.4ms) rollback transaction
1507
+  (0.1ms) begin transaction
1508
+ -------------------------------------------------------------------
1509
+ BulkInsertWorkerTest: test_save!_when_not_pending_should_do_nothing
1510
+ -------------------------------------------------------------------
1511
+  (0.0ms) SELECT COUNT(*) FROM "testings"
1512
+  (0.0ms) SELECT COUNT(*) FROM "testings"
1513
+  (0.0ms) rollback transaction
1514
+  (0.1ms) begin transaction
1515
+ ----------------------------------------------------------------
1516
+ BulkInsertWorkerTest: test_add_should_allow_values_given_as_Hash
1517
+ ----------------------------------------------------------------
1518
+  (0.2ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Yo',20,'f','2016-03-20 19:59:08.380222','2016-03-20 19:59:08.380222','chartreuse')
1519
+ Testing Load (0.1ms) SELECT "testings".* FROM "testings" ORDER BY "testings"."id" ASC LIMIT 1
1520
+  (1.1ms) rollback transaction
1521
+  (0.1ms) begin transaction
1522
+ ---------------------------------------------------------
1523
+ BulkInsertWorkerTest: test_save!_makes_insert_not_pending
1524
+ ---------------------------------------------------------
1525
+  (0.3ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Hello',15,'t','2016-03-20 19:59:08.383364','2016-03-20 19:59:08.383364','chartreuse')
1526
+  (0.6ms) rollback transaction
1527
+  (0.1ms) begin transaction
1528
+ ----------------------------------------------------------------
1529
+ BulkInsertWorkerTest: test_explicit_nil_should_override_defaults
1530
+ ----------------------------------------------------------------
1531
+  (0.2ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Hello',20,'f','2016-03-20 19:59:08.385585','2016-03-20 19:59:08.385585',NULL)
1532
+ Testing Load (0.1ms) SELECT "testings".* FROM "testings" ORDER BY "testings"."id" ASC LIMIT 1
1533
+  (0.3ms) rollback transaction
1534
+  (0.1ms) begin transaction
1535
+ -------------------------------------------------------------------
1536
+ BulkInsertTest: test_bulk_insert_without_block_should_return_worker
1537
+ -------------------------------------------------------------------
1538
+  (0.0ms) rollback transaction
1539
+  (0.0ms) begin transaction
1540
+ ---------------------------------------------------------------------
1541
+ BulkInsertTest: test_bulk_insert_with_block_should_save_automatically
1542
+ ---------------------------------------------------------------------
1543
+  (0.1ms) SELECT COUNT(*) FROM "testings"
1544
+  (0.1ms) SAVEPOINT active_record_1
1545
+  (0.3ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Hello',NULL,NULL,'2016-03-20 19:59:08.391123','2016-03-20 19:59:08.391123','chartreuse')
1546
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1547
+  (0.1ms) SELECT COUNT(*) FROM "testings"
1548
+  (0.4ms) rollback transaction
1549
+  (0.1ms) begin transaction
1550
+ -----------------------------------------------------------------------------
1551
+ BulkInsertTest: test_bulk_insert_with_array_should_save_the_array_immediately
1552
+ -----------------------------------------------------------------------------
1553
+  (0.1ms) SELECT COUNT(*) FROM "testings"
1554
+  (0.0ms) SAVEPOINT active_record_1
1555
+  (0.2ms) INSERT INTO "testings" ("greeting","age","happy","created_at","updated_at","color") VALUES ('Hello',15,'t','green','2016-03-20 19:59:08.394761','chartreuse'),('Hey',20,'f','2016-03-20 19:59:08.394761','2016-03-20 19:59:08.394761','chartreuse')
1556
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1557
+  (0.0ms) SELECT COUNT(*) FROM "testings"
1558
+  (0.5ms) rollback transaction
1559
+  (0.1ms) begin transaction
1560
+ ---------------------------------------------------------------
1561
+ BulkInsertTest: test_bulk_insert_with_block_should_yield_worker
1562
+ ---------------------------------------------------------------
1563
+  (0.0ms) SAVEPOINT active_record_1
1564
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1565
+  (0.1ms) rollback transaction
1566
+  (0.1ms) begin transaction
1567
+ ------------------------------------------------------------------------------
1568
+ BulkInsertTest: test_default_bulk_columns_should_return_all_columns_without_id
1569
+ ------------------------------------------------------------------------------
1570
+  (0.1ms) rollback transaction
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bulk_insert
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamis Buck
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-28 00:00:00.000000000 Z
11
+ date: 2016-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 4.2.2
19
+ version: 4.1.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 4.2.2
26
+ version: 4.1.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: sqlite3
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -42,16 +42,16 @@ dependencies:
42
42
  name: rails
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: 4.2.2
47
+ version: 4.1.0
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: 4.2.2
54
+ version: 4.1.0
55
55
  description: Faster inserts! Insert N records in a single statement.
56
56
  email:
57
57
  - jamis@jamisbuck.org
@@ -130,7 +130,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
130
130
  version: '0'
131
131
  requirements: []
132
132
  rubyforge_project:
133
- rubygems_version: 2.4.5
133
+ rubygems_version: 2.5.1
134
134
  signing_key:
135
135
  specification_version: 4
136
136
  summary: An helper for doing batch (single-statement) inserts in ActiveRecord
@@ -180,3 +180,4 @@ test_files:
180
180
  - test/dummy/Rakefile
181
181
  - test/dummy/README.rdoc
182
182
  - test/test_helper.rb
183
+ has_rdoc: