Skip to content

freego/spree_scaffold

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code
This branch is 32 commits ahead of sebastyuiop:master.

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
bin
 
 
lib
 
 
 
 
 
 
 
 
 
 
 
 

SpreeScaffold

An advanced admin scaffold generator for Spree.

Creates a ready to use CRUD interface for your models inside Spree admin. Attachments, sorting and translations are supported.

Installation

Add this line to your application's Gemfile:

group :development do
  gem 'spree_scaffold', github: 'freego/spree_scaffold', branch: 'X-X-stable'
end

And then execute:

$ bundle

Usage

Generate a scaffold for the new Brand model:

$ rails generate spree_scaffold:scaffold Brand name:string description:text position:integer ... [--i18n name description]

And adjust the glyphicons icon name on the app/overrides/spree/admin/add_spree_... file.

It's better if the first attribute is the "main" text one (name, title etc.)

Some more magic:

  • The admin index list will be sortable with drag&drop if you create a position:integer field
  • paperclip image and file attachments are supported: e.g. picture:image attachment:file
  • Will use friendly_id for slugs if a slug:string field is present

Example output:

create  app/models/spree/brand.rb
create  app/controllers/spree/admin/brands_controller.rb
create  app/views/spree/admin/brands/index.html.erb
create  app/views/spree/admin/brands/new.html.erb
create  app/views/spree/admin/brands/edit.html.erb
create  app/views/spree/admin/brands/_form.html.erb
create  db/migrate/20140412175904_create_spree_brands.rb
create  config/locales/en_brands.yml
create  config/locales/it_brands.yml
create  app/overrides/spree/admin/add_spree_brands_to_admin_menu.rb
append  config/routes.rb

Then run the migration:

$ rake db:migrate

To rollback:

$ rake db:rollback
$ rails destroy spree_scaffold:scaffold Brand name:string description:text position:integer ...

Copyright (c) 2015 sebastyuiop, alepore, released under the New BSD License

About

Admin scaffold generator for Spree

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 68.2%
  • HTML 31.8%