spina 0.6.20 → 0.6.21

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of spina might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1739d514819ce868a83fa8ba5c050c1ad5d78534
4
- data.tar.gz: d28e47f54a10eb52f39c3b3f1f6b2444bdfc0346
3
+ metadata.gz: cde5735a143386d3b1a7d69e0e851cf67e5d02a4
4
+ data.tar.gz: a49ab9bb05930e02da9f23096c05acf27c4c9bb7
5
5
  SHA512:
6
- metadata.gz: 132219698cc50adbb871fe12400831a3c580da75dbf142a23a2d2a9268e1e145e626839cd0cd38b30819f5bf5dfb0d2e01bced9f3fa5fd619c490e9cd7905a82
7
- data.tar.gz: 3b77225751842bce8abf7073c680fb2bd0f1d81e6781dcde50eb5a2df6461ed55473878e2f49fbd7d273e024d82fafa6a789f99630166b4074d3ff65e2dd86c1
6
+ metadata.gz: 2284e9b1a0b9fefd6d80057554f6c3fa89e1865df39e23aef63d1a1ad5e4b4526e807869ce6c375d0fc3f8f2c70f645696e432bb6fb9645760585d54e74a3740
7
+ data.tar.gz: d4367e71963fa3cb5ddeec9ffebfeb374aa2080258d86c109c2654aa520f31725620da98824c9bd6787535acabfda08f9d0f469454bc48b7943a36d4f4a1d2c6
@@ -8,6 +8,7 @@ module Spina
8
8
  else
9
9
  can :manage, Page
10
10
  can :manage, Photo
11
+ can :manage, Attachment
11
12
  can :manage, Account
12
13
  can :manage, Inquiry
13
14
 
@@ -0,0 +1,7 @@
1
+ module Spina
2
+ class Color < ActiveRecord::Base
3
+ has_many :page_parts, as: :page_partable
4
+ has_many :layout_parts, as: :layout_partable
5
+ has_many :structure_parts, as: :structure_partable
6
+ end
7
+ end
@@ -8,7 +8,6 @@
8
8
  .select-dropdown.account-theme{data: {layout_parts: current_theme.config.layout_parts.map{|layout_part| layout_part[:name]}}}
9
9
  - options = options_for_select(Spina.themes.map { |theme| [theme.to_s, theme.to_s, {'data-layout-parts' => theme.config.layout_parts.map{|layout_part| layout_part[:name] }}] }, current_account.theme)
10
10
  = f.select :theme, options
11
-
12
11
  %tr
13
12
  %td
14
13
  = Spina::Account.human_attribute_name(:logo)
@@ -0,0 +1,4 @@
1
+ = color_form.fields_for :layout_partable, color_form.object.layout_partable do |form|
2
+ .colorpicker
3
+ = form.text_field :content, placeholder: color_form.object.title
4
+ .colorpicker-container
@@ -1,4 +1,2 @@
1
1
  = line_form.fields_for :layout_partable, line_form.object.layout_partable do |form|
2
- .colorpicker
3
- = form.text_field :content, placeholder: line_form.object.title
4
- .colorpicker-container
2
+ = form.text_field :content, placeholder: line_form.object.title
@@ -0,0 +1,8 @@
1
+ class CreateSpinaColors < ActiveRecord::Migration
2
+ def change
3
+ create_table :spina_colors do |t|
4
+ t.text :content
5
+ t.timestamps
6
+ end
7
+ end
8
+ end
data/lib/spina/theme.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  module Spina
2
2
  class Theme
3
3
 
4
- attr_accessor :name, :config
4
+ attr_accessor :name, :config, :public_theme
5
5
 
6
6
  def to_s
7
7
  name
data/lib/spina/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Spina
2
- VERSION = "0.6.20"
2
+ VERSION = "0.6.21"
3
3
  end
@@ -13,14 +13,14 @@ development:
13
13
  # Warning: The database defined as "test" will be erased and
14
14
  # re-generated from your development database when you run "rake".
15
15
  # Do not set this db to the same as development or production.
16
- test:
17
- adapter: sqlite3
18
- database: db/test.sqlite3
19
- pool: 5
20
- timeout: 5000
16
+ # test:
17
+ # adapter: sqlite3
18
+ # database: db/test.sqlite3
19
+ # pool: 5
20
+ # timeout: 5000
21
21
 
22
- production:
23
- adapter: sqlite3
24
- database: db/production.sqlite3
25
- pool: 5
26
- timeout: 5000
22
+ # production:
23
+ # adapter: sqlite3
24
+ # database: db/production.sqlite3
25
+ # pool: 5
26
+ # timeout: 5000
@@ -4,7 +4,9 @@ end
4
4
 
5
5
  module Spina
