Alexis DELAHAYE

Results 13 comments of Alexis DELAHAYE

I'm also hosting it privately on a dedicated server and getting : ``` "There was a problem talking to Instagram. Please try again in a moment." ``` Reading `instagram.rb` I...

Having kind of the same problem, I'm creating object in rspec `shared_context`, and this specific object is getting deleted by the time my test is run. I have a minimal...

Sure thing, here is the most basic repo I could create to reproduce what I mentionned in my comment. (rails api boilerplate with rspec and database_cleaner) https://github.com/Ex-Ark/databasecleaner_issue_564 From there you...

Thanks for taking a look at this ! The code in the sample repo is of course not 100% what I have in my app, as I need to have...

@gs2589 I also have calculated fields, where in `view_columns ||=` I have binded this to methods that are not present in database. ```ruby @view_columns ||= { id: { source: "User.id"},...

Still an issue for me as well, but the proposed fix #494 is still pending They probably won't release a minor just for this fix, guess we'll have to wait...

Same issue, symlink not working on windows Workaround is to build from source : ``` git clone https://github.com/nesquena/rabl cd rabl # optional # git checkout whatever version you need gem...

Yes sorry for any possible confusion, here is the detailed env : I'm using Docker Desktop with linux containers in order to run the ELK stack (as well as the...

Here is the platform line output ```ruby def self.platform @platform ||= Gem::Platform.local.os.to_sym puts "PLATFORM: #{@platform}" end # => PLATFORM: mingw32 ``` So the intended behaviour is that the metrics should...

I added ```ruby puts "('/proc/stat') readlines reached!" puts "('/proc/self/stat') readlines reached!" puts "('/proc/memeinfo) readlines reached!" ``` before each IO.readlines in cpu_mem_set.rb but none got logged so I believe the linux...