compass-blend-modes 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +2 -0
- data/LICENSE +22 -0
- data/README.md +115 -0
- data/compass-blend-modes.gemspec +23 -0
- data/example/config.rb +25 -0
- data/example/i/colorblend.png +0 -0
- data/example/i/colorburn.png +0 -0
- data/example/i/colordodge.png +0 -0
- data/example/i/darken.png +0 -0
- data/example/i/difference.png +0 -0
- data/example/i/dissolve.png +0 -0
- data/example/i/divide.png +0 -0
- data/example/i/exclusion.png +0 -0
- data/example/i/hardlight.png +0 -0
- data/example/i/hardmix.png +0 -0
- data/example/i/hue.png +0 -0
- data/example/i/lighten.png +0 -0
- data/example/i/linearburn.png +0 -0
- data/example/i/lineardodge.png +0 -0
- data/example/i/linearlight.png +0 -0
- data/example/i/luminosity.png +0 -0
- data/example/i/multiply.png +0 -0
- data/example/i/normal.png +0 -0
- data/example/i/overlay.png +0 -0
- data/example/i/pinlight.png +0 -0
- data/example/i/saturation.png +0 -0
- data/example/i/screen.png +0 -0
- data/example/i/softlight.png +0 -0
- data/example/i/subtract.png +0 -0
- data/example/i/vividlight.png +0 -0
- data/example/index.html +74 -0
- data/example/js/blend-modes.js +459 -0
- data/example/scss/styles.scss +39 -0
- data/lib/compass-blend-modes.rb +2 -0
- data/lib/compass/blend-modes.rb +7 -0
- data/lib/compass/blend-modes/version.rb +5 -0
- data/stylesheets/_blend-modes.scss +528 -0
- data/templates/project/manifest.rb +2 -0
- data/templates/project/screen.scss +11 -0
- metadata +97 -0
metadata
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: compass-blend-modes
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Grady Kuhnline
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-03-23 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: compass
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
description: Using standard color blending functions in Sass.
|
28
|
+
email:
|
29
|
+
- github@heygrady.net
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- .gitignore
|
35
|
+
- LICENSE
|
36
|
+
- README.md
|
37
|
+
- compass-blend-modes.gemspec
|
38
|
+
- example/config.rb
|
39
|
+
- example/i/colorblend.png
|
40
|
+
- example/i/colorburn.png
|
41
|
+
- example/i/colordodge.png
|
42
|
+
- example/i/darken.png
|
43
|
+
- example/i/difference.png
|
44
|
+
- example/i/dissolve.png
|
45
|
+
- example/i/divide.png
|
46
|
+
- example/i/exclusion.png
|
47
|
+
- example/i/hardlight.png
|
48
|
+
- example/i/hardmix.png
|
49
|
+
- example/i/hue.png
|
50
|
+
- example/i/lighten.png
|
51
|
+
- example/i/linearburn.png
|
52
|
+
- example/i/lineardodge.png
|
53
|
+
- example/i/linearlight.png
|
54
|
+
- example/i/luminosity.png
|
55
|
+
- example/i/multiply.png
|
56
|
+
- example/i/normal.png
|
57
|
+
- example/i/overlay.png
|
58
|
+
- example/i/pinlight.png
|
59
|
+
- example/i/saturation.png
|
60
|
+
- example/i/screen.png
|
61
|
+
- example/i/softlight.png
|
62
|
+
- example/i/subtract.png
|
63
|
+
- example/i/vividlight.png
|
64
|
+
- example/index.html
|
65
|
+
- example/js/blend-modes.js
|
66
|
+
- example/scss/styles.scss
|
67
|
+
- lib/compass-blend-modes.rb
|
68
|
+
- lib/compass/blend-modes.rb
|
69
|
+
- lib/compass/blend-modes/version.rb
|
70
|
+
- stylesheets/_blend-modes.scss
|
71
|
+
- templates/project/manifest.rb
|
72
|
+
- templates/project/screen.scss
|
73
|
+
homepage: https://github.com/heygrady/scss-blend-modes
|
74
|
+
licenses:
|
75
|
+
- MIT
|
76
|
+
metadata: {}
|
77
|
+
post_install_message:
|
78
|
+
rdoc_options: []
|
79
|
+
require_paths:
|
80
|
+
- lib
|
81
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
83
|
+
- - '>='
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
86
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - '>='
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
requirements: []
|
92
|
+
rubyforge_project:
|
93
|
+
rubygems_version: 2.0.0
|
94
|
+
signing_key:
|
95
|
+
specification_version: 4
|
96
|
+
summary: Using standard color blending functions in Sass.
|
97
|
+
test_files: []
|