bit_player 0.4.2 → 0.4.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: 891c45df1c1f05d91208724b5a833fc18280e301
4
- data.tar.gz: da5946aa160baa19c36367fa2dd31e72f269cfdf
3
+ metadata.gz: f6d6f4fbf713a02dc588ccab736b31dd9ae84bfd
4
+ data.tar.gz: f1a489fc142a4f18fd9d77cdca8e4d6adc9b7049
5
5
  SHA512:
6
- metadata.gz: 9fa8f8a3df8b226f291cbd4515345664d869c5161f4f7ad251c35a6c986fdbcfe827723efa5c931317a451c7e8dab9101a5a547a0891b2b1bb10e00fa47fc36b
7
- data.tar.gz: aa32f6b2398e27e457dbe5f2d84677a91203f135065ba169c68b05e55a9e9e288c9274e282960e2dd332318885bafe9e5dda83e226dba12255bd13713c3ecfca
6
+ metadata.gz: 46db0b7782df8ce58ed9e4ee8954626a7bed53c07dc609bea619227190553d63057dccd5379336b3ce5db135b640ccd7ea8c1b1bcb2075d4c1e3f48af45151e8
7
+ data.tar.gz: 92cb094e34776d217f049d9d71827de835386efa0625e4db4b8b2301aae1e6a4122e7294a3ae2f593a70ae08615684f3a0ca6adab809d925a241e042b3fdae70
@@ -1,3 +1,3 @@
1
1
  module BitPlayer
2
- VERSION = "0.4.2"
2
+ VERSION = "0.4.3"
3
3
  end
@@ -2972,3 +2972,161 @@ Migrating to ConvertToolsModulesPresentersToBitCore (20140620222851)
2972
2972
   (0.3ms) ROLLBACK
2973
2973
   (0.2ms) BEGIN
2974
2974
   (0.2ms) ROLLBACK
