Skip to content
This repository has been archived by the owner on Jun 26, 2018. It is now read-only.

Commit

Permalink
building with the new submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
Hampton Catlin committed Apr 22, 2012
1 parent b1e1da6 commit 0c5b74f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.bundle
src/Makefile
.DS_Store
tmp/
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
sassc (0.0.1)
sassc (0.1)
ffi
rake-compiler

Expand Down
13 changes: 3 additions & 10 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,9 @@
load 'sassc.gemspec'
require 'rake/extensiontask'

Rake::ExtensionTask.new do |ext|
ext.name = 'libsass' # indicate the name of the extension.
ext.ext_dir = 'src/' # search for 'hello_world' inside it.
ext.lib_dir = 'lib/sassc' # put binaries into this folder.
#ext.config_script = 'custom_extconf.rb' # use instead of the default 'extconf.rb'.
#ext.tmp_dir = 'tmp' # temporary folder used during compilation.
ext.source_pattern = "*.{c,cpp,hpp}" # monitor file changes to allow simple rebuild.
#ext.config_options << '--with-foo' # supply additional options to configure script.
ext.gem_spec = $gemspec # optionally indicate which gem specification
# will be used.
Rake::ExtensionTask.new('libsass') do |ext|
ext.lib_dir = 'lib/sassc'
ext.gem_spec = $gemspec
end

task :run do
Expand Down
14 changes: 10 additions & 4 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,21 @@ SassRuby

Written by Hampton Catlin

*THIS IS NOT THE ORIGINAL RUBY VERSION OF SASS*

About
-----

Libsass is a C/C++ port of the Sass CSS precompiler. The original version was written in Ruby, but this version is meant for efficiency and portability.

This library strives to be light, simple, and easy to build and integrate with a variety of platforms and languages.
This is a Ruby wrapper around the libsass project. The goal
of this project is to provide an act-alike to the original Sass
project. Where "alias SassC Sass" would provide a drop-in
replacement. This is an ambitious goal, but hopefully we can
attain it.


Contribution Agreement
----------------------

Any contribution to the project are seen as copyright assigned to Hampton Catlin. Your contribution warrants that you have the right to assign copyright on your work. This is to ensure that the project remains free and open -- similar to the Apache Foundation.
Any contributions made to the project are seen as copyright assigned to Hampton Catlin. Your contribution warrants that you have the right to assign copyright on your work. This is to ensure that the project remains free and open -- similar to the Apache Foundation.


0 comments on commit 0c5b74f

Please sign in to comment.