Sha256: 73222587ff6040b7129bc2c540ed8e1d357d338720d856a7a56068b3b7485d1d
Contents?: true
Size: 1.49 KB
Versions: 6
Compression:
Stored size: 1.49 KB
Contents
# -*- encoding : utf-8 -*- class BootstrapThemes < Card::Migration::Core def up Card.create! name: "themeless bootstrap skin", type_code: :skin, content: "[[style: bootstrap]]\n[[style: jquery-ui-smoothness]]\n[[style: cards]]\n[[style: right sidebar]]\n[[style: bootstrap cards]]" %w(cerulean cosmo cyborg darkly flatly journal lumen paper readable sandstone simplex slate spacelab superhero united yeti).each do |theme| Card.create! name: "theme: #{theme}", type_code: :css, codename: "theme_#{theme}" Card.create! name: "#{theme} skin", type_code: :skin, codename: "#{theme}_skin", content: "[[themeless bootstrap skin]]\n[[theme: #{theme}]]" end if credit_card = Card["*credit"] credit_card.codename = :credit credit_card.save! end style_right = Card[:style].fetch :right, new: {} style_right_options = style_right.fetch :options, new: {} style_right_options.content = %({"type":"Skin","sort":"name"}) style_right_options.save! style_right_input = style_right.fetch :input, new: {} style_right_input.content = "radio" style_right_input.save! style_right_option_label = style_right.fetch :options_label, new: {} style_right_option_label.content = "Image" style_right_option_label.save! import_json "skin_images.json" if sidebar_card = Card["*sidebar"] new_content = sidebar_card.db_content.gsub(/(\*(logo|credit))\|content/, '\1|content_panel') sidebar_card.update! content: new_content end end end
Version data entries
6 entries across 6 versions & 1 rubygems