Keegan Leitz
Keegan Leitz
First off, thanks for the lib, it's fantastic! 😄 So, leading underscores are not preserved (even with `snakeCase`): ```js changeCase.snakeCase('private'); //=> 'private' changeCase.snakeCase('_private'); //=> 'private' changeCase.snakeCase('private_key'); //=> 'private_key' changeCase.snakeCase('_private_key'); //=>...
https://github.com/nicolai86/ansible-rails-deployment/blob/79b8c10658a05d23bccf35698830374f1f592900/tasks/main.yml#L55 ```yaml - name: copy asset files when not changed shell: "cp -R {{ current_path }}/public/assets {{ build_path }}/public/assets" when: compile_assets and assets is defined and not assets.changed ``` For...
Steps to reproduce: **(in the JS file)** ```js import RiveScript from 'rivescript'; function sayFoo(): string { return 'Foo'; } function startsWithFoo(someString): boolean { return !!someString.match(/^foo/i); } function alertArgs(...args): void {...
For example, I'd want to do something like: ```jsx ! array colors = red orange yellow green blue purple ! array items = shirts books computers napkins eggs ! array...
I'd like to ping an API endpoint and receive a JSON array, or to accept user input as an array, and set an array to that new list. Is that...
## Background I encountered this issue after visiting the RubyGems page for the latest version of the [Adornable gem](https://rubygems.org/gems/adornable/versions/1.3.0) and clicking the ["Documentation" link](https://www.rubydoc.info/gems/adornable/1.3.0) under "Links" in the sidebar. I...
Previously the `` ctrl+shift+` `` keybinding did not work out-of-the-box in `*.html.erb` files (the default extension for erb views in Rails). This PR adds that file extension to the `erb`...