custard 0.0.3 → 0.0.6
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/bower.json +1 -1
- data/custard.gemspec +1 -1
- data/lib/custard/version.rb +1 -1
- data/vendor/assets/stylesheets/custard/mixin/animation.scss +40 -0
- data/vendor/assets/stylesheets/custard/stylesheets/background.scss +50 -0
- data/vendor/assets/stylesheets/custard/stylesheets/color.scss +3 -3
- data/vendor/assets/stylesheets/custard/variables.scss +3 -1
- data/vendor/assets/stylesheets/custard-compiled.css +87 -0
- data/vendor/assets/stylesheets/custard-min.css +1 -1
- data/vendor/assets/stylesheets/custard.scss +3 -0
- metadata +9 -7
@@ -1,13 +1,16 @@
|
|
1
1
|
@import 'custard/variables.scss';
|
2
2
|
|
3
|
+
@import 'custard/mixin/animation.scss';
|
3
4
|
@import 'custard/mixin/display_flex.scss';
|
4
5
|
|
6
|
+
@import 'custard/stylesheets/background.scss';
|
5
7
|
@import 'custard/stylesheets/border.scss';
|
6
8
|
@import 'custard/stylesheets/color.scss';
|
7
9
|
@import 'custard/stylesheets/cursor.scss';
|
8
10
|
@import 'custard/stylesheets/display.scss';
|
9
11
|
@import 'custard/stylesheets/font.scss';
|
10
12
|
@import 'custard/stylesheets/mgn-pdg.scss';
|
13
|
+
@import 'custard/stylesheets/overflow.scss';
|
11
14
|
@import 'custard/stylesheets/position.scss';
|
12
15
|
@import 'custard/stylesheets/text.scss';
|
13
16
|
@import 'custard/stylesheets/wrap.scss';
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: custard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kei Goto
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-03-
|
11
|
+
date: 2015-03-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -42,16 +42,16 @@ dependencies:
|
|
42
42
|
name: sass
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
47
|
+
version: '0'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
54
|
+
version: '0'
|
55
55
|
description: ''
|
56
56
|
email:
|
57
57
|
- gem@zeneffect.co.jp
|
@@ -71,7 +71,9 @@ files:
|
|
71
71
|
- vendor/assets/stylesheets/custard-compiled.css
|
72
72
|
- vendor/assets/stylesheets/custard-min.css
|
73
73
|
- vendor/assets/stylesheets/custard.scss
|
74
|
+
- vendor/assets/stylesheets/custard/mixin/animation.scss
|
74
75
|
- vendor/assets/stylesheets/custard/mixin/display_flex.scss
|
76
|
+
- vendor/assets/stylesheets/custard/stylesheets/background.scss
|
75
77
|
- vendor/assets/stylesheets/custard/stylesheets/border.scss
|
76
78
|
- vendor/assets/stylesheets/custard/stylesheets/color.scss
|
77
79
|
- vendor/assets/stylesheets/custard/stylesheets/cursor.scss
|
@@ -104,7 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
106
|
version: '0'
|
105
107
|
requirements: []
|
106
108
|
rubyforge_project:
|
107
|
-
rubygems_version: 2.4.
|
109
|
+
rubygems_version: 2.4.6
|
108
110
|
signing_key:
|
109
111
|
specification_version: 4
|
110
112
|
summary: Custard is the library of the preset CSS
|