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.
@@ -3,7 +3,7 @@ Compass::Frameworks.register("sassy-math", :path => "#{File.dirname(__FILE__)}/.
3
3
 
4
4
  module SassyMath
5
5
 
6
- VERSION = "0.1.0"
6
+ VERSION = "0.1.1"
7
7
  DATE = "2012-01-19"
8
8
 
9
9
  end
@@ -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.0"
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{0.1.0}
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
@@ -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
+ }
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Sam Richard