coalescing_panda 3.2.2 → 3.2.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1047c6751e869eed833b6cb3c09ad30b64182dc9
4
- data.tar.gz: 249c8c04e1ec2a14d0cc1bdb8bffca77817ce159
3
+ metadata.gz: a68c7074069937ee9123210df564f8530abfd028
4
+ data.tar.gz: deb73b2b1afc2356f43f0bc0293780a7d7410f04
5
5
  SHA512:
6
- metadata.gz: 9c6ad972af0406e4a214f582e24ff685b38816bbf857e504af770a261aa11c236f24682c298d95e73db7da156f12ba63e01dbab70ec42a07befde620a7556189
7
- data.tar.gz: 6116f8d484e2e688f5826cd6eb2fea7801429431f1685c5ad77730a060f4f93c6f28c8747ec07afbb6c868196dd1a9011cea63d35699fc7810b97fb5f81dc2ce
6
+ metadata.gz: 89d9528a134274ed0f4cdb1202e41006841e3c648951531ab606843b8069272fc28b6da22df4bb6730ff5be64fb6b5ea707907daad763f0104edf86fa70e6535
7
+ data.tar.gz: 95204524896f7e6bfc927417c178eff6868dd95859320caa941c39567cf3cc0c86de8300221fce50b246f2bd6f17f312e0efcc195751b89d34f6c147ffd50ef9
@@ -1,3 +1,3 @@
1
1
  module CoalescingPanda
2
- VERSION = '3.2.2'
2
+ VERSION = '3.2.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coalescing_panda
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.2
4
+ version: 3.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Mills
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2015-03-02 00:00:00.000000000 Z
13
+ date: 2015-03-04 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails
@@ -379,7 +379,6 @@ files:
379
379
  - db/migrate/20150107205405_create_coalescing_panda_groups.rb
380
380
  - db/migrate/20150107205413_create_coalescing_panda_group_memberships.rb
381
381
  - db/migrate/20150210180516_add_context_to_canvas_batch.rb
382
- - db/migrate/20150218185536_add_missing_indexes.rb
383
382
  - lib/coalescing_panda.rb
384
383
  - lib/coalescing_panda/controller_helpers.rb
385
384
  - lib/coalescing_panda/engine.rb
@@ -1,16 +0,0 @@
1
- class AddMissingIndexes < ActiveRecord::Migration
2
- def change
3
- add_index :coalescing_panda_assignments, :coalescing_panda_course_id, name: 'index_assignment_course_id'
4
- add_index :coalescing_panda_courses, :coalescing_panda_lti_account_id, name: 'index_courses_lti_account_id'
5
- add_index :coalescing_panda_courses, :coalescing_panda_term_id, name: 'index_courses_term_id'
6
- add_index :coalescing_panda_sections, :coalescing_panda_course_id, name: 'index_sections_course_id'
7
- add_index :coalescing_panda_enrollments, :coalescing_panda_user_id, name: 'index_enrollments_user_id'
8
- add_index :coalescing_panda_enrollments, :coalescing_panda_section_id, name: 'index_enrollments_section_id'
9
- add_index :coalescing_panda_group_memberships, :coalescing_panda_user_id, name: 'index_memberships_user_id'
10
- add_index :coalescing_panda_group_memberships, :coalescing_panda_group_id, name: 'index_memberships_group_id'
11
- add_index :coalescing_panda_submissions, :coalescing_panda_user_id, name: 'index_submissions_user_id'
12
- add_index :coalescing_panda_submissions, :coalescing_panda_assignment_id, name: 'index_submissions_assignment_id'
13
- add_index :coalescing_panda_users, :coalescing_panda_lti_account_id, name: 'index_users_lti_account_id'
14
- add_index :coalescing_panda_terms, :coalescing_panda_lti_account_id, name: 'index_terms_lti_account_id'
15
- end
16
- end