forked from sass/libsass
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Last checkin before flight… getting the bundle file to build...
- Loading branch information
Hampton Catlin
committed
Apr 21, 2012
1 parent
c8ef9e8
commit c26e95e
Showing
7 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ build/* | |
*.a | ||
a.out | ||
bin/* | ||
*.gem |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
source 'https://rubygems.org' | ||
|
||
# Specify your gem's dependencies in sassc.gemspec | ||
gemspec 'sassc' | ||
gemspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
sassc (0.0.1) | ||
ffi | ||
rake-compiler | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
ffi (1.0.11) | ||
rake (0.9.2.2) | ||
rake-compiler (0.8.1) | ||
rake | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
sassc! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,17 @@ | ||
#!/usr/bin/env rake | ||
require "bundler/gem_tasks" | ||
#require "bundler/gem_tasks" | ||
#Bundler.setup | ||
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. | ||
end |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#define SASS_CONTEXT_INCLUDED | ||
|
||
|
||
#include <utility> | ||
#include <map> | ||
#include "functions.hpp" | ||
|
Binary file not shown.