John Rees
John Rees
Sure, no worries @jonschlinkert, I'll leave it up to you. I can't speak for others but I've run into that situation a few times recently whilst working with observables and...
I'm currently using this `Dockerfile` ```Dockerfile FROM postgres:12 AS extension_builder RUN apt-get update -y RUN apt-get install wget -y RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - RUN...
+1 this pull fixes it https://github.com/johnrees/css3buttons_rails_helpers/commit/46fd008d84feb43149fe9de7f27b8d5cf5a888fc
Hmm, it's working here, is this how your Gemfile looks? ``` gem 'css3buttons', :git => 'git://github.com/johnrees/css3buttons_rails_helpers.git' ```
Are any of your assets precompiled? Try running ``` rm -rf public/assets/*.css ``` Then look at ``` /assets/css3buttons/styles.css?body=1 ``` and see if it has changed ``` background: url(/css3buttons/icons.png) 0 99px...
With Rails 3.1 you don't need run a generator because of the asset pipeline. Please refer to 'Getting started - Rails 3.1' in the readme.md
I also had a very quick look at extracting properties from the docs html, but there are some inconsistencies because they're manually curated https://github.com/johnrees/three-docs-parser/blob/master/index.js
Fantastic, yes that would be great! Not sure the best way to tackle this but I started a PR with some info here https://github.com/toxicFork/react-three-renderer-fiber/pull/38/commits/0569dda386b8714ac841730bda01988a9e37f56f#diff-370a1a3a7683bd722dc6d74ff5984f61 I guess it makes sense to...
The README is garbage and probably doesn't make a great deal of sense haha I was just spewing out what was in my head 😬
For anyone stumbling across this thread - There's some relevant info here https://github.com/facebook/react/tree/master/packages/react-reconciler and a pretty decent tutorial (for react@15 using the now deprecated `import ReactFiberReconciler from 'react-dom/lib/ReactFiberReconciler';`) here https://github.com/nitin42/Making-a-custom-React-renderer...