huoxito has joined #rubygems
dvu has joined #rubygems
huoxito has quit [Ping timeout: 245 seconds]
tcopeland has joined #rubygems
dvu has quit [Remote host closed the connection]
huoxito has joined #rubygems
huoxito has quit [Read error: Connection reset by peer]
huoxito has joined #rubygems
swills has quit [Read error: Connection reset by peer]
swills has joined #rubygems
swills has quit [Changing host]
swills has joined #rubygems
imperator has joined #rubygems
dbussink has quit [Ping timeout: 260 seconds]
dbussink has joined #rubygems
luislavena has quit []
wm3|away has quit [Ping timeout: 258 seconds]
djbkd has quit [Quit: My people need me...]
postmodern has joined #rubygems
<
postmodern>
who are the other rubygems maintainers? I have a pull request that's stuck and need feedback to move forward
<
imperator>
which pull request?
<
imperator>
the GEM_VERSION thing i presume
imperator has quit [Quit: Valete!]
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<
postmodern>
correct, GEM_VERSION one
<
postmodern>
need to add documentation to it, but not sure what to say or where to add it
<
postmodern>
and how to say it :P
huoxito has quit [Ping timeout: 256 seconds]
huoxito has joined #rubygems
huoxito has quit [Ping timeout: 264 seconds]
dvu has joined #rubygems
dvu has quit [Remote host closed the connection]
lsegal has joined #rubygems
havenwood has quit [Remote host closed the connection]
havenwood has joined #rubygems
x1337807x has joined #rubygems
lsegal has quit [Read error: Connection reset by peer]
lsegal has joined #rubygems
tenderlove has quit [Remote host closed the connection]
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
morphis has quit [Excess Flood]
morphis has joined #rubygems
nrsk has joined #rubygems
tenderlove has joined #rubygems
nrsk has quit [Ping timeout: 256 seconds]
lsegal has quit [Read error: Connection reset by peer]
lsegal has joined #rubygems
tenderlove has quit [Ping timeout: 244 seconds]
nrsk has joined #rubygems
havenwood has quit [Remote host closed the connection]
dangerousdave has joined #rubygems
siruf has quit [Ping timeout: 272 seconds]
siruf has joined #rubygems
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dangerousdave has joined #rubygems
dgheath21 has joined #rubygems
dgheath21 has quit [Client Quit]
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tenderlove has joined #rubygems
tenderlove has quit [Ping timeout: 258 seconds]
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
dgheath21 has joined #rubygems
dgheath21 has quit [Ping timeout: 250 seconds]
dangerousdave has joined #rubygems
tbuehlmann has joined #rubygems
workmad3 has joined #rubygems
nrsk has quit [Ping timeout: 256 seconds]
postmodern has quit [Quit: Leaving]
nrsk has joined #rubygems
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bbrowning has joined #rubygems
dangerousdave has joined #rubygems
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dangerousdave has joined #rubygems
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dangerousdave has joined #rubygems
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dangerousdave has joined #rubygems
dwknoxy has joined #rubygems
tbuehlmann has quit [Remote host closed the connection]
dangerousdave has quit [Read error: Connection reset by peer]
tenderlove has joined #rubygems
tbuehlmann has joined #rubygems
tenderlove has quit [Ping timeout: 272 seconds]
imperator has joined #rubygems
mkristian has joined #rubygems
tenderlove has joined #rubygems
dgheath21 has joined #rubygems
tbuehlmann has quit [Remote host closed the connection]
silverdust has joined #rubygems
<
silverdust>
Is there a diff between gem and rubygems?
havenwood has joined #rubygems
<
Rennex>
silverdust: yes, gem is the command, rubygems is the system
eric__ has joined #rubygems
mkristian has quit [Ping timeout: 255 seconds]
<
silverdust>
ok thanks Rennex. I have a problem
<
silverdust>
I just started using rails
<
silverdust>
each time I start 'rails server'
<
silverdust>
It says you're using and outdated version of rubygems (1.8.3), upgrade to at least 2.1.0
<
silverdust>
but when I do 'gem -v'. I see I have 2.4.2
<
silverdust>
I recently upgraded my gem with gem update --system
<
jhass>
silverdust: compare the first line of gem and rails
<
jhass>
the executable files that is
<
silverdust>
like vim /usr/bin/rails ?
<
silverdust>
jhass: can I paste on pastebin
<
jhass>
like head -n 1 /usr/bin/rails
<
silverdust>
oh rails has this #!/usr/bin/ruby1.9.1
<
silverdust>
I could just change that right
mkristian has joined #rubygems
<
jhass>
gem pristine --only-executables rails
<
jhass>
maybe add a --env-shebang
<
silverdust>
I have ruby2.1.2 installed
<
silverdust>
to the shebang line in rails?
<
silverdust>
or I should just change to #!/usr/bin/env rails ?
<
jhass>
did you try the command?
<
silverdust>
gem pristine --only-executables? yes it gave an error
<
silverdust>
ERROR: While executing gem ... (Gem::Exception
<
silverdust>
Failed to find gems ["rails"] >= 0
<
jhass>
gem install rails and then again
<
jhass>
or maybe it'll update the executable already, I don't remember
<
silverdust>
oh I didn't mention. Rails is not in my gem list
<
silverdust>
I can't remember how I installed it
<
silverdust>
It's been a while
<
jhass>
yes, it's apparently only installed for the older ruby and not under your new one
<
jhass>
just gem install it again
<
silverdust>
you think it'll just override the existing
<
silverdust>
coz I've been seeking ways to remove the existing first
<
jhass>
the binary maybe, but not the entire install, no
<
jhass>
you probably have a gem1.9.1 or so with which you can gem uninstall it
<
silverdust>
ok I'll check that
<
silverdust>
yea it was in my gem1.9.3 list
<
silverdust>
what does it mean when a file is restored to pristine codition?
<
jhass>
it's made sure that it is the way it is in the .gem archive
<
jhass>
basically a reinstall
<
silverdust>
ok ++thanks to you
x1337807x has joined #rubygems
x1337807x has quit [Ping timeout: 258 seconds]
djbkd has joined #rubygems
x1337807x has joined #rubygems
mkristian has quit [Quit: bye]
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
tbuehlmann has joined #rubygems
hakunin has joined #rubygems
x1337807x has joined #rubygems
dwknoxy is now known as dknox
workmad3 has quit [Ping timeout: 245 seconds]
bbrowning is now known as bbrowning_away
dvu has joined #rubygems
dgheath21 has quit [Quit: dgheath21]
dvu has quit [Remote host closed the connection]
huoxito has joined #rubygems
djbkd has quit [Remote host closed the connection]
eric__ has quit [Quit: Connection closed for inactivity]
dvu has joined #rubygems
bbrowning_away is now known as bbrowning
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
x1337807x has joined #rubygems
x1337807x has quit [Client Quit]
x1337807x has joined #rubygems
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #rubygems
dvu has quit [Remote host closed the connection]
workmad3 has joined #rubygems
workmad3 has quit [Ping timeout: 244 seconds]
djbkd has joined #rubygems
djbkd has quit [Remote host closed the connection]
djbkd has joined #rubygems
dvu has joined #rubygems
dvu has quit [Ping timeout: 258 seconds]
dvu has joined #rubygems
bbrowning is now known as bbrowning_away
imperator has quit [Quit: Valete!]
havenwood has quit [Remote host closed the connection]
brixen has quit [Excess Flood]
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
x1337807x has joined #rubygems
brixen has joined #rubygems
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
dvu has quit [Remote host closed the connection]
djbkd has quit [Remote host closed the connection]
dvu has joined #rubygems
tbuehlmann has quit [Remote host closed the connection]
workmad3 has joined #rubygems
x1337807x has joined #rubygems
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]