Leonel Galán
Leonel Galán
https://github.com/binarylogic/settingslogic/blob/c510affe2e7ab96289525b95f50a5dd528854807/lib/settingslogic.rb#L113 ``` ruby # Called for dynamically-defined keys, and also the first key deferenced at the top-level, if load! is not used. # Otherwise, create_accessors! (called by new) will have...
Currently it is possible to customize the translation to be used based on the action. This is [done](https://github.com/plataformatec/simple_form/blob/v3.4.0/lib/simple_form/inputs/base.rb#L173), by asking the builder for its [`lookup_action`](https://github.com/plataformatec/simple_form/blob/v3.4.0/lib/simple_form/form_builder.rb#L448), which get's the controller action's...
After following both the [Continuous Deployment (CD)](https://aws.github.io/chalice/topics/cd.html) and [Custom Domain Names](https://aws.github.io/chalice/topics/domainname.html) guides in the documentations. I'm not able to deploy by pushing to Github. The Beta stage is created but...
I'm getting an item from a DynamoDB Table that has a set attribute. Simply returning the item at the end of the request through Chalice raises this error. ## Chalice...
I'm getting an item from a DynamoDB Table that has a set attribute. Simply returning the item at the end of the request through Chalice raises this error: > TypeError:...
## Setup Rails app, where helpers smell of _UtilityFunction_ ### _.reek.yml_ ```yml directories: "app/helpers": UtilityFunction: enabled: false ``` ### _app/helpers/foo_helper.rb_ ```ruby module FooHelper def smelly_method(bar) bar.presence end end ``` ##...
What's the purpose of `rehash rbenv`? Rehash is called manually from [tasks/main.yml:151](https://github.com/zzet/ansible-rbenv-role/blob/e10d6f8ec5177c1800b9e6753458a667bf222916/tasks/main.yml#L151) or [tasks/main.yml:182](https://github.com/zzet/ansible-rbenv-role/blob/e10d6f8ec5177c1800b9e6753458a667bf222916/tasks/main.yml#L182) It it notifies the handler instead, we could install gems (`env: system` so now default gems...
Current Options: * I could select all the file and hit "Run selection/line" but this way I don't have the output of each cell, instead I only get the output...
This are currently defined as ``` ruby # Signed MEDIUMINT in MySQL # MAX_RANK_VALUE = 8388607 MIN_RANK_VALUE = -8388607 ``` in https://github.com/mixonic/ranked-model/blob/master/lib/ranked-model.rb#L8 But it will be nice if we could...
I've seen the `SSL: false,` in the code, but didn't know if this was there for a reason. Popular services like Heroku Postgres, will only allow to connect through SSL....