coalescing_panda 3.1.12 → 3.1.13

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: bdd827137dd5ad4fbd6d631173d6414b0d5a72b1
4
- data.tar.gz: 57cd5786c88a0d48b20dbbb56e2a69a39a90d005
3
+ metadata.gz: 9f7a6fc76c317f3bbcb945130d9f1660a1515b73
4
+ data.tar.gz: 534c31aa689ba53e874a9c73665dfaaa0aae97a0
5
5
  SHA512:
6
- metadata.gz: e3a3a624e83f2a5c911ce1b708f5e03ca89e75d911cca367f75fa6370099c24a8413f6732cad8eb7d13566bdbdba3d6bf533da89d69e55036b4e3fb43fc4515c
7
- data.tar.gz: b5cbf6b78f4e1ae592a3662f58acad109749dbb01ab78097dcc90fd4a8e6aa26a48d49561020c1cf3a8d149b4b6389eda6b8b60889345f4ceb1a108aa0ebb742
6
+ metadata.gz: b51516f03a208e4ca257f9afdb42659c1c420d4ec398102119cee62972c229928f7b68f8278c8fbd540456da744d24c2b679160ea1e7bc700ef0e28e6a4ba0ba
7
+ data.tar.gz: 4e819edf84eabd4f433568dde48a886b8c48efe857c7d3956267f3b2e82915ec39e33540ae35ee5d94bac9e49fb71a48207c24cd5a73b8d51dd3856461344b06
@@ -0,0 +1,6 @@
1
+ class AddGroupCategoryIdToAssignment < ActiveRecord::Migration
2
+ def change
3
+ add_column :coalescing_panda_assignments, :group_category_id, :integer
4
+ add_column :coalescing_panda_assignments, :grade_group_students_individually, :boolean
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ class AddPublishedToAssignments < ActiveRecord::Migration
2
+ def change
3
+ add_column :coalescing_panda_assignments, :published, :boolean
4
+ end
5
+ end
@@ -1,3 +1,3 @@
1
1
  module CoalescingPanda
2
- VERSION = '3.1.12'
2
+ VERSION = '3.1.13'
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.1.12
4
+ version: 3.1.13
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: 2014-12-08 00:00:00.000000000 Z
13
+ date: 2015-01-06 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails
@@ -357,6 +357,8 @@ files:
357
357
  - db/migrate/20141121174846_create_coalescing_panda_canvas_batches.rb
358
358
  - db/migrate/20141124160857_create_delayed_jobs.rb
359
359
  - db/migrate/20141208221740_add_submission_types_to_assignments.rb
360
+ - db/migrate/20150106175418_add_group_category_id_to_assignment.rb
361
+ - db/migrate/20150106180131_add_published_to_assignments.rb
360
362
  - lib/coalescing_panda.rb
361
363
  - lib/coalescing_panda/controller_helpers.rb
362
364
  - lib/coalescing_panda/engine.rb