Updated gitignore

Conflicts:

	.gitignore
This commit is contained in:
B Mathis 2010-11-13 17:24:35 -06:00 committed by Chris Eppstein
parent 6204491f3d
commit b3bd71082c
2 changed files with 14 additions and 22 deletions

2
.gitignore vendored
View File

@ -18,9 +18,11 @@ test/fixtures/stylesheets/*/sass/.sass-cache
pkg/*
compass-*.gem
coverage*
bin/*
docs
doc-src/tmp
doc-src/.bundle
.bundle
attic
.rvmrc
devbin

View File

@ -1,26 +1,16 @@
#!/usr/bin/env ruby
# The compass command line utility
#
# This file was generated by Bundler.
#
# The application 'compass' is installed as part of a gem, and
# this file is here to facilitate running it.
#
# This allows compass to run easily from a git checkout without install.
def fallback_load_path(path)
retried = false
begin
yield
rescue LoadError
unless retried
$: << path
retried = true
retry
end
raise
end
end
require 'pathname'
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
Pathname.new(__FILE__).realpath)
fallback_load_path(File.join(File.dirname(__FILE__), '..', 'lib')) do
require 'compass'
require 'compass/exec'
end
require 'rubygems'
require 'bundler/setup'
command_line_class = Compass::Exec::Helpers.select_appropriate_command_line_ui(ARGV)
exit command_line_class.new(ARGV).run!
load Gem.bin_path('compass', 'compass')