compass-leacocks 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ ## ChangeLog
2
+
3
+ #### 2012-08-14 v0.1.0 ####
4
+
5
+ * Initial version.
@@ -0,0 +1,11 @@
1
+ Copyright (c) 2008-2011 Nathan Smith, Christopher M. Eppstein, Matt Sanders
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. No attribution is required by products that make use of this software.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
8
+
9
+ Except as contained in this notice, the name(s) of the above copyright holders shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization.
10
+
11
+ Contributors to this project agree to grant all rights to the copyright holder of the primary product. Attribution is maintained in the source control history of the product.
@@ -0,0 +1,41 @@
1
+ # Leacock's Branding - Compass Plugin
2
+
3
+ This plugin adds various Leacock's branding to [Compass][].
4
+
5
+ ## Install
6
+
7
+ gem install compass-leacocks
8
+
9
+ ## Adding the Cornell plugin to an existing project
10
+
11
+ Add the following to your `compass.rb`/`config.rb` config file:
12
+
13
+ # Require any additional compass plugins here.
14
+ require 'leacocks'
15
+
16
+ Then make sure you have imported the variables library to your core `.sass` or `.scss` file with:
17
+
18
+ @import "leacocks/variables"
19
+
20
+ Check out the [wiki][compass-leacocks-wiki] for variables, styles, and more information.
21
+
22
+ ## Credits
23
+
24
+ [Parker Moore][] created this plugin to aid in his development work for [Leacock's Online Arts Magazine][leacocks].
25
+
26
+ Many thanks to [Chris Eppstein][] for creating Compass, and [Hampton Catlin][] for creating [Sass][].
27
+
28
+ And many thanks to Chris Eppstein again for creating `compass-960-plugin`, which made the creation of this plugin far easier. A great blueprint for
29
+
30
+ ## License
31
+
32
+ Licensed under the MIT License. See [LICENSE.mkdn][] for details.
33
+
34
+ [Compass]: http://compass-style.org/
35
+ [compass-leacocks-wiki]: https://github.com/Leacocks/compass-leacocks/wiki
36
+ [LICENSE.mkdn]: https://github.com/Leacocks/compass-leacocks/blob/master/LICENSE.mkdn
37
+ [Chris Eppstein]: http://chriseppstein.github.com/
38
+ [Hampton Catlin]: http://hamptoncatlin.com/
39
+ [Sass]: http://sass-lang.com/
40
+ [leacocks]: http://leacocks.com/
41
+ [Parker Moore]: http://www.parkermoore.de/
@@ -0,0 +1,28 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{compass-leacocks}
5
+ s.version = "0.0.1"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5")
8
+ s.authors = ["Parker Moore"]
9
+ s.date = %q{2012-08-14}
10
+ s.description = %q{A Compass plugin for the creation of Leacock's-branded websites.}
11
+ s.email = %w{parker@leacocks.com}
12
+ s.has_rdoc = false
13
+ s.files = [
14
+ "compass-leacocks.gemspec",
15
+ "README.mkdn",
16
+ "LICENSE.mkdn",
17
+ "CHANGELOG.mkdn",
18
+ "lib/leacocks.rb",
19
+ "stylesheets/leacocks/_general.scss",
20
+ "stylesheets/leacocks/_variables.scss"
21
+ ]
22
+ s.homepage = %q{https://github.com/CALSCommunications/compass-cornell-plugin}
23
+ s.require_paths = ["lib"]
24
+ s.rubyforge_project = %q{compass-leacocks}
25
+ s.rubygems_version = %q{1.3.6}
26
+ s.summary = %q{Compass compatible Sass port of Leacock's branding.}
27
+ s.add_dependency(%q<compass>, [">= 0.10.0"])
28
+ end
@@ -0,0 +1,2 @@
1
+ require 'compass'
2
+ Compass::Frameworks.register("leacocks", :path => "#{File.dirname(__FILE__)}/..")
@@ -0,0 +1,2 @@
1
+ // Serve current version.
2
+ @import "v2.0/general";
@@ -0,0 +1,2 @@
1
+ // Serve current version.
2
+ @import "v2.0/variables";
metadata ADDED
@@ -0,0 +1,68 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: compass-leacocks
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Parker Moore
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-08-14 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: compass
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 0.10.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: 0.10.0
30
+ description: A Compass plugin for the creation of Leacock's-branded websites.
31
+ email:
32
+ - parker@leacocks.com
33
+ executables: []
34
+ extensions: []
35
+ extra_rdoc_files: []
36
+ files:
37
+ - compass-leacocks.gemspec
38
+ - README.mkdn
39
+ - LICENSE.mkdn
40
+ - CHANGELOG.mkdn
41
+ - lib/leacocks.rb
42
+ - stylesheets/leacocks/_general.scss
43
+ - stylesheets/leacocks/_variables.scss
44
+ homepage: https://github.com/CALSCommunications/compass-cornell-plugin
45
+ licenses: []
46
+ post_install_message:
47
+ rdoc_options: []
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ! '>='
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ required_rubygems_version: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: 1.3.5
62
+ requirements: []
63
+ rubyforge_project: compass-leacocks
64
+ rubygems_version: 1.8.24
65
+ signing_key:
66
+ specification_version: 3
67
+ summary: Compass compatible Sass port of Leacock's branding.
68
+ test_files: []