openstax_salesforce 0.15.0 → 0.16.0

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: db68bca0529aba20d81cf27f372d10c056b4f5ce
4
- data.tar.gz: 3dd5a11d2c96de808a94220ee7f93ad88042815d
3
+ metadata.gz: 369155534fa27aec51de59ef0f4d24382d688695
4
+ data.tar.gz: 392c3e6b7b8ce8ab1440978fd4a2aea4d09d5f35
5
5
  SHA512:
6
- metadata.gz: 3a684aa97d1c9fb419e72983f75fb17fb3ca9457be6425f54e009e52349ea0eae115abbcedd47b844253479efa2afa1a6807fd7e58a2ea8acddbadb9dc26a8da
7
- data.tar.gz: e56a6e27435e54947094a88b9f2959d986824ed0a5752812592a2fa54ee9855b1e1b0bee1723f93606cc746acc9f52ed472c3d6832770c6d03404fd7ac26249f
6
+ metadata.gz: c25c87c30e7266533985ac7ff078381095ae438f0d83ba02f7ad82cc2df69639041b29308525d3635f5bcf27f479898955595bef97d7ee3c5028995dbd21c8ae
7
+ data.tar.gz: b74d549e4ec996b26aa4c09d0bb3175ceb23f81c77c682bdd33db45fc694190bb901197f63061f5a42d7c1ac143fe4a58b1967d7e82c1f53a47f3df78426e8b4
@@ -12,6 +12,7 @@ module OpenStax::Salesforce::Remote
12
12
  field :spring_start_date, from: "Spring_Start_Date__c"
13
13
  field :adoption_level, from: "Adoption_Level__c"
14
14
  field :description, from: "Description__c"
15
+ field :source, from: "Source__c"
15
16
 
16
17
  # Deprecated
17
18
  field :term_year, from: "TermYear__c"
@@ -5,10 +5,11 @@ module OpenStax::Salesforce::Remote
5
5
  field :product, from: "Product__c", as: :picklist
6
6
  field :account_type, from: "Account_Type__c"
7
7
  field :book_name, from: "Book_Name__c"
8
- field :course_start_date, from: "Class_Start_Date__c", as: :date
8
+ field :course_start_date, from: "Course_Start_Date__c", as: :date
9
9
  field :course_name, from: "Course_Name__c"
10
10
  field :course_code, from: "Course_Code__c"
11
11
  field :course_id, from: "External_ID__c"
12
+ field :course_uuid, from: "External_UUID__c"
12
13
  field :created_at, from: "E_Created_Date__c", as: :datetime
13
14
  field :error, from: "Error__c"
14
15
  field :general_access_url, from: "General_Access_URL__c"
@@ -17,8 +18,12 @@ module OpenStax::Salesforce::Remote
17
18
  field :num_teachers, from: "Active_Teachers__c", as: :int
18
19
  field :num_sections, from: "Sections__c", as: :int
19
20
  field :num_students, from: "Students_Using__c", as: :int
21
+ field :num_students_paid, from: "Students_Paid__c", as: :int
22
+ field :num_students_comped, from: "Students_Comped__c", as: :int
23
+ field :num_students_refunded, from: "Students_Refunded__c", as: :int
20
24
  field :term_year, from: "TermYear__c"
21
25
  field :term, from: "Term__c"
26
+ field :estimated_enrollment, from: "Estimated_Enrollment__c", as: :int
22
27
  field :opportunity_id, from: 'Opportunity__c'
23
28
  field :individual_adoption_id, from: "Individual_Adoption__c"
24
29
  field :contact_id, from: "Contact__c"
@@ -29,6 +34,9 @@ module OpenStax::Salesforce::Remote
29
34
 
30
35
  def reset_stats
31
36
  self.num_students = 0
37
+ self.num_students_paid = 0
38
+ self.num_students_comped = 0
39
+ self.num_students_refunded = 0
32
40
  self.num_teachers = 0
33
41
  self.num_sections = 0
34
42
  end
@@ -1,5 +1,5 @@
1
1
  module OpenStax
2
2
  module Salesforce
3
- VERSION = "0.15.0"
3
+ VERSION = "0.16.0"
4
4
  end
5
5
  end
Binary file
@@ -2458,3 +2458,239 @@ Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
2458
2458
   (0.0ms) SAVEPOINT active_record_1
2459
2459
   (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2460
2460
   (0.0ms) rollback transaction
2461
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2462
+  (1.8ms) DELETE FROM "openstax_salesforce_users";
2463
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
2464
+  (0.3ms) DELETE FROM sqlite_sequence where name = 'openstax_salesforce_users';
2465
+  (0.0ms) begin transaction
2466
+  (0.1ms) commit transaction
2467
+  (0.0ms) begin transaction
2468
+  (0.0ms) SAVEPOINT active_record_1
2469
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2470
+  (0.0ms) SAVEPOINT active_record_1
2471
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2472
+  (0.1ms) rollback transaction
2473
+  (0.0ms) begin transaction
2474
+  (0.0ms) commit transaction
2475
+  (0.0ms) begin transaction
2476
+  (0.0ms) SAVEPOINT active_record_1
2477
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2478
+  (0.0ms) SAVEPOINT active_record_1
2479
+ Processing by OpenStax::Salesforce::ApplicationController#index as HTML
2480
+ Filter chain halted as #<Proc:0x007fc7b9b86ce8@/Users/jps/dev/openstax/openstax_salesforce/app/controllers/openstax/salesforce/application_controller.rb:5> rendered or redirected
2481
+ Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
2482
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2483
+  (0.0ms) SAVEPOINT active_record_1
2484
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2485
+  (0.0ms) SAVEPOINT active_record_1
2486
+ Processing by OpenStax::Salesforce::ApplicationController#index as HTML
2487
+ Rendered text template (0.0ms)
2488
+ Completed 200 OK in 8ms (Views: 8.3ms | ActiveRecord: 0.0ms)
2489
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2490
+  (0.1ms) rollback transaction
2491
+  (0.0ms) begin transaction
2492
+  (0.0ms) commit transaction
2493
+  (0.0ms) begin transaction
2494
+  (0.0ms) SAVEPOINT active_record_1
2495
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2496
+  (0.0ms) SAVEPOINT active_record_1
2497
+  (0.1ms) SELECT COUNT(*) FROM "openstax_salesforce_users"
2498
+ Processing by OpenStax::Salesforce::SettingsController#callback as HTML
2499
+ OpenStax::Salesforce::User Load (0.1ms) SELECT "openstax_salesforce_users".* FROM "openstax_salesforce_users" WHERE "openstax_salesforce_users"."uid" = ? ORDER BY "openstax_salesforce_users"."id" ASC LIMIT 1 [["uid", "someuid"]]
2500
+  (0.0ms) SAVEPOINT active_record_2
2501
+ SQL (0.3ms) INSERT INTO "openstax_salesforce_users" ("uid", "name", "oauth_token", "refresh_token", "instance_url", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "someuid"], ["name", "Bobby Thomas"], ["oauth_token", "oauth_token"], ["refresh_token", "refresh_token"], ["instance_url", "http://blah.com/"], ["created_at", "2017-06-10 21:54:15.956675"], ["updated_at", "2017-06-10 21:54:15.956675"]]
2502
+ OpenStax::Salesforce::User Load (0.1ms) SELECT "openstax_salesforce_users".* FROM "openstax_salesforce_users" WHERE "openstax_salesforce_users"."id" != 1
2503
+  (0.0ms) RELEASE SAVEPOINT active_record_2
2504
+ Redirected to http://test.host/admin/salesforce/
2505
+ Completed 302 Found in 16ms (ActiveRecord: 0.5ms)
2506
+  (0.1ms) SELECT COUNT(*) FROM "openstax_salesforce_users"
2507
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2508
+  (0.1ms) SAVEPOINT active_record_1
2509
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2510
+  (0.0ms) SAVEPOINT active_record_1
2511
+  (0.1ms) SAVEPOINT active_record_2
2512
+ SQL (0.4ms) INSERT INTO "openstax_salesforce_users" ("uid", "name", "oauth_token", "refresh_token", "instance_url", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "0dd42d39e6c8fb8ac7ff"], ["name", "Nestor Boehm V"], ["oauth_token", "4620482a2f6917d5668a9adcc9ab61ff"], ["refresh_token", "f0bc675f6060b5ca7b8ea5c237de4fa7"], ["instance_url", "http://yostnikolaus.biz/jovanny"], ["created_at", "2017-06-10 21:54:16.458495"], ["updated_at", "2017-06-10 21:54:16.458495"]]
2513
+  (0.0ms) RELEASE SAVEPOINT active_record_2
2514
+  (0.0ms) SAVEPOINT active_record_2
2515
+ SQL (0.1ms) INSERT INTO "openstax_salesforce_users" ("uid", "name", "oauth_token", "refresh_token", "instance_url", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "f0bef49b34363bbcf668"], ["name", "Mrs. Darrin Corkery"], ["oauth_token", "491d7b145153cff33689e322c42f13cf"], ["refresh_token", "1a1902dfd6c5e47b501db996e51a5ff7"], ["instance_url", "http://waelchi.co/dayana.flatley"], ["created_at", "2017-06-10 21:54:16.461055"], ["updated_at", "2017-06-10 21:54:16.461055"]]
2516
+  (0.0ms) RELEASE SAVEPOINT active_record_2
2517
+  (0.1ms) SELECT COUNT(*) FROM "openstax_salesforce_users"
2518
+ Processing by OpenStax::Salesforce::SettingsController#callback as HTML
2519
+ OpenStax::Salesforce::User Load (0.0ms) SELECT "openstax_salesforce_users".* FROM "openstax_salesforce_users" WHERE "openstax_salesforce_users"."uid" = ? ORDER BY "openstax_salesforce_users"."id" ASC LIMIT 1 [["uid", "someuid"]]
2520
+  (0.0ms) SAVEPOINT active_record_2
2521
+ SQL (0.1ms) INSERT INTO "openstax_salesforce_users" ("uid", "name", "oauth_token", "refresh_token", "instance_url", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "someuid"], ["name", "Bobby Thomas"], ["oauth_token", "oauth_token"], ["refresh_token", "refresh_token"], ["instance_url", "http://blah.com/"], ["created_at", "2017-06-10 21:54:16.467775"], ["updated_at", "2017-06-10 21:54:16.467775"]]
2522
+ OpenStax::Salesforce::User Load (0.1ms) SELECT "openstax_salesforce_users".* FROM "openstax_salesforce_users" WHERE "openstax_salesforce_users"."id" != 3
2523
+ SQL (0.1ms) DELETE FROM "openstax_salesforce_users" WHERE "openstax_salesforce_users"."id" = ? [["id", 1]]
2524
+ SQL (0.0ms) DELETE FROM "openstax_salesforce_users" WHERE "openstax_salesforce_users"."id" = ? [["id", 2]]
2525
+  (0.0ms) RELEASE SAVEPOINT active_record_2
2526
+ Redirected to http://test.host/admin/salesforce/
2527
+ Completed 302 Found in 6ms (ActiveRecord: 0.4ms)
2528
+  (0.1ms) SELECT COUNT(*) FROM "openstax_salesforce_users"
2529
+ OpenStax::Salesforce::User Load (0.1ms) SELECT "openstax_salesforce_users".* FROM "openstax_salesforce_users"
2530
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2531
+  (0.0ms) SAVEPOINT active_record_1
2532
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2533
+  (0.0ms) SAVEPOINT active_record_1
2534
+  (0.0ms) SAVEPOINT active_record_2
2535
+ SQL (0.1ms) INSERT INTO "openstax_salesforce_users" ("uid", "name", "oauth_token", "refresh_token", "instance_url", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "someuid"], ["name", "Eleanore Ankunding"], ["oauth_token", "8cbd7aa0c1073c3f44c4ba2300d2bacb"], ["refresh_token", "c6984769b152aacd75a4d7e69606eaf3"], ["instance_url", "http://ankunding.io/chance"], ["created_at", "2017-06-10 21:54:16.475759"], ["updated_at", "2017-06-10 21:54:16.475759"]]
2536
+ OpenStax::Salesforce::User Load (0.1ms) SELECT "openstax_salesforce_users".* FROM "openstax_salesforce_users" WHERE "openstax_salesforce_users"."id" != 1
2537
+  (0.0ms) RELEASE SAVEPOINT active_record_2
2538
+ Processing by OpenStax::Salesforce::SettingsController#callback as HTML
2539
+ OpenStax::Salesforce::User Load (0.0ms) SELECT "openstax_salesforce_users".* FROM "openstax_salesforce_users" WHERE "openstax_salesforce_users"."uid" = ? ORDER BY "openstax_salesforce_users"."id" ASC LIMIT 1 [["uid", "someuid"]]
2540
+  (0.0ms) SAVEPOINT active_record_2
2541
+ SQL (0.1ms) UPDATE "openstax_salesforce_users" SET "name" = ?, "oauth_token" = ?, "refresh_token" = ?, "instance_url" = ?, "updated_at" = ? WHERE "openstax_salesforce_users"."id" = ? [["name", "Bobby Thomas"], ["oauth_token", "oauth_token"], ["refresh_token", "refresh_token"], ["instance_url", "http://blah.com/"], ["updated_at", "2017-06-10 21:54:16.482434"], ["id", 1]]
2542
+ OpenStax::Salesforce::User Load (0.1ms) SELECT "openstax_salesforce_users".* FROM "openstax_salesforce_users" WHERE "openstax_salesforce_users"."id" != 1
2543
+  (0.0ms) RELEASE SAVEPOINT active_record_2
2544
+ Redirected to http://test.host/admin/salesforce/
2545
+ Completed 302 Found in 5ms (ActiveRecord: 0.3ms)
2546
+ OpenStax::Salesforce::User Load (0.1ms) SELECT "openstax_salesforce_users".* FROM "openstax_salesforce_users" WHERE "openstax_salesforce_users"."id" = ? LIMIT 1 [["id", 1]]
2547
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2548
+  (0.0ms) SAVEPOINT active_record_1
2549
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2550
+  (0.0ms) SAVEPOINT active_record_1
2551
+  (0.0ms) SAVEPOINT active_record_2
2552
+ SQL (0.1ms) INSERT INTO "openstax_salesforce_users" ("uid", "name", "oauth_token", "refresh_token", "instance_url", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "b5c20fbfaa8d12a7dd15"], ["name", "Piper Huel"], ["oauth_token", "6dcc015df922888898a163323c6296a1"], ["refresh_token", "29fff8baf7145d7003798d8346b2e865"], ["instance_url", "http://vonrohan.io/katrine"], ["created_at", "2017-06-10 21:54:16.490780"], ["updated_at", "2017-06-10 21:54:16.490780"]]
2553
+ OpenStax::Salesforce::User Load (0.1ms) SELECT "openstax_salesforce_users".* FROM "openstax_salesforce_users" WHERE "openstax_salesforce_users"."id" != 1
2554
+  (0.0ms) RELEASE SAVEPOINT active_record_2
2555
+  (0.0ms) SELECT COUNT(*) FROM "openstax_salesforce_users"
2556
+ Processing by OpenStax::Salesforce::SettingsController#destroy_user as HTML
2557
+ OpenStax::Salesforce::User Load (0.1ms) SELECT "openstax_salesforce_users".* FROM "openstax_salesforce_users"
2558
+  (0.0ms) SAVEPOINT active_record_2
2559
+ SQL (0.1ms) DELETE FROM "openstax_salesforce_users" WHERE "openstax_salesforce_users"."id" = ? [["id", 1]]
2560
+  (0.0ms) RELEASE SAVEPOINT active_record_2
2561
+ Redirected to http://test.host/admin/salesforce/
2562
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
2563
+  (0.1ms) SELECT COUNT(*) FROM "openstax_salesforce_users"
2564
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2565
+  (0.1ms) SAVEPOINT active_record_1
2566
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2567
+  (0.0ms) SAVEPOINT active_record_1
2568
+ Processing by OpenStax::Salesforce::SettingsController#show as HTML
2569
+ Filter chain halted as #<Proc:0x007fc7b9b86ce8@/Users/jps/dev/openstax/openstax_salesforce/app/controllers/openstax/salesforce/application_controller.rb:5> rendered or redirected
2570
+ Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
2571
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2572
+  (0.9ms) rollback transaction
2573
+  (0.0ms) begin transaction
2574
+  (0.1ms) commit transaction
2575
+  (0.0ms) begin transaction
2576
+  (0.0ms) SAVEPOINT active_record_1
2577
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2578
+  (0.0ms) SAVEPOINT active_record_1
2579
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2580
+  (0.1ms) rollback transaction
2581
+  (0.0ms) begin transaction
2582
+  (0.0ms) commit transaction
2583
+  (0.1ms) begin transaction
2584
+  (0.0ms) SAVEPOINT active_record_1
2585
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2586
+  (0.0ms) SAVEPOINT active_record_1
2587
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2588
+  (0.0ms) SAVEPOINT active_record_1
2589
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2590
+  (0.0ms) SAVEPOINT active_record_1
2591
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2592
+  (0.0ms) SAVEPOINT active_record_1
2593
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2594
+  (0.0ms) SAVEPOINT active_record_1
2595
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2596
+  (0.1ms) SAVEPOINT active_record_1
2597
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2598
+  (0.0ms) SAVEPOINT active_record_1
2599
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2600
+  (0.0ms) SAVEPOINT active_record_1
2601
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2602
+  (0.0ms) SAVEPOINT active_record_1
2603
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2604
+  (0.0ms) SAVEPOINT active_record_1
2605
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2606
+  (0.0ms) SAVEPOINT active_record_1
2607
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2608
+  (0.1ms) SAVEPOINT active_record_1
2609
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2610
+  (0.0ms) SAVEPOINT active_record_1
2611
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2612
+  (0.0ms) SAVEPOINT active_record_1
2613
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2614
+  (0.0ms) SAVEPOINT active_record_1
2615
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2616
+  (0.0ms) SAVEPOINT active_record_1
2617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2618
+  (0.0ms) SAVEPOINT active_record_1
2619
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2620
+  (0.0ms) SAVEPOINT active_record_1
2621
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2622
+  (0.0ms) SAVEPOINT active_record_1
2623
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2624
+  (0.0ms) rollback transaction
2625
+  (0.0ms) begin transaction
2626
+  (0.0ms) commit transaction
2627
+  (0.0ms) begin transaction
2628
+  (0.0ms) SAVEPOINT active_record_1
2629
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2630
+  (0.0ms) SAVEPOINT active_record_1
2631
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2632
+  (0.0ms) SAVEPOINT active_record_1
2633
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2634
+  (0.0ms) SAVEPOINT active_record_1
2635
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2636
+  (0.0ms) SAVEPOINT active_record_1
2637
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2638
+  (0.0ms) SAVEPOINT active_record_1
2639
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2640
+  (0.0ms) SAVEPOINT active_record_1
2641
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2642
+  (0.0ms) SAVEPOINT active_record_1
2643
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2644
+  (0.0ms) SAVEPOINT active_record_1
2645
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2646
+  (0.0ms) SAVEPOINT active_record_1
2647
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2648
+  (0.0ms) SAVEPOINT active_record_1
2649
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2650
+  (0.0ms) SAVEPOINT active_record_1
2651
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2652
+  (0.0ms) SAVEPOINT active_record_1
2653
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2654
+  (0.0ms) SAVEPOINT active_record_1
2655
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2656
+  (0.0ms) SAVEPOINT active_record_1
2657
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2658
+  (0.0ms) SAVEPOINT active_record_1
2659
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2660
+  (0.0ms) SAVEPOINT active_record_1
2661
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2662
+  (0.0ms) SAVEPOINT active_record_1
2663
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2664
+  (0.0ms) SAVEPOINT active_record_1
2665
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2666
+  (0.0ms) SAVEPOINT active_record_1
2667
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2668
+  (0.0ms) SAVEPOINT active_record_1
2669
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2670
+  (0.0ms) SAVEPOINT active_record_1
2671
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2672
+  (0.0ms) rollback transaction
2673
+  (0.0ms) begin transaction
2674
+  (0.0ms) commit transaction
2675
+  (0.0ms) begin transaction
2676
+  (0.0ms) SAVEPOINT active_record_1
2677
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2678
+  (0.0ms) SAVEPOINT active_record_1
2679
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2680
+  (0.0ms) SAVEPOINT active_record_1
2681
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2682
+  (0.0ms) SAVEPOINT active_record_1
2683
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2684
+  (0.0ms) SAVEPOINT active_record_1
2685
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2686
+  (0.0ms) SAVEPOINT active_record_1
2687
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2688
+  (0.0ms) rollback transaction
2689
+  (0.0ms) begin transaction
2690
+  (0.0ms) commit transaction
2691
+  (0.0ms) begin transaction
2692
+  (0.0ms) SAVEPOINT active_record_1
2693
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2694
+  (0.0ms) SAVEPOINT active_record_1
2695
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2696
+  (0.0ms) rollback transaction
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openstax_salesforce
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - JP Slavinsky
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-24 00:00:00.000000000 Z
11
+ date: 2017-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails