sane-scale 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/sane-scale.rb +2 -1
- metadata +19 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 44b8bc3ae074a94bc7d07f658b1a6a9863fd8a4e
|
4
|
+
data.tar.gz: 58541ccce37999840d55693e14819f6bfd9158b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ceb9580359f7e3a96e48438bf61966cb926c99145b05fe4e3cbe0522a779662c376152b924ef7762a1c797a572a1a5dccb8c4e20f211c53c1530de9fa73171c3
|
7
|
+
data.tar.gz: a944373c5779480d0fbe4ba877f9e85e4b9fd1071a863deceba853c96c88d28f6d9fe3df724cf19398780047def866d4e6168ed800023474006a6e18ef340742
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Sane Scale
|
2
2
|
|
3
|
-
Sane Scale is a framework for defining and applying typographic styles. Its goal is to generate a complex, nuanced typographic system from only a few key variables.
|
3
|
+
Sane Scale is a SASS framework for defining and applying typographic styles. Its goal is to generate a complex, nuanced typographic system from only a few key variables.
|
4
4
|
|
5
5
|
|
6
6
|
|
data/lib/sane-scale.rb
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
# By default, you should always included Compass. Do not include your
|
4
4
|
# extension.
|
5
5
|
require 'compass'
|
6
|
+
require 'sassy-math'
|
6
7
|
|
7
8
|
# This tells Compass what your Compass extension is called,
|
8
9
|
# and where to find its files. Replace 'extension' with the
|
@@ -16,7 +17,7 @@ Compass::Frameworks.register('sane-scale', :path => extension_path)
|
|
16
17
|
# version contains alphas, it will be created as a
|
17
18
|
# prerelease version. Date is in the form of YYYY-MM-DD
|
18
19
|
module SaneScale
|
19
|
-
VERSION = "0.1.
|
20
|
+
VERSION = "0.1.2"
|
20
21
|
DATE = "2016-05-09"
|
21
22
|
end
|
22
23
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sane-scale
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Fusilier
|
@@ -10,6 +10,20 @@ bindir: bin
|
|
10
10
|
cert_chain: []
|
11
11
|
date: 2016-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: sassy-math
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 1.5.1
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 1.5.1
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: sass
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -54,7 +68,8 @@ files:
|
|
54
68
|
- stylesheets/sane-scale/_map-deep-get.scss
|
55
69
|
- stylesheets/sane-scale/_set-font-size.scss
|
56
70
|
homepage: https://github.com/dfusilier/sane-scale.git
|
57
|
-
licenses:
|
71
|
+
licenses:
|
72
|
+
- MIT
|
58
73
|
metadata: {}
|
59
74
|
post_install_message:
|
60
75
|
rdoc_options: []
|
@@ -75,8 +90,6 @@ rubyforge_project: sane-scale
|
|
75
90
|
rubygems_version: 2.2.2
|
76
91
|
signing_key:
|
77
92
|
specification_version: 4
|
78
|
-
summary:
|
79
|
-
|
80
|
-
variables. Using multiple fonts? Sane scale makes it simple to normalize your fonts
|
81
|
-
so they appear visually equal when set to the same size.
|
93
|
+
summary: Sane Scale is a framework for defining and applying typographic styles. Its
|
94
|
+
goal is to generate a complex, nuanced typographic system from only a few key variables.
|
82
95
|
test_files: []
|