To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorPackage behaviors
In order to avoid repetitive package setup
As a developer
I want to define behaviors and mix them into packages
- Scenarios
-
- Defining a behavior and using it in multiple packages
-
- Given
-
the file "input/foo.js" contains
/* comment */
- And
-
the file ".assets.rb" contains
input 'input' output 'output' behavior :bar do modify do |content, basename| [content.reverse, basename] end end package :baz do behave :bar assets 'foo.js' end
- And
- the app is loaded in a production environment
- And
- the app has been processed
- Then
-
the file "output/foo.js" should contain
/* tnemmoc */
Last published over 3 years ago by joecorcoran.