2975
+  (4.2ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
2976
+  (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2977
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
2978
+ Migrating to CreateBitPlayerContentModules (20140305200438)
2979
+  (0.3ms) BEGIN
2980
+  (6.1ms) CREATE TABLE "bit_player_content_modules" ("id" serial primary key, "title" character varying(255) NOT NULL, "context" character varying(255) NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
2981
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305200438"]]
2982
+  (0.5ms) COMMIT
2983
+ Migrating to CreateBitPlayerContentProviders (20140305201300)
2984
+  (0.3ms) BEGIN
2985
+  (5.0ms) CREATE TABLE "bit_player_content_providers" ("id" serial primary key, "type" character varying(255) NOT NULL, "source_content_type" character varying(255), "source_content_id" integer, "bit_player_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
2986
+  (1.1ms) CREATE INDEX "content_module_index" ON "bit_player_content_providers" ("bit_player_content_module_id")
2987
+  (3.2ms)  ALTER TABLE bit_player_content_providers
2988
+ ADD CONSTRAINT fk_content_providers_modules
2989
+ FOREIGN KEY (bit_player_content_module_id)
2990
+ REFERENCES bit_player_content_modules(id)
2991
+ 
2992
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305201300"]]
2993
+  (0.8ms) COMMIT
2994
+ Migrating to CreateBitPlayerParticipantStatuses (20140305232705)
2995
+  (0.4ms) BEGIN
2996
+  (3.9ms) CREATE TABLE "bit_player_participant_statuses" ("id" serial primary key, "context" character varying(255), "module_position" integer, "provider_position" integer, "content_position" integer, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
2997
+  (1.7ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" ("participant_id")
2998
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305232705"]]
2999
+  (0.6ms) COMMIT
3000
+ Migrating to CreateBitPlayerSlideshows (20140305232706)
3001
+  (0.5ms) BEGIN
3002
+  (4.2ms) CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
3003
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305232706"]]
3004
+  (0.6ms) COMMIT
3005
+ Migrating to CreateBitPlayerSlides (20140305234327)
3006
+  (0.4ms) BEGIN
3007
+  (5.0ms) CREATE TABLE "bit_player_slides" ("id" serial primary key, "title" character varying(255), "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_player_slideshow_id" integer NOT NULL, "type" character varying(255), "options" text, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp)
3008
+  (1.1ms) CREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" ("bit_player_slideshow_id")
3009
+  (2.1ms) ALTER TABLE bit_player_slides
3010
+ ADD CONSTRAINT fk_slides_slideshows
3011
+ FOREIGN KEY (bit_player_slideshow_id)
3012
+ REFERENCES bit_player_slideshows(id)
3013
+
3014
+  (1.6ms)  ALTER TABLE bit_player_slides
3015
+ ADD CONSTRAINT bit_player_slide_position UNIQUE (bit_player_slideshow_id, position)
3016
+ DEFERRABLE INITIALLY IMMEDIATE
3017
+ 
3018
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305234327"]]
3019
+  (0.5ms) COMMIT
3020
+ Migrating to CreateBitPlayerTools (20140402224913)
3021
+  (0.4ms) BEGIN
3022
+  (3.4ms) CREATE TABLE "bit_player_tools" ("id" serial primary key, "title" character varying(255) NOT NULL, "position" integer, "is_home" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
3023
+  (1.2ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" ("title")
3024
+  (1.2ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" ("position")
3025
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140402224913"]]
3026
+  (0.5ms) COMMIT
3027
+ Migrating to ConvertSlidesSlideshowsToBitCore (20140620182756)
3028
+  (0.4ms) BEGIN
3029
+ BitPlayer::Slideshow Load (0.7ms) SELECT "bit_player_slideshows".* FROM "bit_player_slideshows"
3030
+ BitPlayer::Slide Load (0.9ms) SELECT "bit_player_slides".* FROM "bit_player_slides"
3031
+  (1.2ms)  ALTER TABLE bit_player_slides
3032
+ DROP CONSTRAINT IF EXISTS fk_slides_slideshows
3033
+ 
3034
+  (0.6ms) ALTER TABLE bit_player_slides
3035
+ DROP CONSTRAINT IF EXISTS bit_player_slide_position
3036
+
3037
+  (2.0ms) DROP TABLE "bit_player_slides"
3038
+  (1.1ms) DROP TABLE "bit_player_slideshows"
3039
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620182756"]]
3040
+  (2.0ms) COMMIT
3041
+ Migrating to CreateBitCoreTools (20140620222614)
3042
+  (0.3ms) BEGIN
3043
+  (4.9ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying(255) NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp)
3044
+  (1.7ms)  ALTER TABLE bit_core_tools
3045
+ ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
3046
+ DEFERRABLE INITIALLY IMMEDIATE
3047
+ 
3048
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222614"]]
3049
+  (0.7ms) COMMIT
3050
+ Migrating to CreateBitCoreContentModules (20140620222615)
3051
+  (0.6ms) BEGIN
3052
+  (4.2ms) CREATE TABLE "bit_core_content_modules" ("id" serial primary key, "title" character varying(255) NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_tool_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
3053
+  (1.7ms) ALTER TABLE bit_core_content_modules
3054
+ ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position)
3055
+ DEFERRABLE INITIALLY IMMEDIATE
3056
+
3057
+  (2.1ms)  ALTER TABLE bit_core_content_modules
3058
+ ADD CONSTRAINT fk_content_modules_tools
3059
+ FOREIGN KEY (bit_core_tool_id)
3060
+ REFERENCES bit_core_tools(id)
3061
+ 
3062
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222615"]]
3063
+  (0.6ms) COMMIT
3064
+ Migrating to CreateBitCoreContentProviders (20140620222616)
3065
+  (0.4ms) BEGIN
3066
+  (4.6ms) CREATE TABLE "bit_core_content_providers" ("id" serial primary key, "type" character varying(255) NOT NULL, "source_content_type" character varying(255), "source_content_id" integer, "bit_core_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
3067
+  (1.4ms) ALTER TABLE bit_core_content_providers
3068
+ ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position)
3069
+ DEFERRABLE INITIALLY IMMEDIATE
3070
+
3071
+  (2.0ms)  ALTER TABLE bit_core_content_providers
3072
+ ADD CONSTRAINT fk_content_providers_modules
3073
+ FOREIGN KEY (bit_core_content_module_id)
3074
+ REFERENCES bit_core_content_modules(id)
3075
+ 
3076
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222616"]]
3077
+  (0.5ms) COMMIT
3078
+ Migrating to CreateBitCoreSlideshows (20140620222617)
3079
+  (0.3ms) BEGIN
3080
+  (5.4ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
3081
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222617"]]
3082
+  (0.5ms) COMMIT
3083
+ Migrating to CreateBitCoreSlides (20140620222618)
3084
+  (0.9ms) BEGIN
3085
+  (7.9ms) CREATE TABLE "bit_core_slides" ("id" serial primary key, "title" character varying(255) NOT NULL, "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_slideshow_id" integer NOT NULL, "type" character varying(255), "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
3086
+  (2.2ms) ALTER TABLE bit_core_slides
3087
+ ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
3088
+ DEFERRABLE INITIALLY IMMEDIATE
3089
+
3090
+  (3.1ms)  ALTER TABLE bit_core_slides
3091
+ ADD CONSTRAINT fk_slideshows_slides
3092
+ FOREIGN KEY (bit_core_slideshow_id)
3093
+ REFERENCES bit_core_slideshows(id)
3094
+ 
3095
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222618"]]
3096
+  (0.6ms) COMMIT
3097
+ Migrating to AddOptionsToSlides (20140620222619)
3098
+  (0.5ms) BEGIN
3099
+  (0.9ms) ALTER TABLE "bit_core_slides" ADD COLUMN "options" text
3100
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222619"]]
3101
+  (0.6ms) COMMIT
3102
+ Migrating to AddConfigFieldsToProviders (20140620222620)
3103
+  (0.3ms) BEGIN
3104
+  (1.3ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "template_path" character varying(255)
3105
+  (1.2ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "data_class_name" character varying(255)
3106
+  (0.9ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "data_attributes" text
3107
+  (1.0ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "show_next_nav" boolean
3108
+  (0.9ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "locals" text
3109
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222620"]]
3110
+  (0.6ms) COMMIT
3111
+ Migrating to ConvertToolsModulesPresentersToBitCore (20140620222851)
3112
+  (0.3ms) BEGIN
3113
+ BitPlayer::Tool Load (1.2ms) SELECT "bit_player_tools".* FROM "bit_player_tools"
3114
+ BitPlayer::ContentModule Load (0.7ms) SELECT "bit_player_content_modules".* FROM "bit_player_content_modules"
3115
+ BitPlayer::ContentProvider Load (1.1ms) SELECT "bit_player_content_providers".* FROM "bit_player_content_providers"
3116
+  (0.5ms) ALTER TABLE bit_player_content_modules
3117
+ DROP CONSTRAINT IF EXISTS fk_content_modules_tools
3118
+
3119
+  (1.2ms)  ALTER TABLE bit_player_content_providers
3120
+ DROP CONSTRAINT IF EXISTS fk_content_providers_modules
3121
+ 
3122
+  (2.3ms) DROP TABLE "bit_player_tools"
3123
+  (2.8ms) DROP TABLE "bit_player_content_modules"
3124
+  (3.1ms) DROP TABLE "bit_player_content_providers"
3125
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222851"]]
3126
+  (3.2ms) COMMIT
3127
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
3128
+  (0.2ms) BEGIN
3129
+ BitCore::ContentModule Load (1.4ms) SELECT "bit_core_content_modules".* FROM "bit_core_content_modules" WHERE "bit_core_content_modules"."bit_core_tool_id" = 1 AND "bit_core_content_modules"."position" = 1 ORDER BY "bit_core_content_modules"."id" ASC LIMIT 1
3130
+  (0.3ms) ROLLBACK
3131
+  (0.2ms) BEGIN
3132
+  (0.2ms) ROLLBACK
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bit_player
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Carty-Fickes