Annoyed by Ruby Gem 1.8.2 Notes about Deprecation?
Such as:
NOTE: Gem::Specification#default_executable= is deprecated with no replacement. It will be removed on or after 2011-10-01.
gem pristine --all --no-extensions
Andrew Colclough |
Web Design & Dev., Liberty, Economics, Football |
Such as:
NOTE: Gem::Specification#default_executable= is deprecated with no replacement. It will be removed on or after 2011-10-01.
gem pristine --all --no-extensions
I was trying to set up a plugin for Rails (v.3) called Restful Authentication and I was getting the following routing error:
class ApplicationController < ActionController::Base require File.join(Rails.root, 'lib', 'authenticated_system.rb') include AuthenticatedSystem end
require 'rubygems' require 'sinatra' get '/hi' do "Hello World!" end$ gem install sinatra $ ruby hi.rb == Sinatra has taken the stage ... >> Listening on 0.0.0.0:4567
Here's a super duper lightweight web application framework I am fooling around with - with the help of Noonat. ;)
I am currently testing this system out - and so far I have been totally blown away. I think Compass+Sass are a huge leap forward in the CSS arena. If you get the opportunity - watch this full video to get a good overview of some of the power that Compass and Sass could add to your web design/dev project.
Here are links to both Frameworks to get you started:
-Sass
-Compass
And as Samuel L. Jackson once said, "Hold on to your butts."
gem install --system
I ran into this issue the other day and the above code worked. You may or may not need to run "sudo gem update --system" of course if you get a permissions problem.
Also - if you need to get a little info about your installation and/or version of gems:
"gem env"