Kain

Results 111 comments of Kain

I have a package to publish via `npm publish`, this contains package.json with `"publishConfig": { "registry": "https://myregistry.domain.com/" }}` and setting `NPM_REGISTRY=https://myregistry.domain.com/` I tried all combinations with and without final slash...

``` RuntimeError: can't add a new key into hash during iteration 1 File "/app/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/set.rb" line 153 in replace 2 File "/app/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/set.rb" line 153 in replace 3 File "/app/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/set.rb" line 360...

as an alternative this worked ``` { name: 's3', image: 'amazon/aws-cli:2.7.22', commands: [ 'aws s3 sync .output/public s3://my-ghpackages --delete', ], environment: S3CacheEnv, }, ```

merge and release? 🙏

I'd like to select and perform a `concat(..fields..) AS sort` (for a late `ORDER BY sort`) in my query to help with a bottleneck I'm experiencing by having to sort...

Thanks for the fix. I admit it's not quite feasible to escape all chars, but this one I reported deserves a special mention because the lyric in question exists: http://lyrics.wikia.com/LyricFind:Julie_Andrews:Edelweiss_(From_The_Sound_of_Music)...

I guess that we can rescue from the exception and just return nil to try another provider if anything is left; I also found another exception in the current published...

Back on the desktop, so, my idea is to keep the previous behavior whereas ruby will throw `URI::InvalidURIError` for urls that it doesn't like, rescue this exception and just return...

the other issue that is occurring (0.1.0) ``` A NoMethodError occurred in background at 2013-06-19 14:03:23 UTC : undefined method `children' for nil:NilClass /home/ubuntu/apps/myapp-rails/shared/bundle/ruby/2.0.0/gems/lyricfy-0.1.0/lib/lyricfy/providers/wikia.rb:28:in `html_to_array' ------------------------------- Data: ------------------------------- * data:...

using the latest master, changing the rescue in `lyric_provider.rb` to `rescue OpenURI::HTTPError, URI::InvalidURIError` seems to have good effect in my specs atm. but again, it may hide real url errors...