6
6
  module DefaultTheme
7
- include Spina::Configurable
7
+ include ::ActiveSupport::Configurable
8
+
9
+ config_accessor :title, :page_parts, :view_templates, :layout_parts, :custom_pages, :plugins, :structures
8
10
 
9
11
  self.title = "Default theme"
10
12
 
@@ -0,0 +1,6 @@
1
+ # This migration comes from spina (originally 20140711154425)
2
+ class AddRobotsAllowedToSpinaAccounts < ActiveRecord::Migration
3
+ def change
4
+ add_column :spina_accounts, :robots_allowed, :boolean, default: false
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ # This migration comes from spina (originally 20140718095419)
2
+ class AddPositionToSpinaPhotoCollectionsPhotos < ActiveRecord::Migration
3
+ def change
4
+ add_column :spina_photo_collections_photos, :position, :integer
5
+ end
6
+ end
@@ -0,0 +1,9 @@
1
+ # This migration comes from spina (originally 20150430085527)
2
+ class CreateSpinaColors < ActiveRecord::Migration
3
+ def change
4
+ create_table :spina_colors do |t|
5
+ t.text :content
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -11,7 +11,7 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 20150402144912) do
14
+ ActiveRecord::Schema.define(version: 20150430085616) do
15
15
 
16
16
  # These are extensions that must be enabled in order to support this database
17
17
  enable_extension "plpgsql"
@@ -48,6 +48,12 @@ ActiveRecord::Schema.define(version: 20150402144912) do
48
48
  t.datetime "updated_at", null: false
49
49
  end
50
50
 
51
+ create_table "spina_colors", force: :cascade do |t|
52
+ t.text "content"
53
+ t.datetime "created_at"
54
+ t.datetime "updated_at"
55
+ end
56
+
51
57
  create_table "spina_inquiries", force: :cascade do |t|
52
58
  t.string "name"
53
59
  t.string "email"
@@ -89245,3 +89245,381 @@ Processing by Spina::Admin::PagesController#edit as HTML
89245
89245
  Rendered /Users/bram/apps/spina/app/views/spina/admin/shared/_notifications.html.haml (0.2ms)
89246
89246
  Rendered layouts/spina/admin/application.html.haml (18.3ms)
89247
89247
  Completed 200 OK in 71ms (Views: 62.1ms | ActiveRecord: 1.9ms)
