tachyonscss-rails 4.9.0 → 4.9.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9d96d90b381e344f567c0a6095ac52a34a5bc63c31da98f337ea6990e46e30dc
4
- data.tar.gz: 7dd5aad4b113febda1d568ec209edfa8b17c81244f9ca0c396a9d4be285d4097
3
+ metadata.gz: f4e38150adaaea588f39d101586d3e18f517e5e081adf3d60520f4afd7d38918
4
+ data.tar.gz: 8cf0d5a31e0f146c0aaee01e128e3824ec06ee0deb7df1eff03d9be90c775079
5
5
  SHA512:
6
- metadata.gz: 5c718c3375f56f6d39d6092f068947c1e3b7ad64564ef6bafd4048e593580ef966ce7ab62231353cae8b38178f99879f06bf663b512413a8f32af3f2e57ae68c
7
- data.tar.gz: 80c8a4c19a0b1fb7378e4cd33fbe909d5dd12153ec4baeb270d6732b13e671fae0ca6b05a62e0c372fc34384acc0aacaeb760b3cd8abb252e8700616c4c1985b
6
+ metadata.gz: 44cb92e32d3a7592fa317b314823c1502b45c504ce0b650fcdcbd2358bac007a9e6db1f15a47cca2051fab81340f9367e37659c942f1c4d8e5c617b46812937a
7
+ data.tar.gz: 53bbe00b95694b4b5833d93278adf62695b7a4876fff3d929b416949ded12c47566c835238b51a75ce81b2b86fbf934eb6ce23036ad0911ff4d8450fc6d404f9
data/README.md CHANGED
@@ -39,4 +39,9 @@ The most common way to use this is:
39
39
  Basically, this gem makes it so you can `@import "tachyons";` and it will build the CSS file from the contents of the
40
40
  [tachyons-sass](https://github.com/tachyons-css/tachyons-sass) module that this gem wraps.
41
41
 
42
+ ## Versions
42
43
 
44
+ The version of this gem matches the version of tachyons it bundles, except that it's possible for this gem to bundle
45
+ an unreleased version of Tachyons. In that case, the gem will use a fourth number, for example `4.9.0.1` would
46
+ indicate that this is the first release beyond `4.9.0` to include Tachyons code added to its main branch since `4.9.0`
47
+ was released.
@@ -1,4 +1,3 @@
1
-
2
1
  // Converted Variables
3
2
 
4
3
 
@@ -70,8 +69,8 @@
70
69
  .w-90 { width: 90%; }
71
70
  .w-100 { width: 100%; }
72
71
 
73
- .w-third { width: (100% / 3); }
74
- .w-two-thirds { width: (100% / 1.5); }
72
+ .w-third { width: calc(100% / 3); }
73
+ .w-two-thirds { width: calc(100% / 1.5); }
75
74
  .w-auto { width: auto; }
76
75
 
77
76
  @media #{$breakpoint-not-small} {
@@ -94,8 +93,8 @@
94
93
  .w-80-ns { width: 80%; }
95
94
  .w-90-ns { width: 90%; }
96
95
  .w-100-ns { width: 100%; }
97
- .w-third-ns { width: (100% / 3); }
98
- .w-two-thirds-ns { width: (100% / 1.5); }
96
+ .w-third-ns { width: calc(100% / 3); }
97
+ .w-two-thirds-ns { width: calc(100% / 1.5); }
99
98
  .w-auto-ns { width: auto; }
100
99
  }
101
100
 
@@ -119,8 +118,8 @@
119
118
  .w-80-m { width: 80%; }
120
119
  .w-90-m { width: 90%; }
121
120
  .w-100-m { width: 100%; }
122
- .w-third-m { width: (100% / 3); }
123
- .w-two-thirds-m { width: (100% / 1.5); }
121
+ .w-third-m { width: calc(100% / 3); }
122
+ .w-two-thirds-m { width: calc(100% / 1.5); }
124
123
  .w-auto-m { width: auto; }
125
124
  }
126
125
 
@@ -144,7 +143,7 @@
144
143
  .w-80-l { width: 80%; }
145
144
  .w-90-l { width: 90%; }
146
145
  .w-100-l { width: 100%; }
147
- .w-third-l { width: (100% / 3); }
148
- .w-two-thirds-l { width: (100% / 1.5); }
146
+ .w-third-l { width: calc(100% / 3); }
147
+ .w-two-thirds-l { width: calc(100% / 1.5); }
149
148
  .w-auto-l { width: auto; }
150
149
  }
@@ -56,8 +56,8 @@
56
56
  @import 'scss/code';
57
57
  @import 'scss/coordinates';
58
58
  @import 'scss/clears';
59
- @import 'scss/flexbox';
60
59
  @import 'scss/display';
60
+ @import 'scss/flexbox';
61
61
  @import 'scss/floats';
62
62
  @import 'scss/font-family';
63
63
  @import 'scss/font-style';
@@ -1,4 +1,3 @@
1
- puts "ENGINE"
2
1
  module TachyonscssRails
3
2
  class Engine < ::Rails::Engine
4
3
  initializer "tachyonscss.assets" do
@@ -1,3 +1,3 @@
1
1
  module TachyonscssRails
2
- VERSION = "4.9.0"
2
+ VERSION = "4.9.0.1"
3
3
  end
@@ -1,4 +1,3 @@
1
- puts "REQUIRED"
2
1
  module TachyonscssRails
3
2
  end
4
3
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tachyonscss-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.9.0
4
+ version: 4.9.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Copeland
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-09-28 00:00:00.000000000 Z
11
+ date: 2022-01-23 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: