Serguei Cambour

Results 25 issues of Serguei Cambour

I can't figure out why my Figaro keys are not recognized in a Sinatra app: ``` #main.rb require 'sinatra' require 'sinatra/reloader' if development? require 'figaro' get '/:logger' do logger =...

I used nifty-geberators gem on before-3.0\* Rails version, all the translations worked fine. After passing to Rails 3.0.5, nifty-generators 0.4.5, i18n 0.5.0, Ruby 1.9.2p180, I can't figure out how to...

code
research

I'm using `4.8.2` version of `api-pagination`with Rails API `5.2.2` and `will_pagiante` gem. Here is the links generated in the JSON response: ``` .. "links": { "self": "http://localhost:3000/api/countries/be/addresses?page%5Bnumber%5D=1&page%5Bsize%5D=30", "first": "http://localhost:3000/api/countries/be/addresses?page%5Bnumber%5D=1&page%5Bsize%5D=30", "prev":...

The way you get `secret_key_base` is not working at Heroku for Rails >= 5.2: ``` # json_web_token.rb .. JWT.encode(payload, Rails.application.secrets.secret_key_base) ``` The new way would be: ``` JWT.encode(payload, Rails.application.credentials.dig(:secret_key_base)) ```...

After running the [dummy app](https://github.com/acoustep/ember-cli-foundation-6-sass/tree/master/tests/dummy), it seems like the responsive topbar is broken and is not displayed as it [should be](https://foundation.zurb.com/sites/docs/responsive-navigation.html), (see `Responsive Toggle` section. It looks like that: ![image](https://user-images.githubusercontent.com/83579/35577802-a58b5b88-05e2-11e8-81be-c194b5ca6216.png)...

If I'm not mistaken, the step described in [Getting started](https://github.com/acoustep/ember-cli-foundation-6-sass#getting-started) section: Run the generator to install the dependencies ``` ember g ember-cli-foundation-6-sass ``` is useless as it does exactly the...

Do I need to add special settings to put into the Logstash configuration file or any others to make it work ? Can firewall or proxy settings block that ?...

I tried to access some of the links available from the current repo README and some of them are broken. The very first one, in your organization title for example...

Provide an Ember app example with steps to setup tailwindcss.

### Describe the Bug I could install 3 different versions of Ruby without problems: ``` ~ asdf list ruby 2.7.3 3.0.0 3.0.2 ``` But when trying to install a lower...

bug