Codebase list compass-blend-modes-plugin / 1e9ce7b
fixing a few goofs with the new gem Grady Kuhnline 11 years ago
5 changed file(s) with 19 addition(s) and 19 deletion(s). Raw diff Collapse all Expand all
22 require "compass/blend-modes/version"
33
44 Gem::Specification.new do |s|
5 s.name = 'compass-blend-modes'
6 s.version = Compass::BlendModes::VERSION
7 s.platform = Gem::Platform::RUBY
8 s.summary = "Using standard color blending functions in Sass."
9 s.description = "Using standard color blending functions in Sass."
10 s.homepage = "https://github.com/heygrady/scss-blend-modes"
11 s.authors = ["Grady Kuhnline"]
12 s.email = ["github@heygrady.net"]
5 s.name = 'compass-blend-modes'
6 s.version = Compass::BlendModes::VERSION
7 s.platform = Gem::Platform::RUBY
8 s.summary = "Using standard color blending functions in Sass."
9 s.description = "Using standard color blending functions in Sass."
10 s.homepage = "https://github.com/heygrady/scss-blend-modes"
11 s.authors = ["Grady Kuhnline"]
12 s.email = ["github@heygrady.net"]
13 s.license = 'MIT'
1314
14 s.has_rdoc = false
15 s.has_rdoc = false
1516 s.files = `git ls-files`.split("\n")
1617 s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
1718 s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
00 # Require any additional compass plugins here.
1 require 'blend-modes'
1 require 'compass-blend-modes'
22
33 # Set this to the root of your project when deployed:
44 http_path = "/"
+0
-7
lib/compass/blend-modes/blend-modes.rb less more
0 require 'compass/blend-modes/version'
1
2 module Compass
3 module BlendModes
4 Compass::Frameworks.register('blend-modes', :path => "#{File.dirname(__FILE__)}/../..")
5 end
6 end
0 blend-modes.rb
0 require 'compass/blend-modes/version'
1
2 module Compass
3 module BlendModes
4 Compass::Frameworks.register('blend-modes', :path => "#{File.dirname(__FILE__)}/../..")
5 end
6 end
00 require 'compass' # Ensure Compass
1 require 'compass/blend-modes
1 require 'compass/blend-modes'