gintonic-rails 0.2.21 → 0.3.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1aac609e1236c002132518fd7da545e0e8da6026
4
- data.tar.gz: 95aa16c97edd7bf782dafbf89800283ca76f4eba
3
+ metadata.gz: 19678ea66cf76d84cd9979fdc2b784e5b9fd5ec1
4
+ data.tar.gz: d2fe352a41e7082653f2d095b5b36cbea0196d58
5
5
  SHA512:
6
- metadata.gz: b7232495eded7de4a815fc80fa725c5d7746937b82ad4bc3c4e7d4d3d7cd5905fb7014beeb372eb1312c5f3a4339f811b39bc5566bab5fe7aabbdf81e17ccb04
7
- data.tar.gz: 417e15394b6b7e81647ca525f1d1f68fa287a6d388508927aba0b7652bc16bea70863dd489b97da6839f7429e92d668d34ea419c0cae0d95052651d6da333b8f
6
+ metadata.gz: 4638f5eeda59fc30537f7602116be40a2c0f12c291628a1aa753213d3865f43c86a27bf6680ea9ce758811a56a43fa048fba84bb9c570c5a4cd73770c1a22468
7
+ data.tar.gz: 565187f631b34b05deda7e3e3096ff66ca6d987cae3e9ed526582a188528c0f5692dcc72239818dc84984821bef0b446313a8267099bb541f9e8229e76c1e400
@@ -0,0 +1 @@
1
+ //=require mqbe
@@ -4,6 +4,8 @@
4
4
  @import "dom-limpio/type";
5
5
  @import "dom-limpio/forms";
6
6
 
7
+ @import "mqbe";
8
+
7
9
  @import "gintonic/base/vars";
8
10
  @import "gintonic/base/utils";
9
11
 
@@ -19,6 +19,8 @@ Gem::Specification.new do |gem|
19
19
 
20
20
  gem.add_runtime_dependency("sass", "~> 3.4")
21
21
  gem.add_dependency("bourbon", ">= 4.2")
22
+ gem.add_dependency("mqbe", ">= 2.0")
23
+ gem.add_dependency("dom_limpio", ">= 0.1")
22
24
 
23
25
  gem.add_development_dependency "rails", ">= 4.1.5"
24
26
  gem.add_development_dependency "sqlite3"
@@ -1,5 +1,7 @@
1
1
  require 'gintonic-rails/version'
2
2
  require 'bourbon'
3
+ require 'mqbe'
4
+ require 'dom_limpio'
3
5
 
4
6
  unless defined?(Sass)
5
7
  require 'sass'
@@ -1,3 +1,3 @@
1
1
  module Gintonic
2
- VERSION = "0.2.21"
2
+ VERSION = "0.3.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gintonic-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.21
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simplelogica
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-08-02 00:00:00.000000000 Z
12
+ date: 2016-08-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass
@@ -39,6 +39,34 @@ dependencies:
39
39
  - - ">="
40
40
  - !ruby/object:Gem::Version
41
41
  version: '4.2'
42
+ - !ruby/object:Gem::Dependency
43
+ name: mqbe
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '2.0'
49
+ type: :runtime
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: '2.0'
56
+ - !ruby/object:Gem::Dependency
57
+ name: dom_limpio
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '0.1'
63
+ type: :runtime
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0.1'
42
70
  - !ruby/object:Gem::Dependency
43
71
  name: rails
44
72
  requirement: !ruby/object:Gem::Requirement
@@ -81,6 +109,7 @@ files:
81
109
  - LICENSE.txt
82
110
  - README.md
83
111
  - Rakefile
112
+ - app/assets/javascripts/gintonic.js
84
113
  - app/assets/stylesheets/_gintonic.scss
85
114
  - app/assets/stylesheets/gintonic/base/_utils.scss
86
115
  - app/assets/stylesheets/gintonic/base/_vars.scss
@@ -145,9 +174,6 @@ files:
145
174
  - test/dummy/public/favicon.ico
146
175
  - test/gintonic_test.rb
147
176
  - test/test_helper.rb
148
- - vendor/assets/stylesheets/dom-limpio/_forms.scss
149
- - vendor/assets/stylesheets/dom-limpio/_layout.scss
150
- - vendor/assets/stylesheets/dom-limpio/_type.scss
151
177
  homepage: https://github.com/simplelogica/gintonic-rails
152
178
  licenses: []
153
179
  metadata: {}
