Skip to content

Instantly share code, notes, and snippets.

@spastorino
Created August 3, 2011 12:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spastorino/93866fc6403d40d67d0d to your computer and use it in GitHub Desktop.
Save spastorino/93866fc6403d40d67d0d to your computer and use it in GitHub Desktop.
sass-rails.patch
diff --git a/Gemfile b/Gemfile
index 43fca60..85ca839 100644
--- a/Gemfile
+++ b/Gemfile
@@ -3,9 +3,10 @@ source "http://rubygems.org"
# Specify your gem's dependencies in sass-rails.gemspec
gemspec
-gem "rails", :git => "git://github.com/rails/rails.git", :branch => "3-1-stable"
+gem "rails", :path => '/Users/santiago/WyeWorks/Projs/rails'
gem "sfl", "~> 2.0"
-gem "sprockets"
+gem "sprockets", :path => '/Users/santiago/WyeWorks/Projs/sprockets'
+gem "sass", :path => '/Users/santiago/WyeWorks/Projs/sass'
gem "mocha"
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
diff --git a/test/test_helper.rb b/test/test_helper.rb
index f50db2b..e946889 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -17,12 +17,12 @@ $gem_locations = {
}
# Uncomment this if you need to test against a local rails checkout
-# $gem_locations["rails"] = "/Users/chris/Projects/rails"
+$gem_locations["rails"] = "/Users/santiago/WyeWorks/Projs/rails"
# Uncomment this if you need to test against a local sass checkout
-# $gem_locations["sass"] = "/Users/chris/Projects/sass"
+$gem_locations["sass"] = "/Users/santiago/WyeWorks/Projs/sass"
# Uncomment this if you need to test against a local sprockets checkout
-# $gem_locations["sprockets"] = "/Users/chris/Projects/sprockets"
+$gem_locations["sprockets"] = "/Users/santiago/WyeWorks/Projs/sprockets"
# Load support files
-Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
\ No newline at end of file
+Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment