<ruby[bot]>
Swyper: we in #ruby do not like pastebin.com, it loads slowly for most, has ads which are distracting and has terrible formatting. Please use https://gist.github.com
<Swyper>
sorry about that, should I repaste using gist?
<nchambers>
so like i said im new, so im not sure what the difference between ("A".."Z") and ["A".."Z"] is, but ("A".."Z") works for me: https://clbin.com/o90Og
MyMind has joined #ruby
<nchambers>
but ["A".."Z"] doesn't work for me either
<nchambers>
ah
<nchambers>
its because ["A".."Z"] is an array of one element (that range object)
<nchambers>
("A".."Z") is an actual range
Sembei has quit [Ping timeout: 240 seconds]
<Swyper>
interesting
<Swyper>
thank you very much
<Swyper>
where did you learn ruby from ?
<nchambers>
anytime :)
<nchambers>
mostly from reading my companie's developers code
queip has quit [Read error: Connection reset by peer]
marz_d`ghostman has joined #ruby
<marz_d`ghostman>
Is there an alternative for stub_const in rspec to override constants for the whole test? Like I have a constnat defined for the directory where logs are stored and I want to override that during tests
Xeago_ has joined #ruby
Xeago has quit [Ping timeout: 264 seconds]
Xeago_ is now known as Xeago
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dkmueller has quit [Quit: Lost terminal]
queip has joined #ruby
Exuma has joined #ruby
roshanavand1 has joined #ruby
<baweaver>
Don't use === explicitly in code, it makes for a mess.
roshanavand has quit [Ping timeout: 264 seconds]
roshanavand1 is now known as roshanavand
<baweaver>
marz_d`ghostman: Don't make something like that a constant
<baweaver>
Make it a configurable
<baweaver>
DIR = 'abc'; def initialize(dir: DIR) ...
<baweaver>
That way you can inject values to change that and not have it hardcoded
* baweaver
starts reading through backlogs
<marz_d`ghostman>
baweaver: thanks, I'll look into it
Exuma has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<Swyper>
dosent make much sense though if its truncates it to a number then I subtract one the index should be the number below the number it already rounded to o-o
<baweaver>
There's the first preview image to make its way out
sauvin has joined #ruby
bairyn has joined #ruby
Inline has quit [Quit: Leaving]
Emmanuel_Chanel has joined #ruby
patr0clus has joined #ruby
jetchisel has joined #ruby
marmotini_ has joined #ruby
<marz_d`ghostman>
In plain ruby, how do I know if my script is being run in development/production/test(rspec)?
elphe has quit [Ping timeout: 276 seconds]
marmotini_ has quit [Ping timeout: 264 seconds]
<marz_d`ghostman>
baweaver: I created this config class:http://termbin.com/kj12 how do I populate different values based when it is run in production and in rspec though?
patr0clus has quit [Quit: WeeChat 2.1]
dbz has quit [Remote host closed the connection]
reber has joined #ruby
<marz_d`ghostman>
Created a config/initializer/config.rb file in my project root to define the settings. e.g. App.configure do |config| log_dir = '/var/logs' end.
<marz_d`ghostman>
but I want to set a different dir when testing
<marz_d`ghostman>
Is there an environment variable set so I could define the corresponding values based on it is run on test or not?
elphe has joined #ruby
marmotini_ has joined #ruby
dellavg_ has joined #ruby
reber__ has joined #ruby
marmotini_ has quit [Ping timeout: 250 seconds]
marmotini_ has joined #ruby
reber has quit [Ping timeout: 252 seconds]
Phenotype-A has joined #ruby
marmotini_ has quit [Ping timeout: 264 seconds]
Phenotype-A has quit []
lightstalker has quit [Ping timeout: 260 seconds]
lightstalker has joined #ruby
jcarl43 has joined #ruby
conta has joined #ruby
Emmanuel_Chanel has quit [Ping timeout: 264 seconds]
queip has quit [Read error: Connection reset by peer]
nchambers has quit [Quit: WeeChat 2.2]
jordanm has quit [Ping timeout: 250 seconds]
jordanm has joined #ruby
queip has joined #ruby
donofrio has quit [Ping timeout: 272 seconds]
dbz has joined #ruby
luminous has joined #ruby
dbz has quit [Ping timeout: 268 seconds]
Emmanuel_Chanel has joined #ruby
aupadhye has joined #ruby
BH23 has quit [Ping timeout: 244 seconds]
<zenspider>
marz_d`ghostman: everything you're describing is arbitrary. make it up
Emmanuel_Chanel has quit [Read error: Connection reset by peer]
gix has joined #ruby
Emmanuel_Chanel has joined #ruby
gix has quit [Ping timeout: 264 seconds]
CrazyEddy has quit [Ping timeout: 245 seconds]
nowhere_man has joined #ruby
dachi has quit [Quit: %Bai%]
phaul has joined #ruby
planigan has quit [Ping timeout: 252 seconds]
jordanm has quit [Ping timeout: 276 seconds]
_whitelogger has joined #ruby
jordanm has joined #ruby
queip has quit [Read error: Connection reset by peer]
planigan has joined #ruby
whysthatso has joined #ruby
queip has joined #ruby
aufi has joined #ruby
dkmueller has joined #ruby
pskosinski has quit [Ping timeout: 272 seconds]
pskosinski has joined #ruby
clemens3 has joined #ruby
BH23 has joined #ruby
OrangeManBad has quit [Ping timeout: 264 seconds]
aufi_ has joined #ruby
lxsameer has quit [Ping timeout: 252 seconds]
<marz_d`ghostman>
zenspider: How do you run a file like /config/initializer/test.rb in rspec_helper?
aufi has quit [Ping timeout: 252 seconds]
OrangeManBad has joined #ruby
AlexeyX has joined #ruby
<AlexeyX>
Hi there!
<AlexeyX>
I'm trying to install a provider for vagrant... but something wrong with i18n...
<AlexeyX>
Conflicting dependency chains:
<AlexeyX>
i18n (= 1.1.1), 1.1.1 activated
<AlexeyX>
versus:
<AlexeyX>
vagrant-vmware-esxi (> 0), 1.0.1 activated, depends on
<AlexeyX>
i18n (~> 0.6)
<AlexeyX>
conflicting dependencies i18n (~> 0.6) and i18n (= 1.1.1)
<AlexeyX>
Activated i18n-1.1.1
<AlexeyX>
which does not match conflicting dependency (~> 0.6)
<AlexeyX>
I tried to install i18n 0.7.0 via - gem install i18n --version 0.7.0
<AlexeyX>
but it doesn't help
<AlexeyX>
How to activate another version of i18n oO ?
queip has quit [Read error: Connection reset by peer]
maufart__ has joined #ruby
reber__ has quit [Remote host closed the connection]
yohji has quit [Remote host closed the connection]
vondruch has joined #ruby
queip has joined #ruby
asphyxia_ has quit [Ping timeout: 240 seconds]
dbz has joined #ruby
Burgestrand has joined #ruby
marz_d`ghostman has quit [Ping timeout: 256 seconds]
dbz has quit [Ping timeout: 252 seconds]
dkmueller has quit [Ping timeout: 264 seconds]
jokke2 is now known as jokke
voolik has joined #ruby
jokke1 has quit [Disconnected by services]
jokke1 has joined #ruby
jokke1 has quit [Client Quit]
asphyxia has joined #ruby
ss_much has quit [Quit: Connection closed for inactivity]
jcarl43 has quit [Quit: WeeChat 2.3]
jp has joined #ruby
luminous has quit [Quit: Connection closed for inactivity]
ellcs has joined #ruby
lomex has joined #ruby
clemens3 has quit [Remote host closed the connection]
BH23 has quit [Ping timeout: 264 seconds]
crankhar1er has joined #ruby
BH23 has joined #ruby
venmx has joined #ruby
elphe has quit [Ping timeout: 268 seconds]
queip has quit [Read error: Connection reset by peer]
crankhar1er has quit [Ping timeout: 268 seconds]
Nicmavr has quit [Ping timeout: 245 seconds]
lomex has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Nicmavr has joined #ruby
queip has joined #ruby
lomex has joined #ruby
roshanavand has quit [Remote host closed the connection]
clemens3 has joined #ruby
roshanavand has joined #ruby
Guest61808 has joined #ruby
dhollin3 has joined #ruby
jetchisel has quit [Ping timeout: 272 seconds]
dhollinger has quit [Read error: Connection reset by peer]
jordila has joined #ruby
lomex has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jetchisel has joined #ruby
elphe has joined #ruby
rkoller has joined #ruby
rkoller has quit [Client Quit]
gregf_ has joined #ruby
marmotini_ has joined #ruby
dkmueller has joined #ruby
queip has quit [Read error: Connection reset by peer]
queip has joined #ruby
asphyxia has quit [Ping timeout: 272 seconds]
dbz has joined #ruby
esrse has quit [Ping timeout: 264 seconds]
dbz has quit [Ping timeout: 268 seconds]
nowhere_man has quit [Ping timeout: 252 seconds]
luminous has joined #ruby
ua has quit [Ping timeout: 244 seconds]
dkmueller has quit [Ping timeout: 268 seconds]
Nicmavr has quit [Read error: Connection reset by peer]
dkmueller has joined #ruby
ua has joined #ruby
marmotini has joined #ruby
BTRE has joined #ruby
Nicmavr has joined #ruby
marmotini has quit [Remote host closed the connection]
marmotini has joined #ruby
marmotini_ has quit [Ping timeout: 240 seconds]
queip has quit [Read error: Connection reset by peer]
marmotini has quit [Remote host closed the connection]
marmotini has joined #ruby
goatish has joined #ruby
GodFather has joined #ruby
keden has joined #ruby
<keden>
join #go-nuts
postmodern has quit [Quit: Leaving]
queip has joined #ruby
quipa_ has joined #ruby
keden has quit [Ping timeout: 246 seconds]
keden has joined #ruby
dbz has joined #ruby
keden has quit [Read error: Connection reset by peer]
keden has joined #ruby
dbz has quit [Ping timeout: 252 seconds]
maximjaffe has joined #ruby
maximjaffe has quit [Read error: Connection reset by peer]
quipa_ has quit [Ping timeout: 252 seconds]
voolik has quit [Quit: Taking a nap...]
voolik has joined #ruby
<al2o3-cr>
if i allocate an arbitrary amount of bytes e.g `fp = Pointer.malloc 8, RUBY_FREE` now, do i have to explicitly call fp.free or will it be implicilty called when ruby's gc is run?
cmhobbs has quit [Ping timeout: 244 seconds]
jamied has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cmhobbs has joined #ruby
LinuxKnight has quit [Remote host closed the connection]
LinuxKnight has joined #ruby
AJA4350 has joined #ruby
reber has joined #ruby
Guest61808 has quit [Ping timeout: 272 seconds]
asphyxia has joined #ruby
dkmueller has quit [Ping timeout: 252 seconds]
dkmueller has joined #ruby
Arkantos has joined #ruby
Arkantos has quit [Client Quit]
vondruch has quit [Ping timeout: 250 seconds]
cow[moo] has joined #ruby
jottr has joined #ruby
vondruch has joined #ruby
bmurt has joined #ruby
marmotini has quit [Read error: Connection reset by peer]
marz_d`ghostman has joined #ruby
<marz_d`ghostman>
I'm trying to test that a file is being created with File.open. However, I have two File.open statement in my script and the first File.open statement is handled first which will make my expect test fail. How do I bypass the first one
<marz_d`ghostman>
?
marmotini_ has joined #ruby
asphyxia has quit [Ping timeout: 250 seconds]
<phaul>
I think you can trust File.open to work in almost all cases. no need to test
<phaul>
unless you are the implementor of File
dkmueller has quit [Ping timeout: 268 seconds]
dkmueller has joined #ruby
jamied has joined #ruby
Guest61808 has joined #ruby
dkmueller has quit [Client Quit]
<marz_d`ghostman>
I want to define a double and let it be the return value of a method. Like allow(SyncLog).to receive(:new).and_return(double()). How do I do it in a describe block scope instead of having to repeat it inside multiple "it".
<marz_d`ghostman>
phaul: Oh, my script is conditional so I have to test that if this condition is met it creates the File. Thus, I'm testing if the File.open has been invoked
crankhar1er has joined #ruby
<phaul>
marz_d`ghostman: that makes sense. testing if it was invoked is fine. You can create doubles in let blocks.. then you can share them between examples
<marz_d`ghostman>
phaul: I'll try the let blocks, thanks
sagax has quit [Ping timeout: 268 seconds]
voolik has quit [Quit: Taking a nap...]
luminous has quit [Quit: Connection closed for inactivity]
aupadhye has quit [Ping timeout: 272 seconds]
marz_d`ghostman has quit [Ping timeout: 256 seconds]
dbz has joined #ruby
goatish has quit [Quit: Hibernating]
dbz has quit [Ping timeout: 268 seconds]
jamied has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
za1b1tsu has joined #ruby
hutch has joined #ruby
aupadhye has joined #ruby
dbz has joined #ruby
dbz has quit [Ping timeout: 250 seconds]
<jhass>
if they come back, they either want .and_return(a, b) to return a for the first call and b for the second or setup one or two mocks that are restricted with .with() to the particular argument
kapil____ has quit [Quit: Connection closed for inactivity]
jordila has quit [Ping timeout: 272 seconds]
marz_d`ghostman has joined #ruby
<marz_d`ghostman>
I'm testing every method call in isolation. So my first it block goes like it 'should create a new instance of logger' do expect(SyncLog).to receive(:new). How do I end the test with just that so that it won't continue to execute the script?
reber has quit [Remote host closed the connection]
AlexeyX has quit [Quit: Going offline, see ya! (www.adiirc.com)]
aupadhye has quit [Remote host closed the connection]
sagax has joined #ruby
donofrio has joined #ruby
roshanavand has quit [Quit: Gone planting!]
lomex has joined #ruby
roshanavand has joined #ruby
ixti has joined #ruby
im0nde has joined #ruby
kapil____ has joined #ruby
queip has quit [Read error: Connection reset by peer]
conta has quit [Ping timeout: 276 seconds]
Inline has joined #ruby
queip has joined #ruby
rippa has joined #ruby
jottr_ has joined #ruby
nadir_ has quit [Quit: Connection closed for inactivity]
jottr has quit [Ping timeout: 245 seconds]
MoritaShinobu has quit [Quit: Leaving]
<jhass>
structure your code in a way that you can run just the relevant part from your tests
<jhass>
that is extract to classes & methods
elphe has quit [Ping timeout: 268 seconds]
jottr has joined #ruby
jottr_ has quit [Ping timeout: 244 seconds]
za1b1tsu has quit [Ping timeout: 244 seconds]
roshanavand has quit [Remote host closed the connection]
blackmesa has joined #ruby
roshanavand has joined #ruby
Arkantos has joined #ruby
Arkantos has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Guest61808 has quit [Ping timeout: 252 seconds]
Guest61808 has joined #ruby
Guest61808 has quit [Ping timeout: 268 seconds]
im0nde has quit [Ping timeout: 264 seconds]
Arkantos has joined #ruby
Guest61808 has joined #ruby
eblip has quit [Read error: Connection reset by peer]
eb0t has quit [Read error: Connection reset by peer]
crankharder has quit [Remote host closed the connection]
eblip has joined #ruby
za1b1tsu has joined #ruby
voolik has joined #ruby
eb0t has joined #ruby
Inline has quit [Remote host closed the connection]
queip has quit [Read error: Connection reset by peer]
im0nde has joined #ruby
za1b1tsu has quit [Ping timeout: 268 seconds]
roshanavand has quit [Remote host closed the connection]
bairyn is now known as ByronJohnson
roshanavand has joined #ruby
maufart__ has quit [Ping timeout: 245 seconds]
nowhere_man has joined #ruby
MoritaShinobu has joined #ruby
Inline has joined #ruby
marmotini_ has quit [Read error: Connection reset by peer]
crankharder has joined #ruby
marmotini_ has joined #ruby
luminous has joined #ruby
queip has joined #ruby
marmotini_ has quit [Read error: Connection reset by peer]
marmotini_ has joined #ruby
dbz has joined #ruby
leitz has joined #ruby
dbz has quit [Ping timeout: 268 seconds]
lomex has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Burgestrand has quit [Quit: Closing time!]
nchambers has joined #ruby
Emmanuel_Chanel has quit [Read error: Connection reset by peer]
kevinsjoberg has joined #ruby
za1b1tsu has joined #ruby
za1b1tsu has quit [Ping timeout: 246 seconds]
cd has quit [Quit: cd]
Arkantos has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<phaul>
my Rails atm is really rusty, but those double has_many relations with the same name are suspect to me
<phaul>
has_many :pictures
<phaul>
has_many :pictures, through: :comments
dbz has quit [Ping timeout: 260 seconds]
<JasonO>
phaul: so I should only list one has_many association? I've this for comments as well in the same Class. I am trying to provide the user access. Per the association docs https://guides.rubyonrails.org/images/has_many_through.png
clemens3 has quit [Ping timeout: 246 seconds]
<JasonO>
.comments to see comments from the user
<JasonO>
*user.first.comments
ellcs has quit [Ping timeout: 252 seconds]
<phaul>
so does the User have pictures directly as well as through comments? or just via comments?
<JasonO>
phaul: I realized my mistake after reading your last response
<JasonO>
phaul: I removed " # has_many :pictures, through: :comments
<JasonO>
now it works. thanks!
<phaul>
ah, ok. yw
Arkantos has joined #ruby
<al2o3-cr>
anyone know a little bit about argon2 here?
BH23 has quit [Ping timeout: 268 seconds]
Arkantos has quit [Client Quit]
<al2o3-cr>
i'm getting "memory cost is too small" with 2**N
<al2o3-cr>
anything other than that is fine.
gregf_ has quit [Ping timeout: 256 seconds]
Burgestrand has joined #ruby
queip has quit [Read error: Connection reset by peer]
Dbugger has joined #ruby
elphe has joined #ruby
Dbugger has quit [Remote host closed the connection]
oft_gegong has joined #ruby
keden has quit [Ping timeout: 268 seconds]
cow[moo] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<oft_gegong>
so @instanceVariable, @@staticClassVariable ???
cow[moo] has joined #ruby
<oft_gegong>
I'm coming from a java background
queip has joined #ruby
dinfuehr has quit [Ping timeout: 250 seconds]
Guest61808 has quit [Ping timeout: 272 seconds]
beowuff has joined #ruby
<phaul>
oft_gegong: unfortunately it's not that simple
krawchyk has joined #ruby
dinfuehr has joined #ruby
<oft_gegong>
darn. Training in a new language is a tough hurdle, *goes back to googling*
<phaul>
are you ok with a ~ 1 hr youtube video about the Ruby object model?
<phaul>
the actual explanation starts at about 10 minutes in, up to that he is ridiculing other languages. but the rest is good
doubledup has joined #ruby
dinfuehr has quit [Ping timeout: 252 seconds]
dinfuehr has joined #ruby
jaddison has joined #ruby
<jaddison>
I can't get Rubymine (2018.3 RC) + vagrant (ubuntu xenial) + rvm (ruby 2.4.2, not system) to debug. It can't/won't install the debugging tool `ruby-debug-ide`
<jaddison>
In Rubymine, I can add the rvm ruby 2.4.2 sdk fine. I can 'Run' (ie. not Debug) just fine, but I can't Debug.
<jaddison>
havenwood I have successfully manually installed ruby-debug-ide with the system ruby as well as the desired rvm ruby version, inside the vagrant
<jaddison>
but it still isn't recognized by rubymine
bambanx has joined #ruby
mzo has joined #ruby
conta has quit [Quit: conta]
rrichardsr3 has joined #ruby
mzo has quit [Quit: b-bye :3]
roshanavand has quit [Remote host closed the connection]
dbz has quit [Remote host closed the connection]
roshanavand has joined #ruby
marmotini_ has joined #ruby
paulscoder has joined #ruby
clemens3 has quit [Ping timeout: 246 seconds]
venmx has quit [Ping timeout: 260 seconds]
<havenwood>
So RubyMine doesn't show the gem failure error? Hrm.
<havenwood>
I wonder why it's installation isn't successful.
dbz has joined #ruby
<havenwood>
its*
<havenwood>
jaddison: You're sure that RuyMine is using RVM 2.4.2 Ruby and that `gem install ruby-debug-ide` worked on that Ruby?
<jaddison>
Yes, but I'll verify, havenwood
<havenwood>
jaddison: Maybe RubyMine wants a specific version? Have you installed the exact version from the project Gemfile.lock?
<havenwood>
jaddison: Another possibility is that RVM Gemsets are involved in the confusion.
<jaddison>
havenwood it actually looks like RubyMine 'successfully installs' the debugger - but it installs it on my HOST machine, not in the vagrant box
<jaddison>
(from the log file)
<havenwood>
jaddison: An aside, but bump your 2.4 from 2.4.2 to 2.4.5 :)
dbz has quit [Remote host closed the connection]
bheesham has quit [Quit: WeeChat 1.4]
<jaddison>
ha ha, yes, I should. I'm just trying to get this project working locally according to how it's deployed in production
<jaddison>
inheriting the project, not uber familiar with ruby or rails == uphill battle
jordila has quit [Ping timeout: 252 seconds]
dbz has joined #ruby
mzo has joined #ruby
doubledup has quit [Quit: Leaving]
mroutis has quit [Ping timeout: 246 seconds]
<jaddison>
havenwood I played with and without gemsets, no difference
queip has quit [Read error: Connection reset by peer]
<havenwood>
jaddison: Sanity check that it's really the same Ruby that RubyMine is using. I personally always disable Gemsets.
<havenwood>
jaddison: chruby with a text editor is super simple to setup
<havenwood>
jaddison: rvm with an ide is tougher
hutch has quit [Ping timeout: 268 seconds]
<havenwood>
jaddison: but i see your point about wanting ide and debugger assistance with an unfamiliar lang
<havenwood>
unfamiliar app**
<jaddison>
havenwood Yes, I'm super familiar with PyCharm, so RubyMine was logical for me. Atom doesn't have quite the toolset/workflow I'm looking for
<havenwood>
I don't use RubyMine, but sure would be nice if it'd show the gem installation error...
<havenwood>
Is there like a debug mode for RubyMine?
<jaddison>
Only log file, that I can see.
<havenwood>
Does it have the gem installation error message?
<jaddison>
which shows it successfully installing the debugger on the HOST, not the vagrant GUEST
<havenwood>
jaddison: I don't know enough about RubyMine to know how to configure it with vagrant. The jetbrains issue ticket is the best I'd know.
<jaddison>
Going to try updating rvm ruby version
dbz has quit [Remote host closed the connection]
dbz has joined #ruby
marmotini_ has quit [Ping timeout: 268 seconds]
queip has joined #ruby
venmx has joined #ruby
Exuma has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Exuma has joined #ruby
rrichardsr3 has quit [Quit: He who dares .... wins.]
dbz has quit [Remote host closed the connection]
dbz has joined #ruby
gix has joined #ruby
bambanx has quit [Ping timeout: 264 seconds]
elphe has joined #ruby
dviola has quit [Quit: WeeChat 2.3]
keden has joined #ruby
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
hutch has joined #ruby
dbz has quit [Remote host closed the connection]
dbz has joined #ruby
paulscoder has quit [Quit: paulscoder]
venmx has quit [Remote host closed the connection]
Exuma has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dbz has quit [Ping timeout: 252 seconds]
dellavg_ has quit [Ping timeout: 268 seconds]
<jaddison>
no difference
dbz has joined #ruby
minimal_life has joined #ruby
nfk has quit [Quit: Try memory.free_dirty_pages=true in about:config]
minimal_life has quit [Client Quit]
ellcs has joined #ruby
minimal_life has joined #ruby
claudiuinberlin has joined #ruby
OrangeManBad has quit [Quit: Bye]
OrangeManBad has joined #ruby
lomex has joined #ruby
mzo has quit [Ping timeout: 272 seconds]
venmx has joined #ruby
minimal_life has quit [Quit: I am functioning within established parameters.]
queip has quit [Read error: Connection reset by peer]
queip has joined #ruby
dbz has quit [Remote host closed the connection]
non_AI has quit [Ping timeout: 240 seconds]
asphyxia has joined #ruby
darthfork has joined #ruby
Exuma has joined #ruby
darthfork has quit [Client Quit]
BTRE has quit [Read error: Connection reset by peer]
BTRE has joined #ruby
BTRE has quit [Remote host closed the connection]
Exuma has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Exuma has joined #ruby
Robdgreat has quit [Quit: brb]
darthfork has joined #ruby
reber has quit [Remote host closed the connection]
Nicmavr has quit [Read error: Connection reset by peer]
Nicmavr has joined #ruby
mroutis has joined #ruby
darthfork has quit [Quit: darthfork]
keden has quit [Ping timeout: 240 seconds]
brandonkal has joined #ruby
<brandonkal>
I am having a weird issue where `gem install csscss` works but then bash cannot find the command. MacOS. Any pointers would be appreciated.
<brandonkal>
Interesting. Different paths. A bit confusing because `/usr/local/lib/ruby/` has `gems/2.5.0/gems` and also `2.5.0` but `ruby --version is 2.5.3