Sha256: 8f072431a7126ec5048a97ace5730df8afd8e66cc096abff33ba4568c8c24277

Contents?: true

Size: 1.06 KB

Versions: 11

Compression:

Stored size: 1.06 KB

Contents

module ComfortableMexicanSofa::Fixture::Category
  class Importer < ComfortableMexicanSofa::Fixture::Importer
    def import!
      {
        'files'     => 'Cms::File',
        'pages'     => 'Cms::Page',
        'snippets'  => 'Cms::Snippet'
      }.each do |file, type|
        if File.exists?(attrs_path = File.join(path, "#{file}.yml"))
          categories = get_attributes(attrs_path)
          [categories].flatten.each do |label|
            self.site.categories.find_or_create_by(:label => label, :categorized_type => type)
          end
        end
      end
    end
  end
  
  class Exporter < ComfortableMexicanSofa::Fixture::Exporter
    def export!
      prepare_folder!(self.path)
      {
        'files'     => 'Cms::File',
        'pages'     => 'Cms::Page',
        'snippets'  => 'Cms::Snippet'
      }.each do |file, type|
        if (categories = self.site.categories.of_type(type)).present?
          open(File.join(self.path, "#{file}.yml"), 'w') do |f|
            f.write(categories.map{|c| c.label}.to_yaml)
          end
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-1.11.2 lib/comfortable_mexican_sofa/fixture/category.rb
comfortable_mexican_sofa-1.11.1 lib/comfortable_mexican_sofa/fixture/category.rb
comfortable_mexican_sofa-1.11.0 lib/comfortable_mexican_sofa/fixture/category.rb
comfortable_mexican_sofa-1.10.3 lib/comfortable_mexican_sofa/fixture/category.rb
comfortable_mexican_sofa-1.10.2 lib/comfortable_mexican_sofa/fixture/category.rb
comfortable_mexican_sofa-1.10.1 lib/comfortable_mexican_sofa/fixture/category.rb
comfortable_mexican_sofa-1.10.0 lib/comfortable_mexican_sofa/fixture/category.rb
comfortable_mexican_sofa-1.9.3 lib/comfortable_mexican_sofa/fixture/category.rb
comfortable_mexican_sofa-1.9.2 lib/comfortable_mexican_sofa/fixture/category.rb
comfortable_mexican_sofa-1.9.1 lib/comfortable_mexican_sofa/fixture/category.rb
comfortable_mexican_sofa-1.9.0 lib/comfortable_mexican_sofa/fixture/category.rb