Open
Conversation
To enable ActiveDecorator in Sinatra, register it like:
require "active_decorator/sinatra"
register ActiveDecorator::Sinatra
Then ActiveDecorator::Sinatra reads `ROOT/decorators/*_decorator.rb`,
and decorates instance variables in `scope` and local variables passed
via `render` method with them.
The `ROOT/decorators` directory is used by default. If you want to use
another directory, you can set it as `:decorators` like:
require "active_decorator/sinatra"
set :decorators, "/path/to/your/decorators"
register ActiveDecorator::Sinatra
ActiveDecorator::Sinatra doesn't decorate following instance variables
by default:
@default_layout @env @params @preferred_extension
@request @response @template_cache
These are declared in an array named as
`ActiveDecorator::Sinatra::DEFAULT_PROTECTED_INSTANCE_VARIABLES`. If you
want to protect other instance variables, you can declare them as
`:protected_instance_variables` like:
require "active_decorator/sinatra"
set :protected_instance_variables, %w[@foo @bar]
register ActiveDecorator::Sinatra
Note that these `set` statements must be placed before the `register`
statement.
It runs with the fllowing command: `BUNDLER_GEMFILE=gemfiles/Gemfile-sinatra bundle exec rake spec:sinatra` Sinatra doesn't support implicit object rendering (like `render @author`), so features about this won't tested in the partial spec. This switching is made with `rails?` method decrared in spec_helper.rb.
activesupport gem isn't installed with Sinatra by default.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
To enable ActiveDecorator in Sinatra, register it like:
Then ActiveDecorator::Sinatra reads
ROOT/decorators/*_decorator.rb,and decorates instance variables in
scopeand local variables passedvia
rendermethod with them.The
ROOT/decoratorsdirectory is used by default. If you want to useanother directory, you can set it as
:decoratorslike:ActiveDecorator::Sinatra doesn't decorate following instance variables
by default:
These are declared in an array named as
ActiveDecorator::Sinatra::DEFAULT_PROTECTED_INSTANCE_VARIABLES. If youwant to protect other instance variables, you can declare them as
:protected_instance_variableslike:Note that these
setstatements must be placed before theregisterstatement.
Specs for Sinatra run with the fllowing command:
Sinatra doesn't support implicit object rendering (like
render @author),so features about this won't tested in the partial spec. This switching
is made with
rails?method decrared in spec_helper.rb.