Module: Brief::DSL
Instance Method Summary collapse
-
#action(identifier, _options = {}, &block) ⇒ Object
defines a method on the model instance named after the identifier and then creates a CLI command matching that, so for example:.
-
#command(name, options = {}, &block) ⇒ Object
Register a new command for this briefcase.
- #config(options = {}, &block) ⇒ Object
-
#define(*args, &block) ⇒ Object
defines a new model class.
-
#extend(*args, &block) ⇒ Object
Extends an existing class.
-
#view(name, &block) ⇒ Object
Define a view of the briefcase.
Instance Method Details
#action(identifier, _options = {}, &block) ⇒ Object
defines a method on the model instance named after the identifier and then creates a CLI command matching that, so for example:
given a model called ‘Post’ and an action named ‘publish’ the brief CLI executable will respond to:
brief publish posts PATH_GLOB
this will find all of the Post models from the documents matching PATH_GLOB and call the publish method on them
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
# File 'lib/brief/dsl.rb', line 80 def action(identifier, = {}, &block) Object.class.class_eval do command "#{identifier}" do |c| c.syntax = "brief #{identifier}" c.description = "run the #{identifier} command" c.action do |args, opts| briefcase = Brief.case path_args = args.select { |arg| arg.is_a?(String) && arg.match(/\.md$/) } path_args.select! do |arg| path = briefcase.repository.root.join(arg) path.exist? end path_args.map! { |p| briefcase.repository.root.join(p) } models = path_args.map { |path| Brief::Document.new(path) }.map(&:to_model) block.call(Brief.case, models, opts) end end rescue nil end end |
#command(name, options = {}, &block) ⇒ Object
Register a new command for this briefcase.
Pass the name of the command, options, and a block.
The block will get called with the briefcase, and any arguments
currently doesn’t accept any options
23 24 25 26 27 28 |
# File 'lib/brief/dsl.rb', line 23 def command(name, ={}, &block) Brief.commands[name.to_sym] = { options: , handler: block } end |
#config(options = {}, &block) ⇒ Object
5 6 7 |
# File 'lib/brief/dsl.rb', line 5 def config( = {}, &block) Brief::Configuration.instance.instance_eval(&block) if block_given? end |
#define(*args, &block) ⇒ Object
defines a new model class
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/brief/dsl.rb', line 49 def define(*args, &block) = args.dup. name = args.first type_alias = .fetch(:type_alias) { name.downcase.parameterize.gsub(/-/, '_') } namespace = Brief.configuration.model_namespace || Brief::Model klass = namespace.const_get(type_alias.camelize) rescue nil klass = namespace.const_set(type_alias.camelize, Class.new).tap do |k| k.send(:include, Brief::Model) k.definition ||= Brief::Model::Definition.new(args.first, args.) k.name ||= name k.type_alias ||= type_alias Brief::Model.classes << k end if klass.nil? klass.definition.instance_eval(&block) if block_given? klass.definition.validate! end |
#extend(*args, &block) ⇒ Object
Extends an existing class
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/brief/dsl.rb', line 31 def extend(*args, &block) = args.dup. name = args.first type_alias = .fetch(:type_alias) { name.downcase.parameterize.gsub(/-/, '_') } namespace = Brief.configuration.model_namespace || Brief::Model klass = namespace.const_get(type_alias.camelize) rescue nil if !klass return define(*args, &block) end klass.definition.instance_eval(&block) if block_given? klass.definition.validate! end |