Re: [SDRuby] Python?

2011-07-30 Thread Patrick Crowley
Former Rubyist Zed Shaw wrote an interesting book on Python. Learn Python The Hard Way: http://learnpythonthehardway.org ... and it's only $3 in PDF form. -- Patrick -- SD Ruby mailing list sdruby@googlegroups.com http://groups.google.com/group/sdruby

Re: [SDRuby] Python?

2011-07-30 Thread Kevin Clark
The Python Essential Reference by David Beazley is quite good, fairly complete, and covers the differences between 2 and 3. The first couple hundred pages are a tutorial that I felt gave me my sea legs, and then there's a good deal of topic based reference material. Vaguely reminiscent of the

[SDRuby] Rails install is broken ?

2011-07-30 Thread jvictor
I am trying to setup and run rails on my mac (10.6) following the instructions at rubyonrails.org, but when i try to start the server it fails complaining about some broken sqlite3 gem ? Has anyone else seen this happen ? jvictors-MacBook-Pro:hellorails jvictor$ rails server Could not find gem

Re: [SDRuby] Rails install is broken ?

2011-07-30 Thread John Lynch
Juby, do yourself a favor, and install RVM https://rvm.beginrescueend.com/ You would then do something like $ rvm install 1.8.7 $ rvm use 1.8.7 $ gem install bundler $ bundle install This will provide you with a Ruby install completely separate from Apple's, and it makes it real easy to try out