I hereby claim:
- I am cheba on github.
- I am cheba (https://keybase.io/cheba) on keybase.
- I have a public key whose fingerprint is 07CD 0C26 E7ED E227 A4A0 17E4 A2D0 77DB B8E6 7939
To claim this, I am signing this object:
| -=>> which irb | |
| /Users/cheba/.rvm/rubies/rbx-head/bin/irb | |
| -=>> which gem | |
| /Users/cheba/.rvm/rubies/rbx-head/bin/gem | |
| -=>> echo $GEM_PATH | |
| /Users/cheba/.rvm/gems/rbx-head:/Users/cheba/.rvm/gems/rbx-head@global | |
| -=>> echo $GEM_HOME | |
| /Users/cheba/.rvm/gems/rbx-head | |
| -=>> which gem | |
| /Users/cheba/.rvm/rubies/rbx-head/bin/gem |
I hereby claim:
To claim this, I am signing this object:
| # Installation | |
| Put these files in your `.git/hooks` directory and make them executable. | |
| # Changelog | |
| ## 1.2 | |
| * Check for RuboCop updates |
| The Rubinius process is aborting with signal: SIGSEGV | |
| --- begin system info --- | |
| sysname: Darwin | |
| nodename: MacBook-Pro.local | |
| release: 14.3.0 | |
| version: Darwin Kernel Version 14.3.0: Tue Mar 10 20:10:46 PDT 2015; root:xnu-2782.20.44.1.1~1/RELEASE_X86_64 | |
| machine: x86_64 | |
| --- end system info --- | |
| --- begin rubinius info --- | |
| program name: rbx |
| target :example do | |
| check 'example.rb' | |
| signature 'example.rbs' | |
| end |
Once in a while I get issues intalling glibs. This is the message:
>>> Emerging (1 of 3) sys-libs/glibc-2.32-r1::pointlessone
* Fetching files in the background.
* To view fetch progress, run in another terminal:
* tail -f /var/log/emerge-fetch.log
* glibc-2.32.tar.xz BLAKE2B SHA512 size ;-) ... [ ok ]
* glibc-2.32-patches-1.tar.xz BLAKE2B SHA512 size ;-) ... [ ok ]
* locale-gen-2.10.tar.gz BLAKE2B SHA512 size ;-) ... [ ok ]
| require 'benchmark' | |
| def array_plus_array_element(array) | |
| result = [] | |
| array.each do |i| | |
| result = result + [i] | |
| end | |
| result | |
| end |