89248
+ ActiveRecord::SchemaMigration Load (30.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
89249
+ Migrating to AddRobotsAllowedToSpinaAccounts (20150430085614)
89250
+  (0.2ms) BEGIN
89251
+  (26.7ms) ALTER TABLE "spina_accounts" ADD "robots_allowed" boolean DEFAULT 'f'
89252
+ PG::DuplicateColumn: ERROR: column "robots_allowed" of relation "spina_accounts" already exists
89253
+ : ALTER TABLE "spina_accounts" ADD "robots_allowed" boolean DEFAULT 'f'
89254
+  (0.3ms) ROLLBACK
89255
+ SQL (13.1ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
89256
+  (18.8ms) DROP TABLE "spina_accounts" CASCADE
89257
+  (20.0ms) CREATE TABLE "spina_accounts" ("id" serial primary key, "name" character varying, "address" character varying, "postal_code" character varying, "city" character varying, "phone" character varying, "email" character varying, "preferences" text, "logo" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "kvk_identifier" character varying, "vat_identifier" character varying, "robots_allowed" boolean DEFAULT 'f') 
89258
+  (1.5ms) DROP TABLE "spina_attachment_collections" CASCADE
89259
+  (3.0ms) CREATE TABLE "spina_attachment_collections" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
89260
+  (1.9ms) DROP TABLE "spina_attachment_collections_attachments" CASCADE
89261
+  (2.2ms) CREATE TABLE "spina_attachment_collections_attachments" ("id" serial primary key, "attachment_collection_id" integer, "attachment_id" integer) 
89262
+  (1.8ms) DROP TABLE "spina_attachments" CASCADE
89263
+  (2.6ms) CREATE TABLE "spina_attachments" ("id" serial primary key, "file" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
89264
+  (2.7ms) DROP TABLE "spina_inquiries" CASCADE
89265
+  (3.0ms) CREATE TABLE "spina_inquiries" ("id" serial primary key, "name" character varying, "email" character varying, "phone" character varying, "message" text, "archived" boolean DEFAULT 'f', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "spam" boolean) 
89266
+  (2.0ms) DROP TABLE "spina_layout_parts" CASCADE
89267
+  (3.6ms) CREATE TABLE "spina_layout_parts" ("id" serial primary key, "title" character varying, "name" character varying, "layout_partable_id" integer, "layout_partable_type" character varying, "created_at" timestamp, "updated_at" timestamp, "account_id" integer) 
89268
+  (2.9ms) DROP TABLE "spina_lines" CASCADE
89269
+  (2.7ms) CREATE TABLE "spina_lines" ("id" serial primary key, "content" character varying, "created_at" timestamp, "updated_at" timestamp) 
89270
+  (2.2ms) DROP TABLE "spina_page_parts" CASCADE
89271
+  (3.0ms) CREATE TABLE "spina_page_parts" ("id" serial primary key, "title" character varying, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "page_id" integer, "page_partable_id" integer, "page_partable_type" character varying) 
89272
+  (2.5ms) DROP TABLE "spina_pages" CASCADE
89273
+  (3.9ms) CREATE TABLE "spina_pages" ("id" serial primary key, "title" character varying, "menu_title" character varying, "description" character varying, "show_in_menu" boolean DEFAULT 't', "slug" character varying, "deletable" boolean DEFAULT 't', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "name" character varying, "seo_title" character varying, "skip_to_first_child" boolean DEFAULT 'f', "view_template" character varying, "layout_template" character varying, "draft" boolean DEFAULT 'f', "link_url" character varying, "ancestry" character varying, "position" integer, "materialized_path" character varying, "active" boolean DEFAULT 't') 
89274
+  (1.5ms) DROP TABLE "spina_photo_collections" CASCADE
89275
+  (1.9ms) CREATE TABLE "spina_photo_collections" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
89276
+  (1.2ms) DROP TABLE "spina_photo_collections_photos" CASCADE
89277
+  (2.3ms) CREATE TABLE "spina_photo_collections_photos" ("id" serial primary key, "photo_collection_id" integer, "photo_id" integer, "position" integer) 
89278
+  (1.7ms) DROP TABLE "spina_photos" CASCADE
89279
+  (2.9ms) CREATE TABLE "spina_photos" ("id" serial primary key, "file" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
89280
+  (2.0ms) DROP TABLE "spina_structure_items" CASCADE
89281
+  (1.9ms) CREATE TABLE "spina_structure_items" ("id" serial primary key, "structure_id" integer, "position" integer, "created_at" timestamp, "updated_at" timestamp) 
89282
+  (1.1ms) CREATE INDEX "index_spina_structure_items_on_structure_id" ON "spina_structure_items" USING btree ("structure_id")
89283
+  (2.1ms) DROP TABLE "spina_structure_parts" CASCADE
89284
+  (2.8ms) CREATE TABLE "spina_structure_parts" ("id" serial primary key, "structure_item_id" integer, "structure_partable_id" integer, "structure_partable_type" character varying, "name" character varying, "title" character varying, "created_at" timestamp, "updated_at" timestamp)
89285
+  (1.1ms) CREATE INDEX "index_spina_structure_parts_on_structure_item_id" ON "spina_structure_parts" USING btree ("structure_item_id")
89286
+  (1.0ms) CREATE INDEX "index_spina_structure_parts_on_structure_partable_id" ON "spina_structure_parts" USING btree ("structure_partable_id")
89287
+  (2.4ms) DROP TABLE "spina_structures" CASCADE
89288
+  (2.2ms) CREATE TABLE "spina_structures" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp)
89289
+  (3.3ms) DROP TABLE "spina_texts" CASCADE
89290
+  (3.5ms) CREATE TABLE "spina_texts" ("id" serial primary key, "content" text, "created_at" timestamp, "updated_at" timestamp)
89291
+  (2.1ms) DROP TABLE "spina_users" CASCADE
89292
+  (3.4ms) CREATE TABLE "spina_users" ("id" serial primary key, "name" character varying, "email" character varying, "password_digest" character varying, "admin" boolean DEFAULT 'f', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "last_logged_in" timestamp)
89293
+  (0.3ms) SELECT version FROM "schema_migrations"
89294
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
89295
+ Migrating to AddRobotsAllowedToSpinaAccounts (20150430085614)
89296
+  (0.2ms) BEGIN
89297
+  (0.7ms) ALTER TABLE "spina_accounts" ADD "robots_allowed" boolean DEFAULT 'f'
89298
+ PG::DuplicateColumn: ERROR: column "robots_allowed" of relation "spina_accounts" already exists
89299
+ : ALTER TABLE "spina_accounts" ADD "robots_allowed" boolean DEFAULT 'f'
89300
+  (0.2ms) ROLLBACK
89301
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
89302
+  (2.3ms) DROP TABLE "spina_accounts" CASCADE
89303
+  (5.0ms) CREATE TABLE "spina_accounts" ("id" serial primary key, "name" character varying, "address" character varying, "postal_code" character varying, "city" character varying, "phone" character varying, "email" character varying, "preferences" text, "logo" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "kvk_identifier" character varying, "vat_identifier" character varying, "robots_allowed" boolean DEFAULT 'f') 
89304
+  (1.0ms) DROP TABLE "spina_attachment_collections" CASCADE
89305
+  (2.0ms) CREATE TABLE "spina_attachment_collections" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
89306
+  (0.9ms) DROP TABLE "spina_attachment_collections_attachments" CASCADE
89307
+  (2.1ms) CREATE TABLE "spina_attachment_collections_attachments" ("id" serial primary key, "attachment_collection_id" integer, "attachment_id" integer) 
89308
+  (1.0ms) DROP TABLE "spina_attachments" CASCADE
89309
+  (2.5ms) CREATE TABLE "spina_attachments" ("id" serial primary key, "file" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
89310
+  (1.4ms) DROP TABLE "spina_inquiries" CASCADE
89311
+  (3.1ms) CREATE TABLE "spina_inquiries" ("id" serial primary key, "name" character varying, "email" character varying, "phone" character varying, "message" text, "archived" boolean DEFAULT 'f', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "spam" boolean) 
89312
+  (1.2ms) DROP TABLE "spina_layout_parts" CASCADE
89313
+  (4.1ms) CREATE TABLE "spina_layout_parts" ("id" serial primary key, "title" character varying, "name" character varying, "layout_partable_id" integer, "layout_partable_type" character varying, "created_at" timestamp, "updated_at" timestamp, "account_id" integer) 
89314
+  (1.2ms) DROP TABLE "spina_lines" CASCADE
89315
+  (2.9ms) CREATE TABLE "spina_lines" ("id" serial primary key, "content" character varying, "created_at" timestamp, "updated_at" timestamp) 
89316
+  (1.0ms) DROP TABLE "spina_page_parts" CASCADE
89317
+  (2.8ms) CREATE TABLE "spina_page_parts" ("id" serial primary key, "title" character varying, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "page_id" integer, "page_partable_id" integer, "page_partable_type" character varying) 
89318
+  (1.4ms) DROP TABLE "spina_pages" CASCADE
89319
+  (3.8ms) CREATE TABLE "spina_pages" ("id" serial primary key, "title" character varying, "menu_title" character varying, "description" character varying, "show_in_menu" boolean DEFAULT 't', "slug" character varying, "deletable" boolean DEFAULT 't', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "name" character varying, "seo_title" character varying, "skip_to_first_child" boolean DEFAULT 'f', "view_template" character varying, "layout_template" character varying, "draft" boolean DEFAULT 'f', "link_url" character varying, "ancestry" character varying, "position" integer, "materialized_path" character varying, "active" boolean DEFAULT 't') 
89320
+  (1.0ms) DROP TABLE "spina_photo_collections" CASCADE
89321
+  (1.8ms) CREATE TABLE "spina_photo_collections" ("id" serial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
89322
+  (0.8ms) DROP TABLE "spina_photo_collections_photos" CASCADE
89323
+  (4.2ms) CREATE TABLE "spina_photo_collections_photos" ("id" serial primary key, "photo_collection_id" integer, "photo_id" integer, "position" integer) 
89324
+  (1.0ms) DROP TABLE "spina_photos" CASCADE
89325
+  (3.1ms) CREATE TABLE "spina_photos" ("id" serial primary key, "file" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
89326
+  (1.0ms) DROP TABLE "spina_structure_items" CASCADE
89327
+  (1.7ms) CREATE TABLE "spina_structure_items" ("id" serial primary key, "structure_id" integer, "position" integer, "created_at" timestamp, "updated_at" timestamp) 
89328
+  (1.2ms) CREATE INDEX "index_spina_structure_items_on_structure_id" ON "spina_structure_items" USING btree ("structure_id")
89329
+  (1.4ms) DROP TABLE "spina_structure_parts" CASCADE
89330
+  (2.8ms) CREATE TABLE "spina_structure_parts" ("id" serial primary key, "structure_item_id" integer, "structure_partable_id" integer, "structure_partable_type" character varying, "name" character varying, "title" character varying, "created_at" timestamp, "updated_at" timestamp)
89331
+  (1.1ms) CREATE INDEX "index_spina_structure_parts_on_structure_item_id" ON "spina_structure_parts" USING btree ("structure_item_id")
89332
+  (1.0ms) CREATE INDEX "index_spina_structure_parts_on_structure_partable_id" ON "spina_structure_parts" USING btree ("structure_partable_id")
89333
+  (0.9ms) DROP TABLE "spina_structures" CASCADE
89334
+  (1.9ms) CREATE TABLE "spina_structures" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp)
89335
+  (1.2ms) DROP TABLE "spina_texts" CASCADE
89336
+  (2.7ms) CREATE TABLE "spina_texts" ("id" serial primary key, "content" text, "created_at" timestamp, "updated_at" timestamp)
89337
+  (1.0ms) DROP TABLE "spina_users" CASCADE
89338
+  (3.5ms) CREATE TABLE "spina_users" ("id" serial primary key, "name" character varying, "email" character varying, "password_digest" character varying, "admin" boolean DEFAULT 'f', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "last_logged_in" timestamp)
89339
+  (0.3ms) SELECT version FROM "schema_migrations"
89340
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
89341
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
89342
+ Migrating to AddRobotsAllowedToSpinaAccounts (20150430085614)
89343
+  (0.1ms) BEGIN
89344
+  (0.8ms) ALTER TABLE "spina_accounts" ADD "robots_allowed" boolean DEFAULT 'f'
89345
+ PG::DuplicateColumn: ERROR: column "robots_allowed" of relation "spina_accounts" already exists
89346
+ : ALTER TABLE "spina_accounts" ADD "robots_allowed" boolean DEFAULT 'f'
89347
+  (0.2ms) ROLLBACK
89348
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
89349
+ Migrating to AddPositionToSpinaPhotoCollectionsPhotos (20150430085615)
89350
+  (0.3ms) BEGIN
89351
+  (0.7ms) ALTER TABLE "spina_photo_collections_photos" ADD "position" integer
89352
+ PG::DuplicateColumn: ERROR: column "position" of relation "spina_photo_collections_photos" already exists
89353
+ : ALTER TABLE "spina_photo_collections_photos" ADD "position" integer
89354
+  (0.2ms) ROLLBACK
89355
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
89356
+ Migrating to CreateSpinaColors (20150430085616)
89357
+  (0.2ms) BEGIN
89358
+ DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/bram/apps/spina/test/dummy/db/migrate/20150430085616_create_spina_colors.spina.rb:6)
89359
+  (4.3ms) CREATE TABLE "spina_colors" ("id" serial primary key, "content" text, "created_at" timestamp, "updated_at" timestamp) 
89360
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150430085616"]]
89361
+  (6.7ms) COMMIT
89362
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
89363
+  (1.9ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
89364
+ FROM pg_constraint c
89365
+ JOIN pg_class t1 ON c.conrelid = t1.oid
89366
+ JOIN pg_class t2 ON c.confrelid = t2.oid
89367
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
89368
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
89369
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
89370
+ WHERE c.contype = 'f'
89371
+ AND t1.relname = 'spina_accounts'
89372
+ AND t3.nspname = ANY (current_schemas(false))
89373
+ ORDER BY c.conname
89374
+ 
89375
+  (2.0ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
89376
+ FROM pg_constraint c
89377
+ JOIN pg_class t1 ON c.conrelid = t1.oid
89378
+ JOIN pg_class t2 ON c.confrelid = t2.oid
89379
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
89380
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
89381
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
89382
+ WHERE c.contype = 'f'
89383
+ AND t1.relname = 'spina_attachment_collections'
89384
+ AND t3.nspname = ANY (current_schemas(false))
89385
+ ORDER BY c.conname
89386
+
89387
+  (1.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
89388
+ FROM pg_constraint c
89389
+ JOIN pg_class t1 ON c.conrelid = t1.oid
89390
+ JOIN pg_class t2 ON c.confrelid = t2.oid
89391
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
89392
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
89393
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
89394
+ WHERE c.contype = 'f'
89395
+ AND t1.relname = 'spina_attachment_collections_attachments'
89396
+ AND t3.nspname = ANY (current_schemas(false))
89397
+ ORDER BY c.conname
89398
+ 
89399
+  (2.2ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
89400
+ FROM pg_constraint c
89401
+ JOIN pg_class t1 ON c.conrelid = t1.oid
89402
+ JOIN pg_class t2 ON c.confrelid = t2.oid
89403
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
89404
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
89405
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
89406
+ WHERE c.contype = 'f'
89407
+ AND t1.relname = 'spina_attachments'
89408
+ AND t3.nspname = ANY (current_schemas(false))
89409
+ ORDER BY c.conname
89410
+
89411
+  (1.9ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
89412
+ FROM pg_constraint c
89413
+ JOIN pg_class t1 ON c.conrelid = t1.oid
89414
+ JOIN pg_class t2 ON c.confrelid = t2.oid
89415
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
89416
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
89417
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
89418
+ WHERE c.contype = 'f'
89419
+ AND t1.relname = 'spina_colors'
89420
+ AND t3.nspname = ANY (current_schemas(false))
89421
+ ORDER BY c.conname
89422
+ 
89423
+  (1.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
89424
+ FROM pg_constraint c
89425
+ JOIN pg_class t1 ON c.conrelid = t1.oid
89426
+ JOIN pg_class t2 ON c.confrelid = t2.oid
89427
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
89428
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
89429
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
89430
+ WHERE c.contype = 'f'
89431
+ AND t1.relname = 'spina_inquiries'
89432
+ AND t3.nspname = ANY (current_schemas(false))
89433
+ ORDER BY c.conname
89434
+
89435
+  (1.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
89436
+ FROM pg_constraint c
89437
+ JOIN pg_class t1 ON c.conrelid = t1.oid
89438
+ JOIN pg_class t2 ON c.confrelid = t2.oid
89439
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
89440
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
89441
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
89442
+ WHERE c.contype = 'f'
89443
+ AND t1.relname = 'spina_layout_parts'
89444
+ AND t3.nspname = ANY (current_schemas(false))
89445
+ ORDER BY c.conname
89446
+ 
89447
+  (1.5ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
89448
+ FROM pg_constraint c
89449
+ JOIN pg_class t1 ON c.conrelid = t1.oid
89450
+ JOIN pg_class t2 ON c.confrelid = t2.oid
89451
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
89452
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
89453
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
89454
+ WHERE c.contype = 'f'
89455
+ AND t1.relname = 'spina_lines'
89456
+ AND t3.nspname = ANY (current_schemas(false))
89457
+ ORDER BY c.conname
89458
+
89459
+  (1.5ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
89460
+ FROM pg_constraint c
89461
+ JOIN pg_class t1 ON c.conrelid = t1.oid
89462
+ JOIN pg_class t2 ON c.confrelid = t2.oid
89463
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
89464
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
89465
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
89466
+ WHERE c.contype = 'f'
89467
+ AND t1.relname = 'spina_page_parts'
89468
+ AND t3.nspname = ANY (current_schemas(false))
89469
+ ORDER BY c.conname
89470
+ 
89471
+  (1.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
89472
+ FROM pg_constraint c
89473
+ JOIN pg_class t1 ON c.conrelid = t1.oid
89474
+ JOIN pg_class t2 ON c.confrelid = t2.oid
89475
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
89476
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
89477
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
89478
+ WHERE c.contype = 'f'
89479
+ AND t1.relname = 'spina_pages'
89480
+ AND t3.nspname = ANY (current_schemas(false))
89481
+ ORDER BY c.conname
89482
+
89483
+  (1.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
89484
+ FROM pg_constraint c
89485
+ JOIN pg_class t1 ON c.conrelid = t1.oid
89486
+ JOIN pg_class t2 ON c.confrelid = t2.oid
89487
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
89488
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
89489
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
89490
+ WHERE c.contype = 'f'
89491
+ AND t1.relname = 'spina_photo_collections'
89492
+ AND t3.nspname = ANY (current_schemas(false))
89493
+ ORDER BY c.conname
89494
+ 
89495
+  (1.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
89496
+ FROM pg_constraint c
89497
+ JOIN pg_class t1 ON c.conrelid = t1.oid
89498
+ JOIN pg_class t2 ON c.confrelid = t2.oid
89499
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
89500
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
89501
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
89502
+ WHERE c.contype = 'f'
89503
+ AND t1.relname = 'spina_photo_collections_photos'
89504
+ AND t3.nspname = ANY (current_schemas(false))
89505
+ ORDER BY c.conname
89506
+
89507
+  (1.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
89508
+ FROM pg_constraint c
89509
+ JOIN pg_class t1 ON c.conrelid = t1.oid
89510
+ JOIN pg_class t2 ON c.confrelid = t2.oid
89511
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
89512
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
89513
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
89514
+ WHERE c.contype = 'f'
89515
+ AND t1.relname = 'spina_photos'
89516
+ AND t3.nspname = ANY (current_schemas(false))
89517
+ ORDER BY c.conname
89518
+ 
89519
+  (1.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
89520
+ FROM pg_constraint c
89521
+ JOIN pg_class t1 ON c.conrelid = t1.oid
89522
+ JOIN pg_class t2 ON c.confrelid = t2.oid
89523
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
89524
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
89525
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
89526
+ WHERE c.contype = 'f'
89527
+ AND t1.relname = 'spina_structure_items'
89528
+ AND t3.nspname = ANY (current_schemas(false))
89529
+ ORDER BY c.conname
89530
+
89531
+  (1.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
89532
+ FROM pg_constraint c
89533
+ JOIN pg_class t1 ON c.conrelid = t1.oid
89534
+ JOIN pg_class t2 ON c.confrelid = t2.oid
89535
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
89536
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
89537
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
89538
+ WHERE c.contype = 'f'
89539
+ AND t1.relname = 'spina_structure_parts'
89540
+ AND t3.nspname = ANY (current_schemas(false))
89541
+ ORDER BY c.conname
89542
+ 
89543
+  (1.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
89544
+ FROM pg_constraint c
89545
+ JOIN pg_class t1 ON c.conrelid = t1.oid
89546
+ JOIN pg_class t2 ON c.confrelid = t2.oid
89547
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
89548
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
89549
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
89550
+ WHERE c.contype = 'f'
89551
+ AND t1.relname = 'spina_structures'
89552
+ AND t3.nspname = ANY (current_schemas(false))
89553
+ ORDER BY c.conname
89554
+
89555
+  (1.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
89556
+ FROM pg_constraint c
89557
+ JOIN pg_class t1 ON c.conrelid = t1.oid
89558
+ JOIN pg_class t2 ON c.confrelid = t2.oid
89559
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
89560
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
89561
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
89562
+ WHERE c.contype = 'f'
89563
+ AND t1.relname = 'spina_texts'
89564
+ AND t3.nspname = ANY (current_schemas(false))
89565
+ ORDER BY c.conname
89566
+ 
89567
+  (1.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
89568
+ FROM pg_constraint c
89569
+ JOIN pg_class t1 ON c.conrelid = t1.oid
89570
+ JOIN pg_class t2 ON c.confrelid = t2.oid
89571
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
89572
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
89573
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
89574
+ WHERE c.contype = 'f'
89575
+ AND t1.relname = 'spina_users'
89576
+ AND t3.nspname = ANY (current_schemas(false))
89577
+ ORDER BY c.conname
89578
+
89579
+ DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from handle at /Users/bram/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155)
89580
+
89581
+
89582
+ Started GET "/admin" for 127.0.0.1 at 2015-04-30 12:52:12 +0200
89583
+ Processing by Spina::Admin::PagesController#index as HTML
89584
+ Redirected to http://dummy.dev/admin/login
89585
+ Filter chain halted as :authorize_user rendered or redirected
89586
+ Completed 302 Found in 13ms (ActiveRecord: 0.0ms)
89587
+
89588
+
89589
+ Started GET "/admin/login" for 127.0.0.1 at 2015-04-30 12:52:13 +0200
89590
+ Processing by Spina::Admin::SessionsController#new as HTML
89591
+ Rendered /Users/bram/apps/spina/app/views/spina/admin/sessions/new.html.haml within layouts/spina/login (11.1ms)
89592
+ Completed 200 OK in 268ms (Views: 258.9ms | ActiveRecord: 0.0ms)
89593
+ DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from handle at /Users/bram/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155)
89594
+
89595
+
89596
+ Started POST "/admin/sessions" for 127.0.0.1 at 2015-04-30 12:52:19 +0200
89597
+ Processing by Spina::Admin::SessionsController#create as HTML
89598
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"iBQ8p4Z2omQk0n98Gm6wmiPshYde+c1aeIJDWsHr15NAVSOTADfKSE0XWDsN6b7fHUNMO/pcinx0IH4esL8/tg==", "email"=>"mail@bramjetten.nl", "password"=>"[FILTERED]", "button"=>""}
89599
+ Spina::User Load (1.1ms) SELECT "spina_users".* FROM "spina_users" WHERE "spina_users"."email" = $1 ORDER BY "spina_users"."id" ASC LIMIT 1 [["email", "mail@bramjetten.nl"]]
89600
+ Rendered /Users/bram/apps/spina/app/views/spina/admin/sessions/new.html.haml within layouts/spina/login (1.0ms)
89601
+ Completed 200 OK in 33ms (Views: 15.3ms | ActiveRecord: 5.5ms)
89602
+
89603
+
89604
+ Started POST "/admin/sessions" for 127.0.0.1 at 2015-04-30 12:52:22 +0200
89605
+ Processing by Spina::Admin::SessionsController#create as HTML
89606
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"e/VkGDhnEvtyg0RPmOAnSXx8MNb3MO5mNkerf4lT4FKztHssviZ61xtGYwiPZykMQtP5alOVqUA65ZY7+AcIdw==", "email"=>"mail@bramjetten.nl", "password"=>"[FILTERED]", "button"=>""}
89607
+ Spina::User Load (0.3ms) SELECT "spina_users".* FROM "spina_users" WHERE "spina_users"."email" = $1 ORDER BY "spina_users"."id" ASC LIMIT 1 [["email", "mail@bramjetten.nl"]]
89608
+ Rendered /Users/bram/apps/spina/app/views/spina/admin/sessions/new.html.haml within layouts/spina/login (1.1ms)
89609
+ Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.3ms)
89610
+
89611
+
89612
+ Started POST "/admin/sessions" for 127.0.0.1 at 2015-04-30 12:52:25 +0200
89613
+ Processing by Spina::Admin::SessionsController#create as HTML
89614
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"qj0BP/q8m0YCxQhgUU08QjVzvp3+SzPZ2MCjeE8aBnlifB4LfP3zamsALydGyjIHC9x3IVrudP/UYp48Pk7uXA==", "email"=>"bram@denkgroot.com", "password"=>"[FILTERED]", "button"=>""}
89615
+ Spina::User Load (0.3ms) SELECT "spina_users".* FROM "spina_users" WHERE "spina_users"."email" = $1 ORDER BY "spina_users"."id" ASC LIMIT 1 [["email", "bram@denkgroot.com"]]
89616
+ Rendered /Users/bram/apps/spina/app/views/spina/admin/sessions/new.html.haml within layouts/spina/login (1.2ms)
89617
+ Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.3ms)
89618
+
89619
+
89620
+ Started POST "/admin/sessions" for 127.0.0.1 at 2015-04-30 12:52:30 +0200
89621
+ Processing by Spina::Admin::SessionsController#create as HTML
89622
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"LQSYZ42xX86ZEmDSLZSqYCsTGKKN7chyofoJNoKAESnlRYdTC/A34vDXR5U6E6QlFbzRHilIj1StWDRy89T5DA==", "email"=>"bram@denkgroot.com", "password"=>"[FILTERED]", "button"=>""}
89623
+ Spina::User Load (0.4ms) SELECT "spina_users".* FROM "spina_users" WHERE "spina_users"."email" = $1 ORDER BY "spina_users"."id" ASC LIMIT 1 [["email", "bram@denkgroot.com"]]
89624
+ Rendered /Users/bram/apps/spina/app/views/spina/admin/sessions/new.html.haml within layouts/spina/login (2.2ms)
89625
+ Completed 200 OK in 32ms (Views: 20.1ms | ActiveRecord: 0.4ms)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spina
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.20
4
+ version: 0.6.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bram Jetten
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-04-29 00:00:00.000000000 Z
12
+ date: 2015-04-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -372,6 +372,7 @@ files:
372
372
  - app/models/spina/account.rb
373
373
  - app/models/spina/attachment.rb
374
374
  - app/models/spina/attachment_collection.rb
375
+ - app/models/spina/color.rb
375
376
  - app/models/spina/inquiry.rb
376
377
  - app/models/spina/layout_part.rb
377
378
  - app/models/spina/line.rb
@@ -416,6 +417,7 @@ files:
416
417
  - app/views/spina/admin/inquiries/index.html.haml
417
418
  - app/views/spina/admin/inquiries/show.html.haml
418
419
  - app/views/spina/admin/inquiries/spam.html.haml
420
+ - app/views/spina/admin/layout_partables/_color_form.html.haml
419
421
  - app/views/spina/admin/layout_partables/_line_form.html.haml
420
422
  - app/views/spina/admin/page_partables/_attachment_collection_form.html.haml
421
423
  - app/views/spina/admin/page_partables/_attachment_form.html.haml
@@ -525,9 +527,9 @@ files:
525
527
  - db/migrate/20140711154425_add_robots_allowed_to_spina_accounts.rb
526
528
  - db/migrate/20140718095419_add_position_to_spina_photo_collections_photos.rb
527
529
  - db/migrate/20150402144347_create_structures.rb
530
+ - db/migrate/20150430085527_create_spina_colors.rb
528
531
  - db/seeds.rb
529
532
  - lib/spina.rb
530
- - lib/spina/configurable.rb
531
533
  - lib/spina/engine.rb
532
534
  - lib/spina/plugin.rb
533
535
  - lib/spina/theme.rb
@@ -606,6 +608,9 @@ files:
606
608
  - test/dummy/db/migrate/20140225151146_add_account_id_to_spina_layout_parts.rb
607
609
  - test/dummy/db/migrate/20140407095608_add_active_to_spina_pages.rb
608
610
  - test/dummy/db/migrate/20150402144912_create_structures.spina.rb
611
+ - test/dummy/db/migrate/20150430085614_add_robots_allowed_to_spina_accounts.spina.rb
612
+ - test/dummy/db/migrate/20150430085615_add_position_to_spina_photo_collections_photos.spina.rb
613
+ - test/dummy/db/migrate/20150430085616_create_spina_colors.spina.rb
609
614
  - test/dummy/db/schema.rb
610
615
  - test/dummy/db/seeds.rb
611
616
  - test/dummy/log/development.log
@@ -1,7 +0,0 @@
1
- module Spina
2
- module Configurable
3
- include ::ActiveSupport::Configurable
4
-
5
- config_accessor :title, :page_parts, :view_templates, :layout_parts, :custom_pages, :plugins, :structures
6
- end
7
- end