@@ -1,47 +0,0 @@
1
- //
2
- // General forms
3
- //
4
-
5
- button, input, select, textarea, fieldset, legend, label, select {
6
- font: 400 1em/1.35 serif;
7
- text-align: left;
8
- text-transform: none;
9
- white-space: normal;
10
- }
11
-
12
- button,
13
- input,
14
- optgroup,
15
- select,
16
- textarea {
17
- color: inherit;
18
- font: inherit;
19
- margin: 0;
20
- }
21
-
22
- input, select {
23
- line-height: normal;
24
- vertical-align: middle;
25
- }
26
-
27
- input[type="search"] {
28
- -webkit-appearance: textfield;
29
- &::-webkit-search-cancel-button,
30
- &::-webkit-search-decoration {
31
- -webkit-appearance: none;
32
- }
33
- }
34
-
35
- button::-moz-focus-inner,
36
- input::-moz-focus-inner {
37
- border: 0;
38
- padding: 0;
39
- }
40
-
41
- optgroup {
42
- font-weight: 700;
43
- }
44
-
45
- textarea {
46
- overflow: auto;
47
- }
@@ -1,108 +0,0 @@
1
- /*
2
- base-reset
3
- Combine with type-reset.scss to fix typo issues
4
- */
5
-
6
- body {
7
- /* Disable horizontal scrollbar */
8
- -ms-overflow-x: hidden;
9
- overflow-x: hidden;
10
- }
11
-
12
- *, *:before, *:after {
13
- box-sizing: border-box;
14
- }
15
-
16
-
17
- /* Base reset of margins + paddings */
18
- html, body, div, span, object, iframe,
19
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
20
- abbr, address, cite, code,
21
- del, dfn, em, img, ins, kbd, q, samp,
22
- small, strong, sub, sup, var,
23
- b, i,
24
- hr,
25
- dl, dt, dd, ol, ul, li,
26
- fieldset, form, label, legend,
27
- table, caption, tbody, tfoot, thead, tr, th, td,
28
- article, aside, canvas, details, figcaption, figure,
29
- footer, header, hgroup, menu, nav, section, summary,
30
- time, mark, audio, video {
31
- margin: 0; padding: 0;
32
- border: 0;
33
- outline: 0;
34
- background: transparent;
35
-
36
- /* Remove outline color in some Android */
37
- /* -webkit-tap-highlight-color: rgba(0, 0, 0, 0); */
38
- }
39
-
40
- /* Set block for HTML5 elements */
41
- article,
42
- aside,
43
- details,
44
- figcaption,
45
- figure,
46
- footer,
47
- header,
48
- hgroup,
49
- hr,
50
- main,
51
- menu,
52
- nav,
53
- section,
54
- summary {
55
- display: block;
56
- }
57
-
58
- /* Correct display for IE 9 */
59
- audio,
60
- canvas,
61
- progress,
62
- video {
63
- display: inline-block;
64
- vertical-align: baseline;
65
- }
66
-
67
- /* Abreviatures and definitions */
68
- abbr[title], dfn[title] {
69
- border-bottom: 1px dotted;
70
- cursor: help;
71
- }
72
-
73
- /* Force hidden of elements */
74
- [hidden],
75
- template {
76
- display: none;
77
- }
78
-
79
- /* Images */
80
- img {
81
- margin-bottom: -0.285em; /* Removes extra margin */
82
- border: 0 none;
83
- }
84
-
85
- /* SVG */
86
- svg:not(:root) {
87
- overflow: hidden;
88
- }
89
-
90
- /* Reset cursor on any element disabled */
91
- [disabled] {
92
- cursor: default;
93
- }
94
-
95
- /* Base <hr> customize color on your project */
96
- hr {
97
- height: 1px;
98
- border: 0;
99
- border-top: 1px solid;
100
- overflow: visible;
101
- /* border-color: #f00; */
102
- }
103
-
104
- /* Tables */
105
- table {
106
- border-collapse: collapse;
107
- border-spacing: 0;
108
- }
@@ -1,129 +0,0 @@
1
- html {
2
- -ms-text-size-adjust: 100%;
3
- -webkit-text-size-adjust: 100%;
4
-
5
- -webkit-font-smoothing: antialiased;
6
- -moz-osx-font-smoothing: grayscale;
7
- text-rendering: optimizeLegibility;
8
- // font-variant-ligatures: none;
9
- // font-feature-settings: none;
10
- font: 400 1em/1.35 serif;
11
- text-align: left;
12
- vertical-align: baseline;
13
- color: #333;
14
- }
15
-
16
- // Genral properties
17
- body,
18
- ol, ul, li,
19
- dl, dt, dd,
20
- address,
21
- abbr, dfn,
22
- blockquote, pre, code, kbd, samp, cite, q,
23
- figcaption,
24
- sub, sup, small,
25
- p, h1, h2, h3, h4, h5, h6 {
26
- font-family: inherit;
27
- font-size: inherit;
28
- line-height: inherit;
29
- text-align: inherit;
30
- vertical-align: inherit;
31
- color: #333;
32
- }
33
-
34
- // Reset of type elements
35
-
36
- b,
37
- strong {
38
- font-weight: 700;
39
- }
40
-
41
- i,
42
- em,
43
- dfn {
44
- font-style: italic;
45
- }
46
-
47
- abbr[title], dfn[title] {
48
- border-bottom: 1px dotted;
49
- cursor: help;
50
- }
51
-
52
- del {
53
- text-decoration: line-through;
54
- }
55
-
56
- mark {
57
- background: #fcf8e3;
58
- color: #000;
59
- }
60
-
61
- pre,
62
- code,
63
- kbd,
64
- samp {
65
- font: monospace;
66
- }
67
-
68
- pre {
69
- white-space: pre; /* CSS2 */
70
- white-space: pre-wrap; /* CSS 2.1 */
71
- white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
72
- word-wrap: break-word; /* IE */
73
- }
74
-
75
- blockquote, q {
76
- quotes: none;
77
- &:before,
78
- &:after {
79
- content: '';
80
- content: none;
81
- }
82
- }
83
-
84
- small {
85
- font-size: 75%;
86
- }
87
-
88
- sub,
89
- sup {
90
- font-size: 75%;
91
- line-height: 0;
92
- position: relative;
93
- vertical-align: baseline;
94
- }
95
-
96
- sup {
97
- top: -0.5em;
98
- }
99
-
100
- sub {
101
- bottom: -0.25em;
102
- }
103
-
104
- //
105
- // Links por defecto
106
- //
107
-
108
- a {
109
- background-color: transparent; /* remove IE 10 grey bg on :active */
110
- &:link,
111
- &:visited,
112
- &:active,
113
- &:hover,
114
- &:focus {
115
- outline: 0;
116
- }
117
- }
118
-
119
- //
120
- // Listas
121
- //
122
- ul, ol, li {
123
- list-style: none;
124
- list-style-image: none;
125
- }
126
-
127
- /* ESTILOS POR DEFECTO */
128
- /* ul li { list-style: disc outside; } */
129
- /* ol li { list-style: decimal outside; } */