sassy-math 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/sassy-math.rb +1 -1
- data/sassy-math.gemspec +2 -2
- data/stylesheets/_math.scss +1 -17
- metadata +2 -2
data/lib/sassy-math.rb
CHANGED
data/sassy-math.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{sassy-math}
|
|
5
|
-
s.version = "0.1.
|
|
5
|
+
s.version = "0.1.1"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5")
|
|
8
8
|
s.authors = ["Sam Richard", "Mario Valencia", "Scott Kellum"]
|
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
|
|
|
18
18
|
s.homepage = %q{https://github.com/scottkellum/Sassy-math}
|
|
19
19
|
s.require_paths = ["lib"]
|
|
20
20
|
s.rubyforge_project = %q{sassy-math}
|
|
21
|
-
s.rubygems_version = %q{
|
|
21
|
+
s.rubygems_version = %q{1.3.6}
|
|
22
22
|
s.summary = %q{Use advanced mathematical functions in Compass.}
|
|
23
23
|
s.add_dependency(%q<compass>, ["~> 0.11"])
|
|
24
24
|
end
|
data/stylesheets/_math.scss
CHANGED
|
@@ -252,20 +252,4 @@ $iter: 50;
|
|
|
252
252
|
|
|
253
253
|
@function sqrt($number) {
|
|
254
254
|
@return n-root($number, 2);
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
//////////////////////////////
|
|
258
|
-
// Export Test
|
|
259
|
-
//////////////////////////////
|
|
260
|
-
.foo {
|
|
261
|
-
width: √(9);
|
|
262
|
-
width: √(9) * √(9);
|
|
263
|
-
width: deg-to-rad(90deg);
|
|
264
|
-
width: factorial(9);
|
|
265
|
-
-webkit-transform: rotate(rad-to-deg($pi / 2));
|
|
266
|
-
width: sin($pi / 4, 'rad');
|
|
267
|
-
width: sin(10deg);
|
|
268
|
-
width: cos($pi / 2, 'rad');
|
|
269
|
-
width: cos(10deg);
|
|
270
|
-
width: ln(.1);
|
|
271
|
-
}
|
|
255
|
+
}
|