su 1.0.0.alpha.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +15 -0
- data/LICENSE +20 -0
- data/README.md +5 -0
- data/VERSION +1 -0
- data/lib/compass-su.rb +1 -0
- data/lib/su.rb +14 -0
- data/templates/project/_grids.scss +9 -0
- data/templates/project/manifest.rb +1 -0
- metadata +76 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e11c03f860a343cb0d3a1497d69014a2d587a7b6
|
4
|
+
data.tar.gz: 3984eeb1e86742682dae4d7db953194236178395
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: cdeb0e3c86c507fe4938d7c02359f5ea514cb52aeb4a33e549b273b18e579ed86b1c717c5ebae26ee58dbb97463a1a4b37cb7d4057f409e583bcc3cb0e60ca91
|
7
|
+
data.tar.gz: 53e5530622df31adce3301b135801a115c1bbd1f839b3521d28e1b93c555d1d393527f7707ed5ef4078657080f271b9fc63e5f2c6e9cb4926cf001bb13ee8573
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
Su Changelog
|
2
|
+
============
|
3
|
+
|
4
|
+
1.0 — UNRELEASED
|
5
|
+
----------------
|
6
|
+
|
7
|
+
- Copy core math files from Susy.
|
8
|
+
- Rename core math functions and deprecate the old names.
|
9
|
+
|
10
|
+
+ `column-count()` => `susy-count()`
|
11
|
+
+ `column-sum()` => `susy-sum()`
|
12
|
+
+ `column-span()` => `susy-slice()`
|
13
|
+
+ `column-span-sum()` => `susy()`
|
14
|
+
|
15
|
+
- Test and fix validation module.
|
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2014 Eric M Suzanne
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
7
|
+
the Software without restriction, including without limitation the rights to
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
10
|
+
subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.0.0.alpha.1
|
data/lib/compass-su.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'su'
|
data/lib/su.rb
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
base_directory = File.expand_path(File.join(File.dirname(__FILE__), '..'))
|
2
|
+
su_stylesheets_path = File.join(base_directory, 'stylesheets')
|
3
|
+
su_templates_path = File.join(base_directory, 'templates')
|
4
|
+
begin
|
5
|
+
require 'compass'
|
6
|
+
Compass::Frameworks.register('su', :stylesheets_directory => su_stylesheets_path, :templates_directory => su_templates_path)
|
7
|
+
rescue LoadError
|
8
|
+
# compass not found, register on the Sass path via the environment.
|
9
|
+
if ENV.has_key?("SASS_PATH")
|
10
|
+
ENV["SASS_PATH"] = ENV["SASS_PATH"] + File::PATH_SEPARATOR + su_stylesheets_path
|
11
|
+
else
|
12
|
+
ENV["SASS_PATH"] = su_stylesheets_path
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
discover :stylesheets
|
metadata
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: su
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0.alpha.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Eric Suzanne
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-02-18 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: sass
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 3.3.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 3.3.0
|
27
|
+
description: Su is grid-framework engine. Go build your own framework!
|
28
|
+
email:
|
29
|
+
- eric@oddbird.net
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files:
|
33
|
+
- CHANGELOG.md
|
34
|
+
- LICENSE
|
35
|
+
- README.md
|
36
|
+
- lib/su.rb
|
37
|
+
files:
|
38
|
+
- lib/compass-su.rb
|
39
|
+
- lib/su.rb
|
40
|
+
- templates/project/_grids.scss
|
41
|
+
- templates/project/manifest.rb
|
42
|
+
- CHANGELOG.md
|
43
|
+
- LICENSE
|
44
|
+
- README.md
|
45
|
+
- VERSION
|
46
|
+
homepage: http://ericam.github.com/su/
|
47
|
+
licenses:
|
48
|
+
- BSD-3-Clause
|
49
|
+
metadata: {}
|
50
|
+
post_install_message:
|
51
|
+
rdoc_options:
|
52
|
+
- --line-numbers
|
53
|
+
- --inline-source
|
54
|
+
- --title
|
55
|
+
- Su
|
56
|
+
- --main
|
57
|
+
- README.md
|
58
|
+
require_paths:
|
59
|
+
- lib
|
60
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - '>='
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: '0'
|
65
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - '>'
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: 1.3.1
|
70
|
+
requirements: []
|
71
|
+
rubyforge_project: su
|
72
|
+
rubygems_version: 2.1.10
|
73
|
+
signing_key:
|
74
|
+
specification_version: 3
|
75
|
+
summary: Sass Grid Engine.
|
76
|
+
test_files: []
|