destroy

package
v0.11.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 2, 2018 License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ActionCmd = &cobra.Command{
	Use: "action [name]",

	Aliases: []string{"a"},
	Short:   "Destroys action files.",
	RunE: func(cmd *cobra.Command, args []string) error {
		if len(args) == 0 {
			return errors.New("you need to provide a valid action file name in order to destroy it")
		}

		name := args[0]

		fileName := inflect.Underscore(name)

		removeActions(fileName)
		return nil
	},
}

ActionCmd destroys passed action file

View Source
var ModelCmd = &cobra.Command{
	Use: "model [name]",

	Aliases: []string{"m"},
	Short:   "Destroys model files.",
	RunE: func(cmd *cobra.Command, args []string) error {
		if len(args) == 0 {
			return errors.New("you need to provide a valid model name in order to destroy it")
		}

		name := args[0]
		fileName := inflect.Pluralize(inflect.Underscore(name))

		removeModel(name)
		removeMigrations(fileName)

		return nil
	},
}

ModelCmd destroys a passed model

View Source
var ResourceCmd = &cobra.Command{
	Use: "resource [name]",

	Aliases: []string{"r"},
	Short:   "Destroys resource files.",
	RunE: func(cmd *cobra.Command, args []string) error {
		if len(args) == 0 {
			return errors.New("you need to provide a valid resource name in order to destroy it")
		}

		name := args[0]
		fileName := inflect.Pluralize(inflect.Underscore(name))

		removeTemplates(fileName)
		err := removeActions(fileName)
		if err != nil {
			return err
		}

		removeLocales(fileName)
		removeModel(name)
		removeMigrations(fileName)

		return nil
	},
}

ResourceCmd destroys a passed resource

View Source
var YesToAll = false

YesToAll means not to ask when destroying but simply confirm all beforehand.

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL