Scott P
Scott P
Had a look, I understand what the issues are, and I had another idea or two. I don't have time to turn this into working code tonight, but I'll do...
``` # file in /lib that contain Functor or functor core/facets/string/linear.rb core/facets/string/file.rb core/facets/functor.rb core/facets/enumerator/fx.rb core/facets/symbol/as_s.rb core/facets/enumerable/recursively.rb core/facets/enumerable/ewise.rb core/facets/enumerable/per.rb core/facets/enumerable/apply.rb core/facets/enumerable/accumulate.rb core/facets/enumerable/every.rb core/facets/hash/recursively.rb core/facets/hash/data.rb core/facets/kernel/as.rb core/facets/kernel/tap.rb core/facets/kernel/respond.rb core/facets/kernel/ergo.rb core/facets/kernel/try.rb core/facets/kernel/not.rb core/facets/kernel/meta.rb...
Could we put it in something like a facets-plus which would be to contain methods that do have some external dependency. facets-plus could include the original facets, and we could...
works for me. Let me know if you want anything done for that otherwise I'll plug away at the tests and demos
These are the affected methods ``` ruby # 2.2.0 Enumerable.instance_methods. map{|m| [m, Enumerable.instance_method(m).arity]}. select{|e| e.last < 0}. map(&:first) # => [:to_a, :entries, :to_h, :count, :find, :detect, :find_index, :inject, :reduce, :first,...
hygen looks for the first .hygen.js file it finds walking up from your current directory to the root directory. Sharing as in multiple directories providing generators to all, then no,...
I think writing code to change or replace lines in a file is going to be very specific to the task at hand. A generic solution is going to be...
I should think a code block with an example of each transformation, and maybe a short note on transform would cover it. Plus clear links to each set of docs.
That sounds like a decent plan, Do you have a plan to allow people to extend `src/ops/index.js` to allow for plugins? Or should I set it up hard coded? I'll...
Having dug into it a bit, I'm not certain that we shouldn't just use `sh`. ``` yarn_dev_packages: babel prettier sh: yarn add --dev babel prettier ``` Even with just npm...