-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow optional params #7
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
d6005c0
Allow optional params
nickjs 9eee70a
Allow null params in sass functions and default params in ruby
nickjs bde2b94
Set default task to run tests
811ee79
Partial cleanup and error catching of custom Sass function calls
c21ccfd
Adds error handling for exceptions in custom functions
1f4c9b9
Rakefile fixups for easy Gem install + testing
4b4d324
Report when a Sass type used in a function is unsupported
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,3 @@ | ||
require_relative '../lib/tasks/libsass' | ||
|
||
task default: 'libsass:compile' |
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
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
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 |
---|---|---|
|
@@ -19,6 +19,7 @@ module Native | |
|
||
# ADDAPI enum Sass_Tag ADDCALL sass_value_get_tag (const union Sass_Value* v); | ||
attach_function :sass_value_get_tag, [:sass_value_ptr], SassTag | ||
attach_function :sass_value_is_null, [:sass_value_ptr], :bool | ||
|
||
# ADDAPI const char* ADDCALL sass_string_get_value (const union Sass_Value* v); | ||
attach_function :sass_string_get_value, [:sass_value_ptr], :string | ||
|
@@ -28,6 +29,11 @@ module Native | |
attach_function :sass_list_get_length, [:sass_value_ptr], :size_t | ||
attach_function :sass_list_get_value, [:sass_value_ptr, :size_t], :sass_value_ptr | ||
|
||
# ADDAPI char* ADDCALL sass_error_get_message (const union Sass_Value* v); | ||
# ADDAPI void ADDCALL sass_error_set_message (union Sass_Value* v, char* msg); | ||
attach_function :sass_error_get_message, [:sass_value_ptr], :string | ||
attach_function :sass_error_set_message, [:sass_value_ptr, :pointer], :void | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤘 |
||
|
||
# Getters for custom function descriptors | ||
# ADDAPI const char* ADDCALL sass_function_get_signature (Sass_C_Function_Callback fn); | ||
# ADDAPI Sass_C_Function ADDCALL sass_function_get_function (Sass_C_Function_Callback fn); | ||
|
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
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
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
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,21 @@ | ||
namespace :libsass do | ||
desc "Compile libsass" | ||
task compile: "ext/libsass/lib/libsass.so" | ||
|
||
file "ext/libsass/.git" do | ||
sh "git submodule update --init" | ||
end | ||
|
||
file "ext/libsass/lib/libsass.so" => "ext/libsass/.git" do | ||
libsass_path = "" | ||
if Dir.pwd.end_with?('/ext') | ||
libsass_path = "libsass" | ||
else | ||
libsass_path = "ext/libsass" | ||
end | ||
|
||
cd libsass_path do | ||
sh 'make lib/libsass.so LDFLAGS="-Wall -O2"' | ||
end | ||
end | ||
end |
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we want to add an
else
here that raises something likeNotImplemented
for now?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For values that aren’t a
:sass_string
? Yeah, that’s a good idea.I also kinda want to just implement the rest 😄
It looks like the type classes like
SassC:Script:String
look just like theirSass
versions, but with an added#to_native
and a couple other tweaks.How would you feel about temporarily requiring the Sass counterparts like https://github.com/sass/sass/blob/stable/lib/sass/script/value/string.rb and inheriting + extending/overriding those classes? Then we wouldn’t fall behind as Sass grows / our copy-pasted version stays static.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's unfortunate to have the sass dependency long term, but right at the moment, sassc-rails requires sass too (because sprockets requires sass). I suppose that would be a good solution for the present.
I can't exactly remember, but i think I may have had to tweak the String value class (i.e. it might not be exactly the same as it is in sass).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Purely for informational purposes, and not to add an opinion or bias one way or the other, we did a diff. The only things that you seem to have changed are:
super
call from the constructorself.type
andself.unquote
class methods#to_native
#plus
,#to_sass
, and#inspect
. Or maybe those just didn't exist yet?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aside from that, both keeping
sass
as a dependency and copy/pasting theSass::Script
counterparts feel equally dirty to me :(There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bolandrm Since hooking into libsass’ own error handling stuff is a little too tricky for me at the moment, I’ve added some code that upon error, spits out a Sass syntax error and also logs to
$stderr
.