Commit c26e95ec by Hampton Catlin

Last checkin before flight… getting the bundle file to build...

parent c8ef9e80
......@@ -7,3 +7,4 @@ build/*
*.a
a.out
bin/*
*.gem
\ No newline at end of file
source 'https://rubygems.org'
# Specify your gem's dependencies in sassc.gemspec
gemspec 'sassc'
gemspec
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!
#!/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
\ No newline at end of file
#define SASS_CONTEXT_INCLUDED
#include <utility>
#include <map>
#include "functions.hpp"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment