Jon Wood
Jon Wood
Hi there, One thing to keep in mind here is that it seems we're both focused on Activo 2 at the moment - @tobsch has been working on updating activo-rails...
I just noticed you commented while I was typing. You can in fact override the defaults from Actvio-rails - either by adding extra styles in application.css, or replacing templates. Because...
@standardtoaster I haven't looked into this in much detail, but I believe the new asset pipeline allows you to compile everything into static files for deployment, so that you can...
That's a very good point. Originally it was much closer to Activo, so I just forked, but when I get a moment I'll see if I can split it out...
The pull request has been merged now. Just waiting for a release.
I have to admit I've never used the web-app-theme generators - what do they do? I'm very happy to have some sort of form generator in activo-rails, but I very...
That sounds good to me - the only reference application I know of is Vowessly, the application that this was extracted from - it can be found at http://github.com/jellybob/Vowessly/. I'm...
Its probably not the cleanest possible fix, but I think I've tracked down the source and will submit a PR once I've tidied it up a bit.
Looking at this further, I'd argue that if a header can't be parsed it should either cause a response indicating that occurred, or the header should be ignored. The HTTP...
This Sinatra application shows the behaviour described: ``` # frozen_string_literal: true require 'sinatra/base' # The app class MyApp < Sinatra::Base get '/' do headers.inspect end end use MyApp run ->(_env)...