orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
SeepingN has joined #ruby
turbo_choo has joined #ruby
teclator has quit [Ping timeout: 268 seconds]
davidw has quit [Ping timeout: 240 seconds]
dionysus69 has quit [Ping timeout: 272 seconds]
phenom has quit [Ping timeout: 260 seconds]
phenom has joined #ruby
Guest81289 has joined #ruby
Guest81289 has quit [Client Quit]
turbo_choo has quit [Ping timeout: 260 seconds]
turbo_choo has joined #ruby
Guest81289 has joined #ruby
Guest81289 has quit [Client Quit]
Guest81289 has joined #ruby
turbo_choo has quit [Ping timeout: 272 seconds]
Guest81289 has quit [Client Quit]
Elundia has joined #ruby
Elundia has quit [Client Quit]
Elundia has joined #ruby
turbo_choo has joined #ruby
Elundia has quit [Client Quit]
Elundia has joined #ruby
Elundia has quit [Client Quit]
wildtrees has quit [Quit: Leaving]
phenom has quit [Quit: See ya! Wouldn't want to blah blah..]
Elundia has joined #ruby
gix has quit [Ping timeout: 260 seconds]
orbyt_ has joined #ruby
phenom has joined #ruby
jenrzzz has quit [Ping timeout: 260 seconds]
bluetown has quit [Remote host closed the connection]
zlogan has quit [Read error: Connection reset by peer]
zlogan2003 has joined #ruby
Elundia has quit [Quit: Going offline, see ya! (www.adiirc.com)]
mwlang has quit [Quit: mwlang]
bluetown has joined #ruby
lineus has quit [Ping timeout: 240 seconds]
normanrockwell has joined #ruby
normanrockwell has quit [Quit: Leaving...]
lineus has joined #ruby
anveo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bruce_lee has quit [Ping timeout: 268 seconds]
bruce_lee has joined #ruby
jaequery has quit [Remote host closed the connection]
jaequery has joined #ruby
chalkmon1 has joined #ruby
bruce_lee has quit [Ping timeout: 240 seconds]
bruce_lee has joined #ruby
chalkmonster has quit [Ping timeout: 272 seconds]
jaequery has quit [Ping timeout: 240 seconds]
ur5us has quit [Ping timeout: 260 seconds]
Elundia has joined #ruby
teclator has joined #ruby
<gitter1234>
GooOoOooOooood morning!
AMHOL has joined #ruby
ur5us has joined #ruby
chalkmonster has joined #ruby
chalkmon1 has quit [Ping timeout: 240 seconds]
Elundia has quit [Quit: Going offline, see ya! (www.adiirc.com)]
<gitter1234>
chalkmonster :)
Elundia has joined #ruby
Elundia has quit [Excess Flood]
Elundia has joined #ruby
Elundia has quit [Excess Flood]
Elundia has joined #ruby
Elundia has quit [Excess Flood]
Elundia has joined #ruby
Elundia has quit [Excess Flood]
Elundia has joined #ruby
Elundia has quit [Excess Flood]
NODE has quit [Excess Flood]
NODE has joined #ruby
adamparsons has joined #ruby
NODE has quit [Excess Flood]
NODE has joined #ruby
<adamparsons>
Hello there, I'm not sure who maintains ruby-lang.org, but just thought I'd give an FYI that the DNS server for cache.ruby-lang.org is SERVFAIL'ing to requests from cloudflares 1.1.1.1 public dns
<adamparsons>
my builds were failing and I thought I was going insane
Rob__ has quit [Ping timeout: 268 seconds]
<adam12>
adamparsons: Is it still? Works fine here, unless I'm missing something.
jenrzzz has joined #ruby
jenrzzz has quit [Ping timeout: 265 seconds]
regedit has joined #ruby
adamparsons has quit [Remote host closed the connection]
<gitter1234>
greetings adam12! :-)
sgen has quit [Ping timeout: 260 seconds]
zlogan2003 has quit [Ping timeout: 272 seconds]
im0nde_ has joined #ruby
im0nde has quit [Ping timeout: 240 seconds]
duderonomy has joined #ruby
_whitelogger has joined #ruby
AJA4350 has quit [Quit: AJA4350]
rainmanjam has quit []
gnufr33d0m has quit [Quit: gnufr33d0m]
gnufr33d0m has joined #ruby
howdoi has quit [Quit: Connection closed for inactivity]
GodFather has quit [Read error: Connection reset by peer]
<Cork>
is there a better way to group method names inside a class then having a subclass one initialize in a method and export all local varialbes to it for the subspace?
<Cork>
feels way to unoptimal...
NODE has quit [Excess Flood]
NODE has joined #ruby
NODE has quit [Excess Flood]
NODE has joined #ruby
<havenwood>
Cork: I don't understand the question. Do you have an example of what you're talking about implemented as code that you can share?
<Cork>
but all of them are going to work with @shell
<Cork>
and class is the only way i can figure to get instance.website.create instance.user.update
<Cork>
but it feels silly...
<havenwood>
Cork: In #website, I'd suggest using ||=, like: @website ||= Website.new(@shell)
* Cork
nods
<Cork>
but it isn't really the core of the question
<Cork>
can i group method names without instanciating classes for each level?
<havenwood>
I'm still trying to understand the primary question.
duderonomy has joined #ruby
<Cork>
i won't have local variables for the child classes, so they don't provide anything
<Cork>
if i didn't need the main class i would just use function modules
xco has joined #ruby
<Cork>
i guess i could replace the dot with _ and make the grouping part of the method names, but that is quite messy too
greenhat has quit [Ping timeout: 260 seconds]
<havenwood>
Cork: Does each instance of IIS have a single instance of Website?
<Cork>
no
<Cork>
it is just a set of methods for actions on the iis server
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<havenwood>
Cork: How about a Website module that you include IIS?
<havenwood>
include in*
<Cork>
sure, but won't that just put its methods directly inside the iis instance?
<havenwood>
Cork: You want to chain them through .website?
<Cork>
i want some form of grouping, don't really care what
<Cork>
except i don't want to repeate the seperation name in every method name
<havenwood>
Cork: Grouping around what? There's a single #website method in this example with no arguments. What are you grouping?
<havenwood>
I don't quite follow.
<Cork>
havenwood: as i said at the start, this is just a start of it, there are going to be more modules later, and some names are going to be the same for each group
<Cork>
i'm at "how am i goung to structure this" stage right now :)
mossplix has quit [Remote host closed the connection]
<havenwood>
Lacking any context on what you're doing, that makes no sense to me.
<Cork>
the question is quite straight forward can one do something similar to module Mod1; module Mod2; module_function; def a: end; end; end; Mod1::Mod2::a
<Cork>
inside a class
<havenwood>
Maybe that's straight forward to someone else who can answer?
mossplix has joined #ruby
<havenwood>
Cork: How do you want to use your IIS class? Maybe show the interface you're targeting. I know you're saying your request is straightforward but it eludes me.
<havenwood>
Cork: You're showing a module nested in another module with a class method and asking how to do that in a class? Alone, that would be straightforward, but what does it have to do with the IIS class you've shown?
<havenwood>
&>> class Class1; class Class2; def self.a; 42 end; end; end; Class1::Class2.a # Cork
<havenwood>
Cork: That's ^ the straightforward answer, but I can't imagine that's what you're looking for? If so, I'd question the pattern.
<havenwood>
Cork: Are you saying you have a bunch of #website-esque methods with corresponding Website-esque classes and you want to be able to chain them but find this pattern cumbersome in bulk?
Swyper has joined #ruby
<havenwood>
It's hard to advise on an abstraction without seeing the variance between them, if any. (Assuming this is on the right track?)
jenrzzz has joined #ruby
donofrio has quit [Read error: Connection reset by peer]
ur5us has quit [Ping timeout: 260 seconds]
donofrio has joined #ruby
<havenwood>
Cork: My other total-aside suggestion would be to use #dig: $cofig.dig(:winrm, :user)
<havenwood>
Cork: If each Website-style class varies broadly, and might be instantiated differently, and you want to method chain for an interface (which can be very nice). then this particular pattern seems totally appropriate.
<Cork>
havenwood: am i missing something or isn't that basically the same as old one?
infinityfye has joined #ruby
mossplix has joined #ruby
<havenwood>
Cork: it's the same as the old one, but with metaprogramming away repetition of defining the repeated helpers and passing self for extensibility if there are ever new methods that use other interface.
* Cork
nods
<havenwood>
Cork: Just meant to suggest ideas. Your basic pattern is right if you want the method chaining interface. There are other ways to implement it but nothing wrong with straightforward.
cd has quit [Quit: cd]
<Cork>
havenwood: ya, just felt silly to instance a class for a namespace :/
<Cork>
*method namespace
<havenwood>
Cork: Yeah, fair. I agree. Then again, it makes a nice-looking interface.
<Cork>
true, just wished there was a cleaner way to do it in the language
factormystic has quit [Ping timeout: 260 seconds]
factormystic has joined #ruby
TCZ has joined #ruby
TomyWork has quit [Remote host closed the connection]
Fraeon has joined #ruby
TomyWork has joined #ruby
erts has joined #ruby
NL3limin4t0r_ark is now known as NL3limin4t0r
mossplix has quit [Remote host closed the connection]
shaman42 has quit [Ping timeout: 268 seconds]
shaman42 has joined #ruby
zlogan has joined #ruby
erts has quit [Quit: .]
gitter1234 has quit [Quit: Connection closed for inactivity]
TCZ has quit [Quit: Bye Bye]
mossplix has joined #ruby
mossplix has quit [Read error: Connection reset by peer]
mossplix_ has joined #ruby
ur5us has quit [Ping timeout: 260 seconds]
jenrzzz has joined #ruby
Jonopoly has joined #ruby
william1 has joined #ruby
jenrzzz has quit [Ping timeout: 268 seconds]
dviola has joined #ruby
TCZ has joined #ruby
mossplix_ has quit [Remote host closed the connection]
bruce_lee has quit [Ping timeout: 272 seconds]
bruce_lee has joined #ruby
bruce_lee has quit [Changing host]
bruce_lee has joined #ruby
vondruch has joined #ruby
dionysus69 has joined #ruby
fphilipe_ has joined #ruby
bsdbandit-01 has quit [Quit: -a- Connection Timed Out]
MrCrackPot has quit [Remote host closed the connection]
andikr has quit [Ping timeout: 260 seconds]
andikr has joined #ruby
fphilipe_ has quit [Ping timeout: 240 seconds]
teclator has joined #ruby
MrCrackPot has joined #ruby
fphilipe_ has joined #ruby
fphilipe_ has quit [Ping timeout: 272 seconds]
andikr has quit [Ping timeout: 265 seconds]
mossplix has joined #ruby
pwnd_nsfw has joined #ruby
phaul has joined #ruby
infinityfye has quit [Ping timeout: 260 seconds]
mossplix has quit [Remote host closed the connection]
mossplix has joined #ruby
infinityfye has joined #ruby
emilych has joined #ruby
<emilych>
Hi, does someone use sunspot-solr gem? I installed solr on ubuntu linux /opt/solr/ . do I have to configure the path in sunspot.yml "path: /opt/solr" or "path: /opt/solr/server" ? And how can I test the connection?
<emilych>
solr is running fine and i can access the solr admin panel in browser
mossplix has quit [Ping timeout: 272 seconds]
conta has joined #ruby
Ai9zO5AP has quit [Ping timeout: 272 seconds]
mossplix has joined #ruby
conta has quit [Quit: conta]
ellcs has joined #ruby
jenrzzz has joined #ruby
gnufr33d0m has joined #ruby
jenrzzz has quit [Ping timeout: 265 seconds]
bsdband16 has joined #ruby
bsdbandit-01 has quit [Ping timeout: 272 seconds]
mossplix has quit [Remote host closed the connection]
infinityfye has quit [Ping timeout: 265 seconds]
Mia has joined #ruby
Mia has joined #ruby
jenrzzz has joined #ruby
wald0 has joined #ruby
Axy has quit [Ping timeout: 265 seconds]
mossplix has joined #ruby
Ai9zO5AP has joined #ruby
wald0 has quit [Read error: Connection reset by peer]
jenrzzz has quit [Ping timeout: 265 seconds]
wald0 has joined #ruby
wald0 has quit [Read error: Connection reset by peer]
AJA4350 has joined #ruby
wald0 has joined #ruby
wald0 has quit [Read error: Connection reset by peer]
juvenal has joined #ruby
wald0 has joined #ruby
dviola has quit [Quit: WeeChat 2.7]
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #ruby
mossplix has quit [Remote host closed the connection]
NODE has quit [Excess Flood]
NODE has joined #ruby
andikr has joined #ruby
Ai9zO5AP has quit [Ping timeout: 265 seconds]
wald0 has quit [Read error: Connection reset by peer]
NODE has quit [Excess Flood]
Emmanuel_Chanel has quit [Ping timeout: 265 seconds]
mossplix has joined #ruby
NODE has joined #ruby
NODE has quit [Excess Flood]
NODE has joined #ruby
sameerynho has joined #ruby
wald0 has joined #ruby
tvw has joined #ruby
NODE has quit [Excess Flood]
NODE has joined #ruby
wald0 has quit [Read error: Connection reset by peer]
wald0 has joined #ruby
william1_ has quit [Ping timeout: 240 seconds]
wald0 has quit [Read error: Connection reset by peer]
wald0 has joined #ruby
xco has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
greengriminal has joined #ruby
vondruch has quit [Quit: vondruch]
wald0 has quit [Read error: Connection reset by peer]
vondruch has joined #ruby
Ai9zO5AP has joined #ruby
wald0 has joined #ruby
mossplix has quit [Remote host closed the connection]
mossplix has joined #ruby
TCZ has quit [Quit: Bye Bye]
mossplix has quit [Read error: Connection reset by peer]
mossplix_ has joined #ruby
wald0 has quit [Read error: Connection reset by peer]
wald0 has joined #ruby
wald0 has quit [Read error: Connection reset by peer]
fphilipe_ has joined #ruby
xco has joined #ruby
markopasha has joined #ruby
sameerynho has quit [Ping timeout: 240 seconds]
xco has quit [Client Quit]
akemhp has quit [Ping timeout: 268 seconds]
wald0 has joined #ruby
Emmanuel_Chanel has joined #ruby
wald0 has quit [Read error: Connection reset by peer]
akemhp has joined #ruby
fphilipe_ has quit [Ping timeout: 272 seconds]
xco has joined #ruby
mwlang has joined #ruby
wald0 has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
phaul has quit [Ping timeout: 260 seconds]
wald0 has quit [Read error: Connection reset by peer]
wald0 has joined #ruby
wald0 has quit [Read error: Connection reset by peer]
mossplix_ has quit [Remote host closed the connection]
wald0 has joined #ruby
mossplix has joined #ruby
infinityfye has joined #ruby
anveo has joined #ruby
wald0 has quit [Read error: Connection reset by peer]
wald0 has joined #ruby
wald0 has quit [Read error: Connection reset by peer]
wald0 has joined #ruby
conta1 has joined #ruby
Ai9zO5AP has quit [Ping timeout: 272 seconds]
chihhsin_ has quit [Ping timeout: 258 seconds]
wald0 has quit [Read error: Connection reset by peer]
chihhsin has joined #ruby
wald0 has joined #ruby
xco has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
wald0 has quit [Read error: Connection reset by peer]
wald0 has joined #ruby
ellcs has quit [Ping timeout: 245 seconds]
phaul has joined #ruby
conta1 has quit [Ping timeout: 258 seconds]
xco has joined #ruby
wald0 has quit [Read error: Connection reset by peer]
wald0 has joined #ruby
greengriminal has quit [Quit: This computer has gone to sleep]
bsdband16 has quit [Ping timeout: 260 seconds]
bsdbandit-01 has joined #ruby
fig-le-deunch has joined #ruby
sgen has joined #ruby
Ai9zO5AP has joined #ruby
mwlang has quit [Quit: mwlang]
pwnd_nsfw` has joined #ruby
pwnd_nsfw has quit [Ping timeout: 260 seconds]
andikr has quit [Remote host closed the connection]
Pillus has quit []
Pillus has joined #ruby
fig-le-deunch has quit [Quit: Konversation terminated!]
jenrzzz has joined #ruby
TCZ has joined #ruby
william1 has quit [Ping timeout: 265 seconds]
jenrzzz has quit [Ping timeout: 272 seconds]
alexherbo2 has joined #ruby
alex`` has joined #ruby
bsdband62 has joined #ruby
bsdbandit-01 has quit [Ping timeout: 258 seconds]
tau has joined #ruby
mossplix has quit [Read error: Connection reset by peer]
mossplix has joined #ruby
wald0 has quit [Read error: Connection reset by peer]
wald0 has joined #ruby
al2o3-cr has quit [Ping timeout: 256 seconds]
al2o3-cr has joined #ruby
hahuang65 has quit []
hahuang65 has joined #ruby
mwlang has joined #ruby
bsdbandit-01 has joined #ruby
bsdband62 has quit [Ping timeout: 272 seconds]
gnufr33d0m has quit [Quit: gnufr33d0m]
greenhat has joined #ruby
iamdevnul has quit []
wald0 has quit [Read error: Connection reset by peer]
iamdevnul has joined #ruby
wald0 has joined #ruby
s3bi has joined #ruby
lucasb has joined #ruby
fphilipe_ has joined #ruby
william1 has joined #ruby
schne1der has quit [Ping timeout: 265 seconds]
greenhat has quit [Ping timeout: 260 seconds]
yokel has quit [Ping timeout: 260 seconds]
markopasha has quit [Remote host closed the connection]
wald0 has quit [Read error: Connection reset by peer]
wald0 has joined #ruby
yokel has joined #ruby
markopasha has joined #ruby
wald0 has quit [Read error: Connection reset by peer]
jetpack_joe has quit []
jetpack_joe has joined #ruby
mwlang has quit [Quit: mwlang]
wald0 has joined #ruby
chalkmonster has quit [Quit: WeeChat 2.7]
conta1 has joined #ruby
wald0 has quit [Read error: Connection reset by peer]
wald0 has joined #ruby
Xiti` has joined #ruby
Xiti has quit [Ping timeout: 268 seconds]
wald0 has quit [Read error: Connection reset by peer]
wald0 has joined #ruby
wald0 has quit [Read error: Connection reset by peer]
s3bi has quit [Remote host closed the connection]
fphilipe_ has quit [Ping timeout: 260 seconds]
wald0 has joined #ruby
vondruch_ has joined #ruby
wald0 has quit [Client Quit]
vondruch has quit [Ping timeout: 260 seconds]
vondruch_ is now known as vondruch
schne1der has joined #ruby
conta1 has quit [Ping timeout: 265 seconds]
chalkmonster has joined #ruby
mossplix has quit [Remote host closed the connection]
mossplix has joined #ruby
xco has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
xco has joined #ruby
SeepingN has joined #ruby
greengriminal has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
infinityfye has quit [Ping timeout: 260 seconds]
rahult has joined #ruby
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
TCZ has quit [Quit: Bye Bye]
tvw has quit []
xco has joined #ruby
xco has quit [Client Quit]
mossplix has quit [Remote host closed the connection]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
gitter1234 has joined #ruby
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
<gitter1234>
Howdy peeps! Working on my first blog here and am stuck at editing comments; when I click the Edit link for say the third or fourth comment, the body text on the page is always from the first comment. Any chance anybody here has time to have a look? https://gist.github.com/1234dev/8f5f9e470bd2f0b2dbad840d1e879e5b
xco has joined #ruby
xco has quit [Client Quit]
mossplix has joined #ruby
xco has joined #ruby
xco has quit [Client Quit]
emilych has quit [Remote host closed the connection]
xco has joined #ruby
xco has quit [Client Quit]
<gitter1234>
nevermind i think i solved it.. faulty controller code
xco has joined #ruby
xco has quit [Client Quit]
tau has quit [Remote host closed the connection]
xco has joined #ruby
<adam12>
gitter1234: You're @comment = Comment.find(params[:post_id]) is likely wrong.
xco has quit [Client Quit]
<gitter1234>
adam12: lol daamn you're good!
xco has joined #ruby
xco has quit [Client Quit]
<adam12>
gitter1234: You'd want to specify that you're looking for post_id on comments. Comment.find(post_id: params[:post_id]) or Comment.where(post_id: params[:post_id]).first .. I haven't used Rails in 2 years so I can't remember :)
<gitter1234>
yeah i just changed it to @comment = @post.comments.find(params[:id]) and now the correct comment appears in the edit page
<adam12>
gitter1234: That looks OK to, if you uncommented the code.
xco has joined #ruby
xco has quit [Client Quit]
<adam12>
gitter1234: Basically Rails boilerplate. Have you used the rails scaffold before? Looks close.
<gitter1234>
yep i just used scaffold for posts :D i copied a whole lot over to the comments..
xco has joined #ruby
xco has quit [Client Quit]
<gitter1234>
uncommenting the code unfortunately gives me: undefined local variable or method `comments_params' for #<CommentsController:0x000004e1f86531f8> Did you mean? comment_params undefined local variable or method `comments_params' for #<CommentsController:0x000004e1f86531f8> Did you mean? comment_params
<gitter1234>
sorry the double paste there
xco has joined #ruby
xco has quit [Client Quit]
<gitter1234>
err.. its comment_params not comments_param
xco has joined #ruby
xco has quit [Client Quit]
<ljarvis>
c
<ljarvis>
oops
xco has joined #ruby
<gitter1234>
yes!!! wooohooo!! :D :D
xco has quit [Client Quit]
<gitter1234>
thanks for being there for me adam12 .. and certifying my code :)
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
ttoocs has quit [Ping timeout: 258 seconds]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
markopasha has quit [Remote host closed the connection]
rahult has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sgen has quit [Ping timeout: 260 seconds]
xco has joined #ruby
xco has quit [Client Quit]
chalkmonster has joined #ruby
mossplix has quit [Remote host closed the connection]
xco has joined #ruby
xco has quit [Client Quit]
duderonomy has joined #ruby
xco has joined #ruby
xco has quit [Client Quit]
fphilipe_ has joined #ruby
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
troulouliou_dev has joined #ruby
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
ellcs has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
brool has joined #ruby
fphilipe_ has quit [Ping timeout: 272 seconds]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
fig-le-deunch has joined #ruby
jmcgnh has quit [Read error: Connection reset by peer]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
jmcgnh has joined #ruby
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
zlogan has quit [Ping timeout: 272 seconds]
xco has joined #ruby
mossplix has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
xco has joined #ruby
xco has quit [Client Quit]
BrianWGray has joined #ruby
xco has joined #ruby
xco has quit [Client Quit]
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jaequery has quit [Remote host closed the connection]
mossplix has quit [Ping timeout: 265 seconds]
integral has quit []
integral has joined #ruby
davor has quit [Quit: Bye]
DaRock has quit [Ping timeout: 258 seconds]
orbyt_ has joined #ruby
bsdband98 has joined #ruby
davor has joined #ruby
bsdbandit-01 has quit [Ping timeout: 272 seconds]
Fraeon has quit [Ping timeout: 265 seconds]
Fraeon has joined #ruby
teardown has quit [Ping timeout: 265 seconds]
anveo has quit [Ping timeout: 265 seconds]
phaul has quit [Ping timeout: 268 seconds]
teardown has joined #ruby
mossplix_ has quit [Remote host closed the connection]
davor has quit [Quit: Bye]
davor has joined #ruby
davor has quit [Client Quit]
davor has joined #ruby
<TheBrayn>
I'm using ruby 2.5 on Debian 10 (in Docker) and have a private gem repository which has a certificate signed by an internal CA. I added the certificate to the system but somehow bundler does not pick it up. Is there anything else I need to know/do?
darkf has quit [Remote host closed the connection]
howdoi has quit [Quit: Connection closed for inactivity]
chihhsin has quit [Ping timeout: 268 seconds]
Swyper has joined #ruby
chihhsin has joined #ruby
greengriminal has quit [Quit: Leaving]
bsdbandit-01 has joined #ruby
bsdband54 has quit [Ping timeout: 240 seconds]
Swyper has quit [Remote host closed the connection]
Swyper has joined #ruby
Swyper has quit [Read error: Connection reset by peer]
Swyper_ has joined #ruby
NODE has quit [Quit: changing servers]
s2013 has joined #ruby
NODE has joined #ruby
_phaul is now known as phaul
jerme_ has joined #ruby
markopasha has joined #ruby
<phaul>
william1: I don't know how much it matches your needs but I'm at smartpension. There are a few contractors, but I don't beleive we do full remote. But I'm happy to do refferal, and or recommend you to HR.. We are still growing in a rapid pace, I think 8 new joiners next week?
<s2013>
hi if i have an array of array and the items are in order.. i want to find pattern that is most common across. what would be the best way to approach it
<william1>
That's my latest CV
<s2013>
so.. [['a', 'b', 'c'], ['b', 'c', 'd'], ['b', 'c','a']] < in this case the 2 most common would be 'b', 'c'
<william1>
Thanks phaul
<phaul>
okay I do some diggin tomorrow how to go about this, and what exact positions we have open
<william1>
Thanks
<s2013>
anyone?
cthulchu_ has joined #ruby
<phaul>
s2013: is [['a', 'a'
fphilipe_ has quit [Ping timeout: 258 seconds]
shirak has joined #ruby
<phaul>
']] allowed?
<s2013>
no
thebananaking has quit [Quit: Connection closed for inactivity]
<s2013>
basically we have data of products people looked at in certain order. so we want to find the most common 3 product pattern for example
<havenwood>
s2013: It's the first positional block argument new syntax in 2.7.
<s2013>
oh ok
<s2013>
gotcha
<s2013>
cause i enver saw that before
solars has quit [Quit: Connection closed for inactivity]
entel has quit [Quit: Connection closed for inactivity]
lucasb has quit [Quit: Connection closed for inactivity]
<havenwood>
I like #tally particularly since David Jones came up with the name while we were camping at Rails Camp. I keep trying to get folk to propose names, he did, and this one stuck. :)
<havenwood>
baweaver and whathappens were there too :)
reber has joined #ruby
<havenwood>
PS - Rails Camp is great! If you're a Rubyist and miss summer camp, go to one!
<havenwood>
a member of my team, bobbilee runs Rails Camp West. i wish I could go to the one near Portland this summer: https://west.railscamp.us/