sass-extras 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 719d0545c810b7519794db7fa12331a38b46108d
4
- data.tar.gz: 462bec5179bfb44903b67c31a41fa26208f48724
3
+ metadata.gz: 2d3d351b6112cc349147a578edaeae7e0d333051
4
+ data.tar.gz: 00396c11db0ad90bbac608934d7fd673253c5548
5
5
  SHA512:
6
- metadata.gz: 3729380f31ac9019f14a73e4a9e20411291ab5b3062a081516912d13ef3551d5dd19a95f8b39538ec3fb6c54152b47d2dac005183dd587d8315330fc1c04dae0
7
- data.tar.gz: 2f40576b545690d9ff72a83d94897008bc9ab1f2432460c83a110cf1fc3de8ed6a6d710929918ffef47cf8654d612a554cf3ef90e1529ab5b3758f1d4616a039
6
+ metadata.gz: 5ed28ac04dcfc39cf2e4c9b26eec33abae2ba48145b1de6383a87db12dcae72c2aa43439c5eb58494babd5745463e1b6099387ab40141ac9f212d701f2086565
7
+ data.tar.gz: 12d2bac01f5ad313f2c8c69389ef1d3b8747d8515ee374a14b7267d0a30ad676880526ba59815e2984f252501f71c26b66497025100a323469d884f8abcfaa1a
data/.travis.yml CHANGED
@@ -1,7 +1,8 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.1.0
3
+ - "2.2"
4
+ - "2.1"
4
5
  - 2.0.0
5
6
  - 1.9.3
6
7
  - jruby-19mode
7
- - rbx-2.2.4
8
+ - rbx
@@ -1,5 +1,5 @@
1
1
  module Sass
2
2
  module Extras
3
- VERSION = "1.0.1"
3
+ VERSION = "1.0.2"
4
4
  end
5
5
  end
data/lib/sass/extras.rb CHANGED
@@ -4,20 +4,15 @@ require "sass/extras/contrast"
4
4
  require "sass/extras/inline_color_image"
5
5
  require "sass/extras/svg_data_urls"
6
6
  require "sass/extras/yuv"
7
- require "sass/script"
8
7
 
9
- module Sass
10
- module Script
11
- class Color
12
- include Sass::Extras::Contrast::Color
13
- include Sass::Extras::YUV::Color
14
- end
8
+ Sass::Script::Color.class_eval do
9
+ include Sass::Extras::Contrast::Color
10
+ include Sass::Extras::YUV::Color
11
+ end
15
12
 
16
- module Functions
17
- include Sass::Extras::Contrast::Functions
18
- include Sass::Extras::InlineColorImage
19
- include Sass::Extras::SvgDataUrls
20
- include Sass::Extras::YUV::Functions
21
- end
22
- end
13
+ Sass::Script::Functions.module_eval do
14
+ include Sass::Extras::Contrast::Functions
15
+ include Sass::Extras::InlineColorImage
16
+ include Sass::Extras::SvgDataUrls
17
+ include Sass::Extras::YUV::Functions
23
18
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-extras
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Haagen Michaelsen