Timo Schilling
Timo Schilling
@javierjulio looks like you make a great job! But your PR is with ~90 commits and if I take a look on your todo list I think you hit the...
> Since I'm doing the CSS overhaul I'd like to modify the ActiveAdmin pagination setup or would we prefer to just keep the default? (from https://github.com/activeadmin/activeadmin/pull/3840#issuecomment-89396898) What do you want...
> I can’t just break them apart into separate PR’s because several of the changes have side effects (for example, switching to normalize.css is a good one) that I handle...
have you tried this? ``` ruby module ApplicationHelper def arbre(&block) text_node Arbre::Context.new({}, self, &block).to_s end def static_pie_chart(data) arbre do div class: 'd3-pie-chart', 'data-series': data end end end # or module...
I think this is a sam-cli issue.
@blmayer can you post your `template.yaml` please
I think it's possible by using the assume role API. SAM could use the existing credentials (`AWS_PROFILE`, `--profile`, `AWS_ACCESS_KEY_ID`) to call the sts assume-role API with the configured `Policies` as...
@wafcio I know how `includes` works. The question is, should `orm_adapter` support `includes`? And have methods like `includes?` or `support_includes?`, to let the developer check that `includes` are supported. The...
I think includes are not limited to SQL, NoSQL can have includes too, see `mongoid`. I think the question is, should `orm_adapter` only have api for methods that every orm...