sass-media_query_combiner 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +10 -3
- data/lib/sass/media_query_combiner/version.rb +1 -1
- data/sass-media_query_combiner.gemspec +2 -0
- metadata +3 -3
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Sass::MediaQueryCombiner
|
2
2
|
|
3
|
-
Combines all matching media queries while compiling your Sass.
|
3
|
+
Combines all matching media queries while compiling your Sass.
|
4
4
|
|
5
5
|
If you're using
|
6
6
|
Rails 3.1+ or Sprockets, you should use [sprockets-media_query_combiner](https://github.com/aaronjensen/sprockets-media_query_combiner)
|
@@ -60,6 +60,8 @@ randomly throughout your file.
|
|
60
60
|
|
61
61
|
## Installation
|
62
62
|
|
63
|
+
Requires Ruby >= 1.9.2.
|
64
|
+
|
63
65
|
Add this line to your application's Gemfile:
|
64
66
|
|
65
67
|
gem 'sass-media_query_combiner'
|
@@ -74,8 +76,13 @@ Or install it yourself as:
|
|
74
76
|
|
75
77
|
## Usage
|
76
78
|
|
77
|
-
|
78
|
-
|
79
|
+
In your `config.rb`
|
80
|
+
|
81
|
+
```ruby
|
82
|
+
require 'sass-media_query_combiner'
|
83
|
+
```
|
84
|
+
|
85
|
+
If you're using `sass --watch` do:
|
79
86
|
|
80
87
|
```bash
|
81
88
|
sass --watch -r sass-media_query_combiner
|
@@ -17,6 +17,8 @@ Gem::Specification.new do |gem|
|
|
17
17
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
18
|
gem.require_paths = ["lib"]
|
19
19
|
|
20
|
+
gem.required_ruby_version = '>= 1.9.2'
|
21
|
+
|
20
22
|
gem.add_runtime_dependency "sass", "~>3.2.0"
|
21
23
|
|
22
24
|
gem.add_development_dependency "rspec"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sass-media_query_combiner
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-10-
|
12
|
+
date: 2012-10-26 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sass
|
@@ -71,7 +71,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
72
72
|
- - ! '>='
|
73
73
|
- !ruby/object:Gem::Version
|
74
|
-
version:
|
74
|
+
version: 1.9.2
|
75
75
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
76
76
|
none: false
|
77
77
|
requirements:
|